Home
last modified time | relevance | path

Searched refs:index (Results 251 – 275 of 950) sorted by last modified time

1...<<11121314151617181920>>...38

/trunk/main/vcl/unx/generic/gdi/
H A Dsalgdi3.cxx92 unsigned long index; member
482 aGlyph.index = aGlyphId & GF_IDXMASK; in DrawCairoAAFontString()
/trunk/main/vcl/unx/generic/app/
H A Di18n_cb.cxx590 …r, "got XNUnicodeCharacterSubset\n %d\n %d\n %s\n %d\n", pSubset->index, pSubset->subset_i… in StatusDrawCallback()
/trunk/main/vcl/source/control/
H A Dthrobber.cxx257 size_t index = 0; in getDefaultImageURLs() local
260 case IMAGES_16_PX: index = 0; break; in getDefaultImageURLs()
261 case IMAGES_32_PX: index = 1; break; in getDefaultImageURLs()
262 case IMAGES_64_PX: index = 2; break; in getDefaultImageURLs()
269 aImageURLs.reserve( nImageCounts[index] ); in getDefaultImageURLs()
270 for ( size_t i=0; i<nImageCounts[index]; ++i ) in getDefaultImageURLs()
274 aURL.appendAscii( pResolutions[index] ); in getDefaultImageURLs()
/trunk/main/vcl/inc/vcl/
H A Dsysdata.hxx146 unsigned long index; member
/trunk/main/vcl/aqua/source/a11y/
H A Daqua11ytextwrapper.h42 +(id)rangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
45 +(id)styleRangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
47 +(id)lineForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index;
H A Daqua11ytextwrapper.mm160 +(id)lineForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index {
163 …e = [ wrapper accessibleMultiLineText ] -> getLineNumberAtIndex ( (sal_Int32) [ index intValue ] );
198 +(id)rangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index {
201 …TextSegment textSegment = [ wrapper accessibleText ] -> getTextBeforeIndex ( [ index intValue ], A…
217 sal_Int32 index = [ wrapper accessibleText ] -> getIndexAtPoint( aPoint );
218 if ( index > -1 ) {
219 …apper rangeForIndexAttributeForElement: wrapper forParameter: [ NSNumber numberWithLong: index ] ];
262 +(id)styleRangeForIndexAttributeForElement:(AquaA11yWrapper *)wrapper forParameter:(id)index {
265 …TextSegment textSegment = [ wrapper accessibleText ] -> getTextAtIndex ( [ index intValue ], Acces…
H A Daqua11ywrapper.mm315 for ( int index = 0; index < relationMemberOf.TargetSet.getLength(); index++ ) {
419 // find index of self
420 int index = 1;
427 index++;
430 NSNumber * nIndex = [ NSNumber numberWithInt: index ];
561 -(id)rangeForIndexAttributeForParameter:(id)index {
563 return [ AquaA11yTextWrapper rangeForIndexAttributeForElement: self forParameter: index ];
585 -(id)styleRangeForIndexAttributeForParameter:(id)index {
587 … return [ AquaA11yTextWrapper styleRangeForIndexAttributeForElement: self forParameter: index ];
646 -(id)lineForIndexAttributeForParameter:(id)index {
[all …]
/trunk/main/vbahelper/source/vbahelper/
H A Dvbahelper.cxx356 for ( sal_Int32 index=0; index<nProps; ++index, ++pSrc, ++pDest ) in dispatchRequests() local
H A Dvbashape.cxx455 ScVbaShape::ShapeRange( const uno::Any& index ) throw ( uno::RuntimeException ) in ShapeRange() argument
468 if ( index.hasValue() ) in ShapeRange()
469 return xShapeRange->Item( index, uno::Any() ); in ShapeRange()
H A Dvbashaperange.cxx83 for ( sal_Int32 index = 0; index < nLen; ++index ) in getShapes() local
95 for ( sal_Int32 index = 1; index <= nLen; ++index ) in IncrementRotation() local
106 for ( sal_Int32 index = 1; index <= nLen; ++index ) in IncrementLeft() local
117 for ( sal_Int32 index = 1; index <= nLen; ++index ) in IncrementTop() local
127 for ( sal_Int32 index = 1; index <= nLen; ++index ) in getHeight() local
138 for ( sal_Int32 index = 1; index <= nLen; ++index ) in setHeight() local
148 for ( sal_Int32 index = 1; index <= nLen; ++index ) in getWidth() local
159 for ( sal_Int32 index = 1; index <= nLen; ++index ) in setWidth() local
169 for ( sal_Int32 index = 1; index <= nLen; ++index ) in getLeft() local
180 for ( sal_Int32 index = 1; index <= nLen; ++index ) in setLeft() local
[all …]
H A Dvbashapes.cxx78 for ( sal_Int32 index=0; index<nLen; ++index ) in initBaseCollection() local
79 …mShapes.push_back( uno::Reference< drawing::XShape >( m_xIndexAccess->getByIndex( index ) , uno::U… in initBaseCollection()
147 for( sal_Int32 index = 0; index < nElems; ++index ) in getShapesByArrayIndices() local
150 if ( sIndices[ index ].getValueTypeClass() == uno::TypeClass_STRING ) in getShapesByArrayIndices()
153 sIndices[ index ] >>= sName; in getShapesByArrayIndices()
159 sIndices[ index ] >>= nIndex; in getShapesByArrayIndices()
H A Dvbacommandbarhelper.cxx242 sal_Int32 index = sLabel.indexOf( sal_Unicode('~') ); in findControlByName() local
243 if( index < 0 ) in findControlByName()
249 aBuffer.append( sLabel.copy( 0, index ) ); in findControlByName()
252 aBuffer.append( sLabel.copy( index + 1 ) ); in findControlByName()
/trunk/main/vbahelper/source/msforms/
H A Dvbauserform.cxx233 ScVbaUserForm::Controls( const uno::Any& index ) throw (uno::RuntimeException) in Controls() argument
239 if ( index.hasValue() ) in Controls()
240 return uno::makeAny( xControls->Item( index, uno::Any() ) ); in Controls()
H A Dvbauserform.hxx59 …virtual css::uno::Any SAL_CALL Controls( const css::uno::Any& index ) throw (css::uno::RuntimeExce…
H A Dvbacombobox.cxx98 for ( sal_Int32 index = 0; sText.getLength() && index < nLen; ++index ) in getListIndex() local
100 if ( sItems[ index ].equals( sText ) ) in getListIndex()
102 OSL_TRACE("getListIndex returning %d", index ); in getListIndex()
103 return uno::makeAny( index ); in getListIndex()
145 ScVbaComboBox::removeItem( const uno::Any& index ) throw (uno::RuntimeException) in removeItem() argument
147 mpListHelper->removeItem( index ); in removeItem()
H A Dvbacombobox.hxx74 virtual void SAL_CALL removeItem( const css::uno::Any& index ) throw (css::uno::RuntimeException);
H A Dvbalistbox.cxx141 ScVbaListBox::Selected( sal_Int32 index ) throw (css::uno::RuntimeException) in Selected() argument
148 sal_Int16 nIndex = static_cast< sal_Int16 >( index ); in Selected()
164 ScVbaListBox::removeItem( const uno::Any& index ) throw (uno::RuntimeException) in removeItem() argument
166 mpListHelper->removeItem( index ); in removeItem()
H A Dvbalistbox.hxx62 virtual css::uno::Any SAL_CALL Selected( ::sal_Int32 index ) throw (css::uno::RuntimeException);
64 … virtual void SAL_CALL removeItem( const css::uno::Any& index ) throw (css::uno::RuntimeException);
H A Dvbalistcontrolhelper.cxx86 ListControlHelper::removeItem( const uno::Any& index ) throw (uno::RuntimeException) in removeItem() argument
90 if ( index >>= nIndex ) in removeItem()
H A Dvbalistcontrolhelper.hxx35 …virtual void SAL_CALL removeItem( const css::uno::Any& index ) throw (css::uno::RuntimeException);…
H A Dvbamultipage.cxx107 ScVbaMultiPage::Pages( const uno::Any& index ) throw (uno::RuntimeException) in Pages() argument
112 if ( !index.hasValue() ) in Pages()
114 return xColl->Item( uno::makeAny( index ), uno::Any() ); in Pages()
H A Dvbamultipage.hxx52 …virtual css::uno::Any SAL_CALL Pages( const css::uno::Any& index ) throw (css::uno::RuntimeExcepti…
/trunk/main/vbahelper/inc/vbahelper/
H A Dvbashape.hxx107 …virtual css::uno::Any SAL_CALL ShapeRange( const css::uno::Any& index ) throw ( css::uno::RuntimeE…
/trunk/main/unoxml/source/xpath/
H A Dnodelist.cxx61 Reference< XNode > SAL_CALL CNodeList::item(sal_Int32 index) in item() argument
69 xmlNodePtr const pNode = xmlXPathNodeSetItem(m_pNodeSet, index); in item()
H A Dnodelist.hxx77 virtual Reference< XNode > SAL_CALL item(sal_Int32 index)

Completed in 147 milliseconds

1...<<11121314151617181920>>...38