Lines Matching refs:i
165 for ( int i = 0; i < aChildren.getLength(); i++ ) in Widget()
167 Widget *pChild = new Widget( aChildren[ i ], "---" ); in Widget()
193 for ( int i = 0; i < WIDGETS_SPECS_LEN; i++ ) in Widget() local
194 if ( unoName.equalsAscii( WIDGETS_SPECS[ i ].pName ) ) in Widget()
196 const char *label = WIDGETS_SPECS[ i ].pLabel; in Widget()
324 for ( int i = pos; i < nChildrenLen; i++ ) in addChild() local
325 mxContainer->removeChild( aChildren[ i ] ); in addChild()
327 for ( int i = pos; i < nChildrenLen; i++ ) in addChild() local
328 mxContainer->addChild( aChildren[ i ] ); in addChild()
416 int i = 0; in getChildPos() local
418 it != maChildren.end(); it++, i++ ) in getChildPos()
421 return i; in getChildPos()
901 int i, j, k;
902 for ( i = 0; i < _str.getLength(); i++ )
907 for ( k = 0; ori[ k ] && i+k < _str.getLength(); k++ )
908 if ( ori[ k ] != str[ i+k ] )
914 i += k;
918 buf.append( str[ i ] );
1210 for ( unsigned int i = 1; i < sizeof( toIgnoreList )/sizeof( char * ); i++ ) in toIgnore()
1212 if ( strcmp(toIgnoreList[i-1], toIgnoreList[i]) >= 0 ) in toIgnore()
1216 toIgnoreList[i], toIgnoreList[i-1]); in toIgnore()
1545 for (int i = 0; i < depth; i++) in rebuild() local
1554 for ( Widget *i = FlatLayout::next( mpRootWidget ); i; i = FlatLayout::next( i ) ) in rebuild() local
1555 mpListBox->InsertEntry( inner::padString( i->getLabel(), i->getDepth()-1 ) ); in rebuild()
1571 for (int i = 0; i < string.getLength(); i++) { in toXMLNaming() local
1572 if ( str[i] >= 'A' && str[i] <= 'Z' ) in toXMLNaming()
1574 if ( i > 0 ) in toXMLNaming()
1576 buffer.append ((sal_Unicode) (str[i] - 'A' + 'a')); in toXMLNaming()
1579 buffer.append ((sal_Unicode) str[i]); in toXMLNaming()
1593 for ( Widget *i = FlatLayout::next( mpRootWidget ); i; i = FlatLayout::next( i ) ) in print() local
1595 for ( int d = i->getDepth(); d > 0; d-- ) in print()
1597 printf("<%s ", OUSTRING_CSTR( i->getUnoName() ) ); in print()
1603 Widget::PropertyIterator it( i, wKind ); in print()
1607 if ( !i->isPropertyTouched( prop.Name, wKind ) ) in print()
1610 rtl::OUString value = i->getProperty( prop.Name, wKind ); in print()
1744 for ( int i = 0; i < WIDGETS_SPECS_LEN; i++ ) in EditorImpl() local
1747 pBtn->SetText( rtl::OUString::createFromAscii( WIDGETS_SPECS[ i ].pLabel ) ); in EditorImpl()
1749 if ( WIDGETS_SPECS[ i ].pIconName != NULL ) in EditorImpl()
1752 aPath += WIDGETS_SPECS[ i ].pIconName; in EditorImpl()
1759 layout::Container *pBox = WIDGETS_SPECS[ i ].bIsContainer ? &aContainers : &aWidgets; in EditorImpl()
1781 for ( std::list< layout::PushButton * >::const_iterator i = maCreateButtons.begin(); in ~EditorImpl() local
1782 i != maCreateButtons.end(); i++) in ~EditorImpl()
1783 delete *i; in ~EditorImpl()
1877 int i = 0; in IMPL_LINK() local
1879 it != maCreateButtons.end(); it++, i++ ) in IMPL_LINK()
1884 OSL_ASSERT( i < WIDGETS_SPECS_LEN ); in IMPL_LINK()
1885 createWidget( WIDGETS_SPECS[i].pName ); in IMPL_LINK()