Home
last modified time | relevance | path

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

1234

/trunk/main/connectivity/source/commontools/
H A Dparameters.cxx950 m_aParametersVisited.reserve( _nIndex ); in externalParameterVisited()
954 m_aParametersVisited[ _nIndex - 1 ] = true; in externalParameterVisited()
963 externalParameterVisited( _nIndex ) \
986 VISIT_PARAMETER( setByte( _nIndex, x ) ); in setByte()
998 VISIT_PARAMETER( setInt( _nIndex, x ) ); in setInt()
1004 VISIT_PARAMETER( setLong( _nIndex, x ) ); in setLong()
1034 VISIT_PARAMETER( setDate( _nIndex, x ) ); in setDate()
1040 VISIT_PARAMETER( setTime( _nIndex, x ) ); in setTime()
1076 VISIT_PARAMETER( setRef( _nIndex, x ) ); in setRef()
1082 VISIT_PARAMETER( setBlob( _nIndex, x ) ); in setBlob()
[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()
/trunk/main/connectivity/source/sdbcx/
H A DVCollection.cxx165 return m_aElements[_nIndex]->first; in getName()
170 …OSL_ENSURE(_nIndex >= 0 && _nIndex < static_cast<sal_Int32>(m_aElements.size()),"Illegal argument!… in disposeAndErase()
173 m_aElements[_nIndex]->second = T(); in disposeAndErase()
204 …OSL_ENSURE(_nIndex >= 0 && _nIndex < static_cast<sal_Int32>(m_aElements.size()),"Illegal argument!… in findColumnAtIndex()
205 return m_aElements[_nIndex]->first; in findColumnAtIndex()
210 …OSL_ENSURE(_nIndex >= 0 && _nIndex < static_cast<sal_Int32>(m_aElements.size()),"Illegal argument!… in getObject()
211 return m_aElements[_nIndex]->second; in getObject()
221 …OSL_ENSURE(_nIndex >= 0 && _nIndex < static_cast<sal_Int32>(m_aElements.size()),"Illegal argument!… in setObject()
432 dropObject(_nIndex,elementName); in dropImpl()
434 m_pElements->disposeAndErase(_nIndex); in dropImpl()
[all …]
/trunk/main/connectivity/inc/connectivity/
H A Dparameters.hxx228 void setNull ( sal_Int32 _nIndex, sal_Int32 sqlType);
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);
244 void setObject ( sal_Int32 _nIndex, const ::com::sun::star::uno::Any& x);
[all …]
/trunk/main/forms/source/misc/
H A DInterfaceContainer.cxx770 if (_nIndex < 0 || (_nIndex >= (sal_Int32)m_aItems.size())) in getByIndex()
857 _nIndex = m_aItems.size(); in implInsert()
871 m_xEventAttacher->insertEntry(_nIndex); in implInsert()
908 aEvt.Accessor <<= _nIndex; in implInsert()
994 m_xEventAttacher->removeEntry( _nIndex ); in implReplaceByIndex()
1031 aReplaceEvent.Accessor <<= _nIndex; in implReplaceByIndex()
1041 if (_nIndex < 0 || _nIndex >= (sal_Int32)m_aItems.size()) in implCheckIndex()
1050 implCheckIndex( _nIndex ); in replaceByIndex()
1092 aEvt.Accessor <<= _nIndex; in implRemoveByIndex()
1103 implCheckIndex( _nIndex ); in removeByIndex()
[all …]
/trunk/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()
547 sal_uInt32 SwObjectFormatter::GetPgNumOfCollected( const sal_uInt32 _nIndex ) in GetPgNumOfCollected() argument
[all …]
/trunk/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()
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()
96 aCol2 = m_aColorEntries[ _nIndex ].GetColor(); 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 );
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/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()
/trunk/main/qadevOOo/java/OOoRunner/src/main/java/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()
/trunk/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);
/trunk/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 …]
/trunk/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()
/trunk/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()
/trunk/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()
/trunk/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…
/trunk/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()
/trunk/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()
/trunk/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()
/trunk/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()
/trunk/main/sal/qa/rtl/random/
H A Drtl_random.cxx167 void addValue(sal_Int16 _nIndex, sal_Int32 _nValue) in addValue() argument
169 ASSERT_TRUE(_nIndex >= 0 && _nIndex < 256); in addValue()
170 m_nDispensation[_nIndex] += _nValue; in addValue()
/trunk/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 );
/trunk/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()

Completed in 138 milliseconds

1234