Home
last modified time | relevance | path

Searched refs:Index (Results 1 – 25 of 358) sorted by relevance

12345678910>>...15

/AOO41X/main/toolkit/source/controls/
H A Droadmapcontrol.cxx180 …Any SAL_CALL UnoControlRoadmapModel::getByIndex( sal_Int32 Index ) throw (IndexOutOfBoundsExceptio… in getByIndex() argument
182 if (( Index >= (sal_Int32)maRoadmapItems.size()) || (Index < 0)) in getByIndex()
185 aAny = makeAny( maRoadmapItems.at( Index )); in getByIndex()
191 …void UnoControlRoadmapModel::MakeRMItemValidation( sal_Int32 Index, Reference< XInterface > xRoadm… in MakeRMItemValidation() argument
193 if ((Index > (sal_Int32)maRoadmapItems.size()) || ( Index < 0 ) ) in MakeRMItemValidation()
254 …ContainerEvent UnoControlRoadmapModel::GetContainerEvent(sal_Int32 Index, Reference< XInterface > … in GetContainerEvent() argument
259 aEvent.Accessor = makeAny(Index); in GetContainerEvent()
273 void SAL_CALL UnoControlRoadmapModel::insertByIndex( const sal_Int32 Index, const Any& _Element) in insertByIndex() argument
276 if ( ( Index >= ( (sal_Int32)maRoadmapItems.size() + 1 ) ) || (Index < 0)) in insertByIndex()
280 MakeRMItemValidation( Index, xRoadmapItem); in insertByIndex()
[all …]
/AOO41X/main/qadevOOo/tests/java/ifc/container/
H A D_XIndexContainer.java74 int Index = 0; field in _XIndexContainer
93 Index = 1; in _insertByIndex()
95 Index = Integer.parseInt(sIndex); in _insertByIndex()
96 Index++; in _insertByIndex()
98 Integer.toString(Index)); in _insertByIndex()
102 log.println("get ObjRelation(\"INSTANCE" + Index +"\")"); in _insertByIndex()
103 Object oInstance = tEnv.getObjRelation("INSTANCE"+ Index); in _insertByIndex()
105 log.println("ObjRelation(\"INSTANCE" + Index +"\") Object n.a."); in _insertByIndex()
108 log.println("testing insertByIndex(\"" + Index + "\")..."); in _insertByIndex()
110 oObj.insertByIndex(Index, oInstance); in _insertByIndex()
[all …]
H A D_XNameContainer.java83 int Index = 0; in _insertByName() local
93 Index = 1; in _insertByName()
95 Index = Integer.parseInt(sIndex); in _insertByName()
96 Index++; in _insertByName()
98 Integer.toString(Index)); in _insertByName()
101 Name += Index ; in _insertByName()
103 log.println("get ObjRelation(\"INSTANCE" + Index +"\")"); in _insertByName()
104 Object oInstance = tEnv.getObjRelation("INSTANCE"+ Index); in _insertByName()
106 log.println("ObjRelation(\"INSTANCE" + Index +"\") Object n.a."); in _insertByName()
/AOO41X/main/oovbaapi/ooo/vba/excel/
H A DXWorksheet.idl70 [attribute, readonly] short Index;
87 any ChartObjects([in] any Index);
88 any PivotTables([in] any Index);
89 any Comments([in] any Index);
92 any HPageBreaks([in] any Index);
93 any VPageBreaks([in] any Index);
94 any OLEObjects([in] any Index);
95 any Shapes([in] any Index);
100 any Buttons( [in] any Index );
101 any CheckBoxes( [in] any Index );
[all …]
/AOO41X/main/reportdesign/source/core/api/
H A DReportControlModel.cxx70 void OReportControlModel::insertByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang::… in insertByIndex() argument
80 if ( Index > static_cast<sal_Int32>(m_aFormatConditions.size()) ) in insertByIndex()
84 m_aFormatConditions.insert(m_aFormatConditions.begin() + Index,xElement); in insertByIndex()
88 container::ContainerEvent aEvent(xBroadcaster, uno::makeAny(Index), Element, uno::Any()); in insertByIndex()
92 void OReportControlModel::removeByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException… in removeByIndex() argument
99 checkIndex(Index); in removeByIndex()
100 Element <<= m_aFormatConditions[Index]; in removeByIndex()
101 m_aFormatConditions.erase(m_aFormatConditions.begin() + Index); in removeByIndex()
103 container::ContainerEvent aEvent(xBroadcaster, uno::makeAny(Index), Element, uno::Any()); in removeByIndex()
108 void OReportControlModel::replaceByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang:… in replaceByIndex() argument
[all …]
H A DFunctions.cxx80 void SAL_CALL OFunctions::insertByIndex( ::sal_Int32 Index, const uno::Any& aElement ) throw (lang:… in insertByIndex() argument
84 sal_Bool bAdd = (Index == static_cast<sal_Int32>(m_aFunctions.size())); in insertByIndex()
86 checkIndex(Index); in insertByIndex()
96 ::std::advance(aPos,Index); in insertByIndex()
102 …container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), a… in insertByIndex()
107 void SAL_CALL OFunctions::removeByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException… in removeByIndex() argument
112 checkIndex(Index); in removeByIndex()
114 ::std::advance(aPos,Index); in removeByIndex()
119 …container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), u… in removeByIndex()
124 void SAL_CALL OFunctions::replaceByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang:… in replaceByIndex() argument
[all …]
H A DGroups.cxx95 void SAL_CALL OGroups::insertByIndex( ::sal_Int32 Index, const uno::Any& aElement ) throw (lang::Il… in insertByIndex() argument
99 sal_Bool bAdd = (Index == static_cast<sal_Int32>(m_aGroups.size())); in insertByIndex()
101 checkIndex(Index); in insertByIndex()
111 ::std::advance(aPos,Index); in insertByIndex()
116 …container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), a… in insertByIndex()
121 void SAL_CALL OGroups::removeByIndex( ::sal_Int32 Index ) throw (lang::IndexOutOfBoundsException, l… in removeByIndex() argument
126 checkIndex(Index); in removeByIndex()
128 ::std::advance(aPos,Index); in removeByIndex()
132 …container::ContainerEvent aEvent(static_cast<container::XContainer*>(this), uno::makeAny(Index), u… in removeByIndex()
137 void SAL_CALL OGroups::replaceByIndex( ::sal_Int32 Index, const uno::Any& Element ) throw (lang::Il… in replaceByIndex() argument
[all …]
/AOO41X/main/svtools/source/filter/
H A Dsgvtext.cxx366 UCHAR GetNextChar(UCHAR* TBuf, sal_uInt16 Index) in GetNextChar() argument
369 while (TBuf[Index]==Escape) { in GetNextChar()
370 Index++; in GetNextChar()
372 while (TBuf[Index]!=Escape && Cnt<=MaxEscLen) { in GetNextChar()
373 Index++; Cnt++; } in GetNextChar()
374 Index++; in GetNextChar()
376 return TBuf[Index]; in GetNextChar()
381 UCHAR ProcessOne(UCHAR* TBuf, sal_uInt16& Index, in ProcessOne() argument
396 c=TBuf[Index]; Index++; in ProcessOne()
399 c=TBuf[Index]; Index++; in ProcessOne()
[all …]
/AOO41X/main/migrationanalysis/src/wizard/
H A DWizard.frm44 Index = 0
56 Index = 0
93 Index = 0
119 Index = 2
126 Index = 1
137 Index = 1
150 Index = 1
163 Index = 1
183 Index = 1
261 Index = 2
[all …]
/AOO41X/main/svx/source/unodraw/
H A Dgluepts.cxx67 …virtual void SAL_CALL insertByIndex( sal_Int32 Index, const uno::Any& Element ) throw(lang::Illega…
68 …virtual void SAL_CALL removeByIndex( sal_Int32 Index ) throw(lang::IndexOutOfBoundsException, lang…
72 …virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const uno::Any& Element ) throw(lang::Illeg…
77 …virtual uno::Any SAL_CALL getByIndex( sal_Int32 Index ) throw(lang::IndexOutOfBoundsException, lan…
416 void SAL_CALL SvxUnoGluePointAccess::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
424 Index -= 4; in removeByIndex()
425 if( Index >= 0 && Index < pList->GetCount() ) in removeByIndex()
427 pList->Delete( (sal_uInt16)Index ); in removeByIndex()
442 void SAL_CALL SvxUnoGluePointAccess::replaceByIndex( sal_Int32 Index, const uno::Any& Element ) in replaceByIndex() argument
450 Index -= 4; in replaceByIndex()
[all …]
/AOO41X/main/framework/source/fwe/helper/
H A Dpropertysetcontainer.cxx87 void SAL_CALL PropertySetContainer::insertByIndex( sal_Int32 Index, const ::com::sun::star::uno::An… in insertByIndex() argument
94 if ( nSize >= Index ) in insertByIndex()
100 if ( nSize == Index ) in insertByIndex()
105 aIter += Index; in insertByIndex()
120 void SAL_CALL PropertySetContainer::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
125 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in removeByIndex()
128 aIter += Index; in removeByIndex()
136 void SAL_CALL PropertySetContainer::replaceByIndex( sal_Int32 Index, const ::com::sun::star::uno::A… in replaceByIndex() argument
139 if ( (sal_Int32)m_aPropertySetVector.size() > Index ) in replaceByIndex()
145 m_aPropertySetVector[ Index ] = aPropertySetElement; in replaceByIndex()
[all …]
/AOO41X/main/autodoc/source/ary/cpp/
H A Dcs_ce.hxx50 typedef SortedIds<Ce_Compare> Index; typedef in ary::cpp::Ce_Storage
62 const Index & TypeIndex() const { return aTypes; } in TypeIndex()
63 const Index & OperationIndex() const { return aOperations; } in OperationIndex()
64 const Index & DataIndex() const { return aData; } in DataIndex()
66 Index & TypeIndex() { return aTypes; } in TypeIndex()
67 Index & OperationIndex() { return aOperations; } in OperationIndex()
68 Index & DataIndex() { return aData; } in DataIndex()
74 Index aTypes;
75 Index aOperations;
76 Index aData;
H A Dcs_def.hxx52 typedef SortedIds<Def_Compare> Index; typedef in ary::cpp::Def_Storage
63 const Index & DefineIndex() const { return aDefines; } in DefineIndex()
64 const Index & MacroIndex() const { return aMacros; } in MacroIndex()
66 Index & DefineIndex() { return aDefines; } in DefineIndex()
67 Index & MacroIndex() { return aMacros; } in MacroIndex()
74 Index aDefines;
75 Index aMacros;
/AOO41X/main/sw/source/ui/utlui/
H A Dpoolfmt.src66 Text [ en-US ] = "Index Link" ;
201 Text [ en-US ] = "Index" ;
485 Text [ en-US ] = "Index Heading" ;
489 Text [ en-US ] = "Index 1" ;
493 Text [ en-US ] = "Index 2" ;
497 Text [ en-US ] = "Index 3" ;
501 Text [ en-US ] = "Index Separator" ;
549 Text [ en-US ] = "User Index Heading" ;
553 Text [ en-US ] = "User Index 1" ;
557 Text [ en-US ] = "User Index 2" ;
[all …]
/AOO41X/main/framework/source/fwi/uielement/
H A Ditemcontainer.cxx196 Any SAL_CALL ItemContainer::getByIndex( sal_Int32 Index ) in getByIndex() argument
200 if ( sal_Int32( m_aItemVector.size()) > Index ) in getByIndex()
201 return makeAny( m_aItemVector[Index] ); in getByIndex()
207 void SAL_CALL ItemContainer::insertByIndex( sal_Int32 Index, const Any& aItem ) in insertByIndex() argument
214 if ( sal_Int32( m_aItemVector.size()) == Index ) in insertByIndex()
216 else if ( sal_Int32( m_aItemVector.size()) >Index ) in insertByIndex()
219 aIter += Index; in insertByIndex()
230 void SAL_CALL ItemContainer::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
234 if ( (sal_Int32)m_aItemVector.size() > Index ) in removeByIndex()
237 aIter += Index; in removeByIndex()
[all …]
H A Drootitemcontainer.cxx263 Any SAL_CALL RootItemContainer::getByIndex( sal_Int32 Index ) in getByIndex() argument
267 if ( sal_Int32( m_aItemVector.size()) > Index ) in getByIndex()
268 return makeAny( m_aItemVector[Index] ); in getByIndex()
274 void SAL_CALL RootItemContainer::insertByIndex( sal_Int32 Index, const Any& aItem ) in insertByIndex() argument
281 if ( sal_Int32( m_aItemVector.size()) == Index ) in insertByIndex()
283 else if ( sal_Int32( m_aItemVector.size()) >Index ) in insertByIndex()
286 aIter += Index; in insertByIndex()
297 void SAL_CALL RootItemContainer::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
301 if ( (sal_Int32)m_aItemVector.size() > Index ) in removeByIndex()
304 aIter += Index; in removeByIndex()
[all …]
/AOO41X/main/xml2cmp/source/xcd/
H A Dcr_index.cxx52 Index::Index( const char * i_sOutputDirectory, in Index() function in Index
64 Index::~Index() in ~Index()
69 Index::GatherData( const List<Simstr> & i_rInputFileList ) in GatherData()
78 Index::WriteOutput( const char * i_sOuputFile ) in WriteOutput()
104 Index::InsertSupportedService( const Simstr & i_sService ) in InsertSupportedService()
111 Index::ReadFile( const char * i_sFilename ) in ReadFile()
147 Index::CreateHtmlFileName( char * o_sOutputHtml, in CreateHtmlFileName()
170 Index::WriteTableFromHeap( std::ostream & o_rOut, in WriteTableFromHeap()
189 Index::WriteHeap( std::ostream & o_rOut, in WriteHeap()
/AOO41X/main/offapi/com/sun/star/document/
H A DXDocumentInfo.idl73 @param Index
81 if <var>Index</var> don't fit range of [0..count-1]
83 string getUserFieldName( [in] short Index )
89 @param Index
97 if <var>Index</var> don't fit range of [0..count-1]
99 string getUserFieldValue( [in] short Index )
105 @param Index
113 if <var>Index</var> don't fit range of [0..count-1]
116 [in] short Index ,
123 @param Index
[all …]
/AOO41X/main/oovbaapi/ooo/vba/word/
H A DXDocument.idl50 any BuiltInDocumentProperties( [in] any Index );
51 any CustomDocumentProperties( [in] any Index );
52 any Bookmarks( [in] any Index );
53 any Variables( [in] any Index );
54 any Paragraphs( [in] any Index );
55 any Styles( [in] any Index );
56 any Tables( [in] any Index );
57 any Fields( [in] any Index );
58 any Shapes( [in] any Index );
59 any Sections( [in] any Index );
/AOO41X/main/svtools/source/uno/
H A Dunoimap.cxx569 …virtual void SAL_CALL insertByIndex( sal_Int32 Index, const Any& Element ) throw( IllegalArgumentE…
570 …virtual void SAL_CALL removeByIndex( sal_Int32 Index ) throw( IndexOutOfBoundsException, WrappedTa…
573 …virtual void SAL_CALL replaceByIndex( sal_Int32 Index, const Any& Element ) throw( IllegalArgument…
577 …virtual Any SAL_CALL getByIndex( sal_Int32 Index ) throw( IndexOutOfBoundsException, WrappedTarget…
638 void SAL_CALL SvUnoImageMap::insertByIndex( sal_Int32 Index, const Any& Element ) in insertByIndex() argument
643 if( NULL == pObject || Index > nCount ) in insertByIndex()
648 if( Index == nCount ) in insertByIndex()
653 for( sal_Int32 n = 0; n < Index; n++ ) in insertByIndex()
660 void SAL_CALL SvUnoImageMap::removeByIndex( sal_Int32 Index ) throw(IndexOutOfBoundsException, Wrap… in removeByIndex() argument
663 if( Index >= nCount ) in removeByIndex()
[all …]
/AOO41X/main/desktop/source/deployment/gui/
H A Ddp_gui_updatedialog.cxx189 struct UpdateDialog::Index struct in UpdateDialog
197 Index( Kind theKind, sal_uInt16 nID, sal_uInt16 nIndex, const rtl::OUString &rName );
201 UpdateDialog::Index::Index( Kind theKind, sal_uInt16 nID, sal_uInt16 nIndex, const rtl::OUString &r… in Index() argument
646 …for ( std::vector< UpdateDialog::Index* >::iterator i( m_ListboxEntries.begin() ); i != m_ListboxE… in ~UpdateDialog()
727 UpdateDialog::Index * p = static_cast< UpdateDialog::Index * >( GetEntryData( nEntryPos ) ); in handlePopupMenu()
773 sal_uInt16 UpdateDialog::insertItem( UpdateDialog::Index *pEntry, SvLBoxButtonKind kind ) in insertItem()
780 …UpdateDialog::Index const * p = static_cast< UpdateDialog::Index const * >( m_updates.GetEntryData… in insertItem()
789 void UpdateDialog::addAdditional( UpdateDialog::Index * index, SvLBoxButtonKind kind ) in addAdditional()
807 … UpdateDialog::Index *pEntry = new UpdateDialog::Index( ENABLED_UPDATE, m_nLastID, nIndex, name ); in addEnabledUpdate()
833 …UpdateDialog::Index *pEntry = new UpdateDialog::Index( DISABLED_UPDATE, m_nLastID, nIndex, data.na… in addDisabledUpdate()
[all …]
/AOO41X/main/starmath/inc/
H A Ddialog.hxx213 const XubString * GetString(sal_uInt16 Index) const { return Strings[Index]; } in GetString()
214 sal_uInt16 GetMinimum(sal_uInt16 Index) { return Minimum[Index]; } in GetMinimum() argument
215 sal_uInt16 GetMaximum(sal_uInt16 Index) { return Maximum[Index]; } in GetMaximum() argument
216 sal_uInt16 GetValue(sal_uInt16 Index) const { return Value[Index]; } in GetValue()
217 void SetValue(sal_uInt16 Index, sal_uInt16 nVal) { Value[Index] = nVal;} in SetValue() argument
220 const Bitmap * GetGraphic(sal_uInt16 Index) const in GetGraphic()
222 return bIsHighContrast ? GraphicsH[Index] : Graphics[Index]; in GetGraphic()
/AOO41X/main/sd/source/ui/unoidl/
H A Dunocpres.cxx93 void SAL_CALL SdXCustomPresentation::insertByIndex( sal_Int32 Index, const uno::Any& Element ) in insertByIndex() argument
101 if( Index < 0 || Index > (sal_Int32)( mpSdCustomShow ? mpSdCustomShow->Count() : 0 ) ) in insertByIndex()
120 mpSdCustomShow->Insert(pPage->GetSdrPage(), Index); in insertByIndex()
127 void SAL_CALL SdXCustomPresentation::removeByIndex( sal_Int32 Index ) in removeByIndex() argument
138 getByIndex( Index ) >>= xPage; in removeByIndex()
153 void SAL_CALL SdXCustomPresentation::replaceByIndex( sal_Int32 Index, const uno::Any& Element ) in replaceByIndex() argument
156 removeByIndex( Index ); in replaceByIndex()
157 insertByIndex( Index, Element ); in replaceByIndex()
189 uno::Any SAL_CALL SdXCustomPresentation::getByIndex( sal_Int32 Index ) in getByIndex() argument
197 if( Index < 0 || Index >= (sal_Int32)mpSdCustomShow->Count() ) in getByIndex()
[all …]
/AOO41X/main/i18npool/source/indexentry/
H A Dindexentrysupplier_default.cxx42 index = new Index(rxMSF); in IndexEntrySupplier_Unicode()
97 …able::init(sal_Unicode start_, sal_Unicode end_, IndexKey *keys, sal_Int16 key_count, Index *index) in init()
115 Index::Index(const com::sun::star::uno::Reference < com::sun::star::lang::XMultiServiceFactory >& r… in Index() function in com::sun::star::i18n::Index
120 Index::~Index() in ~Index()
125 sal_Int16 Index::compare(sal_Unicode c1, sal_Unicode c2) in compare()
130 sal_Int16 Index::getIndexWeight(const OUString& rIndexEntry) in getIndexWeight()
152 OUString Index::getIndexDescription(const OUString& rIndexEntry) in getIndexDescription()
170 void Index::makeIndexKeys(const lang::Locale &rLocale, const OUString &algorithm) throw (RuntimeExc… in makeIndexKeys()
255 void Index::init(const lang::Locale &rLocale, const OUString& algorithm) throw (RuntimeException) in init()
/AOO41X/main/dbaccess/source/ui/dlg/
H A Dindexdialog.src71 Text [ en-US ] = "New Index" ;
78 Text [ en-US ] = "Delete Current Index" ;
85 Text [ en-US ] = "Rename Current Index" ;
92 Text [ en-US ] = "Save Current Index" ;
99 Text [ en-US ] = "Reset Current Index" ;
117 Text [ en-US ] = "Index details";
123 Text [ en-US ] = "Index identifier:";
175 Text [ en-US ] = "Index field" ;
209 Title [ en-US ] = "Save Index";
218 Title [ en-US ] = "Exit Index Design";

12345678910>>...15