Home
last modified time | relevance | path

Searched refs:_nIndex (Results 1 – 25 of 99) sorted by relevance

1234

/AOO41X/main/connectivity/source/commontools/
H A Dparameters.cxx946 void ParameterManager::externalParameterVisited( sal_Int32 _nIndex ) in externalParameterVisited() argument
948 if ( m_aParametersVisited.size() < (size_t)_nIndex ) in externalParameterVisited()
950 m_aParametersVisited.reserve( _nIndex ); in externalParameterVisited()
951 for ( sal_Int32 i = m_aParametersVisited.size(); i < _nIndex; ++i ) in externalParameterVisited()
954 m_aParametersVisited[ _nIndex - 1 ] = true; in externalParameterVisited()
963 externalParameterVisited( _nIndex ) \
966 void ParameterManager::setNull( sal_Int32 _nIndex, sal_Int32 sqlType ) in setNull() argument
968 VISIT_PARAMETER( setNull( _nIndex, sqlType ) ); in setNull()
972 …void ParameterManager::setObjectNull( sal_Int32 _nIndex, sal_Int32 sqlType, const ::rtl::OUString&… in setObjectNull() argument
974 VISIT_PARAMETER( setObjectNull( _nIndex, sqlType, typeName ) ); in setObjectNull()
[all …]
H A Dpropertyids.cxx110 ::rtl::OUString OPropertyMap::getNameByIndex(sal_Int32 _nIndex) const in getNameByIndex()
113 … ::std::map<sal_Int32 , rtl_uString*>::const_iterator aIter = m_aPropertyMap.find(_nIndex); in getNameByIndex()
115 sRet = const_cast<OPropertyMap*>(this)->fillValue(_nIndex); in getNameByIndex()
121 ::rtl::OUString OPropertyMap::fillValue(sal_Int32 _nIndex) in fillValue() argument
124 switch(_nIndex) in fillValue()
189 m_aPropertyMap[_nIndex] = pStr; in fillValue()
H A Dparamwrapper.cxx312 …Any SAL_CALL ParameterWrapperContainer::getByIndex( sal_Int32 _nIndex ) throw( IndexOutOfBoundsExc… in getByIndex() argument
317 if ( ( _nIndex < 0 ) || ( _nIndex >= (sal_Int32)m_aParameters.size() ) ) in getByIndex()
320 return makeAny( Reference< XPropertySet >( m_aParameters[ _nIndex ].get() ) ); in getByIndex()
/AOO41X/main/connectivity/source/sdbcx/
H A DVCollection.cxx163 virtual ::rtl::OUString getName(sal_Int32 _nIndex) in getName() argument
165 return m_aElements[_nIndex]->first; in getName()
168 virtual void disposeAndErase(sal_Int32 _nIndex) in disposeAndErase() argument
170 …OSL_ENSURE(_nIndex >= 0 && _nIndex < static_cast<sal_Int32>(m_aElements.size()),"Illegal argument!… in disposeAndErase()
171 Reference<XComponent> xComp(m_aElements[_nIndex]->second.get(),UNO_QUERY); in disposeAndErase()
173 m_aElements[_nIndex]->second = T(); in disposeAndErase()
175 ::rtl::OUString sName = m_aElements[_nIndex]->first; in disposeAndErase()
176 m_aElements.erase(m_aElements.begin()+_nIndex); in disposeAndErase()
202 virtual ::rtl::OUString findColumnAtIndex( sal_Int32 _nIndex) in findColumnAtIndex() argument
204 …OSL_ENSURE(_nIndex >= 0 && _nIndex < static_cast<sal_Int32>(m_aElements.size()),"Illegal argument!… in findColumnAtIndex()
[all …]
/AOO41X/main/connectivity/inc/connectivity/
H A Dparameters.hxx228 void setNull ( sal_Int32 _nIndex, sal_Int32 sqlType);
229 … void setObjectNull ( sal_Int32 _nIndex, sal_Int32 sqlType, const ::rtl::OUString& typeName);
230 void setBoolean ( sal_Int32 _nIndex, sal_Bool x);
231 void setByte ( sal_Int32 _nIndex, sal_Int8 x);
232 void setShort ( sal_Int32 _nIndex, sal_Int16 x);
233 void setInt ( sal_Int32 _nIndex, sal_Int32 x);
234 void setLong ( sal_Int32 _nIndex, sal_Int64 x);
235 void setFloat ( sal_Int32 _nIndex, float x);
236 void setDouble ( sal_Int32 _nIndex, double x);
237 void setString ( sal_Int32 _nIndex, const ::rtl::OUString& x);
[all …]
/AOO41X/main/forms/source/misc/
H A DInterfaceContainer.cxx768 Any OInterfaceContainer::getByIndex(sal_Int32 _nIndex) throw( IndexOutOfBoundsException, WrappedTar… in getByIndex() argument
770 if (_nIndex < 0 || (_nIndex >= (sal_Int32)m_aItems.size())) in getByIndex()
773 return m_aItems[_nIndex]->queryInterface( m_aElementType ); in getByIndex()
823 void OInterfaceContainer::implInsert(sal_Int32 _nIndex, const Reference< XPropertySet >& _rxElement, in implInsert() argument
855 if (_nIndex > (sal_Int32)m_aItems.size()) // ermitteln des tatsaechlichen Indexs in implInsert()
857 _nIndex = m_aItems.size(); in implInsert()
861 m_aItems.insert( m_aItems.begin() + _nIndex, pElementMetaData->xInterface ); in implInsert()
871 m_xEventAttacher->insertEntry(_nIndex); in implInsert()
872 m_xEventAttacher->attach( _nIndex, pElementMetaData->xInterface, makeAny( _rxElement ) ); in implInsert()
898 impl_addVbEvents_nolck_nothrow( _nIndex ); in implInsert()
[all …]
/AOO41X/main/sw/source/core/layout/
H A Dobjectformatter.cxx104 inline SwAnchoredObject* operator[]( sal_uInt32 _nIndex ) in operator []() argument
108 if ( _nIndex < Count()) in operator []()
110 bRetObj = maObjList[_nIndex]->mpAnchoredObj; in operator []()
116 inline sal_uInt32 GetPageNum( sal_uInt32 _nIndex ) in GetPageNum() argument
120 if ( _nIndex < Count()) in GetPageNum()
122 nRetPgNum = maObjList[_nIndex]->mnPageNumOfAnchor; in GetPageNum()
129 inline bool AnchoredAtMaster( sal_uInt32 _nIndex ) in AnchoredAtMaster() argument
133 if ( _nIndex < Count()) in AnchoredAtMaster()
135 bAnchoredAtMaster = maObjList[_nIndex]->mbAnchoredAtMaster; in AnchoredAtMaster()
536 SwAnchoredObject* SwObjectFormatter::GetCollectedObj( const sal_uInt32 _nIndex ) in GetCollectedObj() argument
[all …]
/AOO41X/main/cui/source/options/
H A Dcfgchart.cxx55 const XColorEntry & SvxChartColorTable::operator[]( size_t _nIndex ) const in operator []()
57 if ( _nIndex >= m_aColorEntries.size() ) in operator []()
63 return m_aColorEntries[ _nIndex ]; in operator []()
66 ColorData SvxChartColorTable::getColorData( size_t _nIndex ) const in getColorData()
68 if ( _nIndex >= m_aColorEntries.size() ) in getColorData()
75 return const_cast< XColorEntry & >( m_aColorEntries[ _nIndex ] ).GetColor().GetRGBColor(); in getColorData()
89 void SvxChartColorTable::replace( size_t _nIndex, const XColorEntry & _rEntry ) in replace() argument
91 DBG_ASSERT( _nIndex <= m_aColorEntries.size(), in replace()
94 Color aCol1 = m_aColorEntries[ _nIndex ].GetColor(), aCol2; in replace()
95 m_aColorEntries[ _nIndex ] = _rEntry; in replace()
[all …]
H A Dcfgchart.hxx49 const XColorEntry & operator[]( size_t _nIndex ) const;
50 ColorData getColorData( size_t _nIndex ) const;
55 void replace( size_t _nIndex, const XColorEntry & _rEntry );
105 void ReplaceColorByIndex( size_t _nIndex, const XColorEntry & _rEntry );
/AOO41X/main/qadevOOo/runner/convwatch/
H A DPerformanceContainer.java93 public void setTime(int _nIndex, long _nValue) in setTime() argument
95 m_nTime[_nIndex] = _nValue; in setTime()
97 public long getTime(int _nIndex) in getTime() argument
99 return m_nTime[_nIndex]; in getTime()
102 public void startTime(int _nIndex) in startTime() argument
104 m_nTime[_nIndex] = getStartTime(); in startTime()
107 public void stopTime(int _nIndex) in stopTime() argument
109 m_nTime[_nIndex] = meanTime(m_nTime[_nIndex]); in stopTime()
/AOO41X/main/qadevOOo/runner/graphical/
H A DPerformanceContainer.java100 public void setTime(int _nIndex, long _nValue) in setTime() argument
102 m_nTime[_nIndex] = _nValue; in setTime()
104 public long getTime(int _nIndex) in getTime() argument
106 return m_nTime[_nIndex]; in getTime()
109 public void startTime(int _nIndex) in startTime() argument
111 m_nTime[_nIndex] = getStartTime(); in startTime()
114 public void stopTime(int _nIndex) in stopTime() argument
116 m_nTime[_nIndex] = meanTime(m_nTime[_nIndex]); in stopTime()
/AOO41X/main/connectivity/inc/connectivity/sdbcx/
H A DVCollection.hxx82 virtual ::rtl::OUString getName(sal_Int32 _nIndex) = 0;
83 virtual void disposeAndErase(sal_Int32 _nIndex) = 0;
86 virtual ::rtl::OUString findColumnAtIndex( sal_Int32 _nIndex) = 0;
87 virtual ObjectType getObject(sal_Int32 _nIndex) = 0;
89 virtual void setObject(sal_Int32 _nIndex,const ObjectType& _xObject) = 0;
170 inline ::rtl::OUString getElementName(sal_Int32 _nIndex) in getElementName() argument
172 return m_pElements->findColumnAtIndex(_nIndex); in getElementName()
181 ObjectType getObject(sal_Int32 _nIndex);
233 void dropImpl(sal_Int32 _nIndex,sal_Bool _bReallyDrop = sal_True);
/AOO41X/main/svtools/source/control/
H A Droadmap.cxx129 void ImplUpdateIndex( const ItemIndex _nIndex );
375 void ORoadmap::UpdatefollowingHyperLabels( ItemIndex _nIndex ) in UpdatefollowingHyperLabels() argument
378 if ( _nIndex < (ItemIndex)rItems.size() ) in UpdatefollowingHyperLabels()
381 for ( HL_Vector::const_iterator i = rItems.begin() + _nIndex; in UpdatefollowingHyperLabels()
383 ++i, ++_nIndex in UpdatefollowingHyperLabels()
388 pItem->SetIndex( _nIndex ); in UpdatefollowingHyperLabels()
389 pItem->SetPosition( GetPreviousHyperLabel( _nIndex ) ); in UpdatefollowingHyperLabels()
419 RoadmapTypes::ItemId ORoadmap::GetItemID( ItemIndex _nIndex ) const in GetItemID()
421 const RoadmapItem* pHyperLabel = GetByIndex( _nIndex ); in GetItemID()
821 void RoadmapItem::ImplUpdateIndex( const ItemIndex _nIndex ) in ImplUpdateIndex() argument
[all …]
/AOO41X/main/odk/examples/java/Inspector/
H A DSwingDialogProvider.java91 public void removeTabPaneByIndex(int _nIndex){ in removeTabPaneByIndex() argument
92 if (_nIndex > -1){ in removeTabPaneByIndex()
93 String sSelInspectorPanelTitle = m_jTabbedPane1.getTitleAt(_nIndex); in removeTabPaneByIndex()
94 m_jTabbedPane1.remove(_nIndex); in removeTabPaneByIndex()
121 public InspectorPane getInspectorPage(int _nIndex){ in getInspectorPage() argument
123 if (_nIndex > -1){ in getInspectorPage()
124 … JPanel jPnlContainerInspectorPanel = (JPanel) m_jTabbedPane1.getComponentAt(_nIndex); in getInspectorPage()
125 String sInspectorPanelTitle = m_jTabbedPane1.getTitleAt(_nIndex); in getInspectorPage()
/AOO41X/main/odk/examples/DevelopersGuide/Database/DriverSkeleton/
H A Dpropertyids.cxx97 ::rtl::OUString OPropertyMap::getNameByIndex(sal_Int32 _nIndex) const in getNameByIndex()
100 … ::std::map<sal_Int32 , rtl_uString*>::const_iterator aIter = m_aPropertyMap.find(_nIndex); in getNameByIndex()
102 sRet = const_cast<OPropertyMap*>(this)->fillValue(_nIndex); in getNameByIndex()
108 ::rtl::OUString OPropertyMap::fillValue(sal_Int32 _nIndex) in fillValue() argument
111 switch(_nIndex) in fillValue()
167 m_aPropertyMap[_nIndex] = pStr; in fillValue()
/AOO41X/main/accessibility/inc/accessibility/extended/
H A Daccessibletablistboxtable.hxx54 void ensureValidIndex( sal_Int32 _nIndex ) const
72 … inline sal_Int32 implGetRow( sal_Int32 _nIndex ) const { return _nIndex / implGetColumnCount(); } in implGetRow()
74 …inline sal_Int32 implGetColumn( sal_Int32 _nIndex ) const { return _nIndex % implGetColumnCount();… in implGetColumn()
/AOO41X/main/forms/source/inc/
H A DInterfaceContainer.hxx162 …virtual ::com::sun::star::uno::Any SAL_CALL getByIndex(sal_Int32 _nIndex) throw(::com::sun::star::…
165 …virtual void SAL_CALL replaceByIndex(sal_Int32 _nIndex, const ::com::sun::star::uno::Any& _rElemen…
168 …virtual void SAL_CALL insertByIndex(sal_Int32 _nIndex, const ::com::sun::star::uno::Any& Element) …
169 …virtual void SAL_CALL removeByIndex(sal_Int32 _nIndex) throw(::com::sun::star::lang::IndexOutOfBou…
218 sal_Int32 _nIndex,
248 const sal_Int32 _nIndex,
260 const sal_Int32 _nIndex,
268 …void implCheckIndex( const sal_Int32 _nIndex ) SAL_THROW( ( ::com::sun::star::lang::IndexOutOfBoun…
/AOO41X/main/dbaccess/source/core/dataaccess/
H A Dmyucp_datasupplier.cxx223 DataSupplier::queryContent( sal_uInt32 _nIndex ) in queryContent() argument
227 if ( (size_t)_nIndex < m_pImpl->m_aResults.size() ) in queryContent()
229 Reference< XContent > xContent = m_pImpl->m_aResults[ _nIndex ]->xContent.get(); in queryContent()
237 Reference< XContentIdentifier > xId = queryContentIdentifier( _nIndex ); in queryContent()
247 m_pImpl->m_aResults[ _nIndex ]->xContent = m_pImpl->m_xContent->getContent(sName); in queryContent()
249 xContent = m_pImpl->m_aResults[ _nIndex ]->xContent.get(); in queryContent()
H A Dbookmarkcontainer.cxx295 Any SAL_CALL OBookmarkContainer::getByIndex( sal_Int32 _nIndex ) throw(IndexOutOfBoundsException, W… in getByIndex() argument
300 if ((_nIndex < 0) || (_nIndex >= (sal_Int32)m_aBookmarksIndexed.size())) in getByIndex()
303 return makeAny(m_aBookmarksIndexed[_nIndex]->second); in getByIndex()
/AOO41X/main/svtools/source/table/
H A Dtablecontrol.cxx304 Reference<XAccessible> TableControl::CreateAccessibleControl( sal_Int32 _nIndex ) in CreateAccessibleControl() argument
306 (void)_nIndex; in CreateAccessibleControl()
406 ::rtl::OUString TableControl::GetRowName( sal_Int32 _nIndex) const in GetRowName()
409 GetModel()->getRowHeading( _nIndex ) >>= sRowName; in GetRowName()
421 ::rtl::OUString TableControl::GetColumnName( sal_Int32 _nIndex) const in GetColumnName()
423 return GetModel()->getColumnModel(_nIndex)->getName(); in GetColumnName()
/AOO41X/main/svtools/source/brwbox/
H A Deditbrowsebox2.cxx103 _nIndex in CreateAccessibleControl()
107 DBG_ASSERT( 0 == _nIndex, "EditBrowseBox::CreateAccessibleControl: invalid index!" ); in CreateAccessibleControl()
188 …gle EditBrowseBox::GetFieldCharacterBounds(sal_Int32 _nRow,sal_Int32 _nColumnPos,sal_Int32 _nIndex) in GetFieldCharacterBounds() argument
196 aRect = pController->GetWindow().GetCharacterBounds(_nIndex); in GetFieldCharacterBounds()
/AOO41X/main/accessibility/source/extended/
H A Daccessibleiconchoicectrlentry.cxx52 …void checkActionIndex_Impl( sal_Int32 _nIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsExc… in checkActionIndex_Impl() argument
54 if ( _nIndex < 0 || _nIndex >= ACCESSIBLE_ACTION_COUNT ) in checkActionIndex_Impl()
488 …awt::Rectangle SAL_CALL AccessibleIconChoiceCtrlEntry::getCharacterBounds( sal_Int32 _nIndex ) thr… in getCharacterBounds() argument
493 if ( ( 0 > _nIndex ) || ( getCharacterCount() <= _nIndex ) ) in getCharacterBounds()
500 Rectangle aCharRect = m_pIconCtrl->GetEntryCharacterBounds( m_nIndex, _nIndex ); in getCharacterBounds()
/AOO41X/main/sal/qa/rtl/random/
H A Drtl_random.cxx201 void addValue(sal_Int16 _nIndex, sal_Int32 _nValue) in addValue() argument
203 OSL_ASSERT(_nIndex >= 0 && _nIndex < 256); in addValue()
204 m_nDispensation[_nIndex] += _nValue; in addValue()
/AOO41X/main/sw/source/core/inc/
H A Dobjectformatter.hxx161 SwAnchoredObject* GetCollectedObj( const sal_uInt32 _nIndex );
169 sal_uInt32 GetPgNumOfCollected( const sal_uInt32 _nIndex );
177 bool IsCollectedAnchoredAtMaster( const sal_uInt32 _nIndex );
/AOO41X/main/extensions/source/propctrlr/
H A Dbrowserlistbox.cxx589 void OBrowserListBox::PositionLine( sal_uInt16 _nIndex ) in PositionLine() argument
596 aPos.Y() += _nIndex * m_nRowHeight; in PositionLine()
598 if ( _nIndex < m_aOrderedLines.size() ) in PositionLine()
600 m_aOrderedLines[ _nIndex ]->second.pLine->SetPosSizePixel( aPos, aSize ); in PositionLine()
602 … m_aOrderedLines[ _nIndex ]->second.pLine->SetTitleWidth( m_nTheNameSize + 2 * FRAME_OFFSET ); in PositionLine()
605 if ( !m_aOrderedLines[ _nIndex ]->second.pLine->IsVisible() ) in PositionLine()
606 m_aOrderedLines[ _nIndex ]->second.pLine->Show(); in PositionLine()

1234