Lines Matching refs:i

95         for ( sal_uLong i = 0; i < obj.pChildList->Count(); i++ ){  in XMLParentNode()  local
96 pNode = obj.pChildList->GetObject( i ); in XMLParentNode()
125 for ( sal_uLong i = 0; i < obj.pChildList->Count(); i++ ) in operator =() local
126 AddChild( obj.pChildList->GetObject( i ) ); in operator =()
159 for ( sal_uLong i = 0; i < pChildList->Count(); i++ ) { in GetPosition() local
160 XMLChildNode *pChild = pChildList->GetObject( i ); in GetPosition()
169 return i; in GetPosition()
172 return i; in GetPosition()
187 for ( sal_uLong i = 0; i < pChildList->Count(); i++ ) { in RemoveChild() local
188 XMLChildNode *pChild = pChildList->GetObject( i ); in RemoveChild()
201 pChildList->Remove( i ); in RemoveChild()
203 return i; in RemoveChild()
217 for ( sal_uLong i = 0; i < pChildList->Count(); i++ ) in RemoveAndDeleteAllChilds() local
218 delete pChildList->GetObject( i ); in RemoveAndDeleteAllChilds()
227 for ( sal_uLong i = 0; i < pChildList->Count(); i++ ) { in GetChildElement() local
228 XMLChildNode *pChild = pChildList->GetObject( i ); in GetChildElement()
333 for ( sal_uLong i = 0; i < GetChildList()->Count(); i++ ) in Write() local
334 Write( rStream, GetChildList()->GetObject( i )); in Write()
399 for ( sal_uLong i = 0; i < GetChildList()->Count(); i++ ) in Print() local
400 Print( GetChildList()->GetObject( i )); in Print()
632 for ( sal_uLong i = 0; i < GetChildList()->Count(); i++ ){ in SearchL10NElements() local
633 pElement = (XMLParentNode*) GetChildList()->GetObject( i ); in SearchL10NElements()
634 … if( pElement->GetNodeType() == XML_NODE_TYPE_ELEMENT ) SearchL10NElements( pElement , i); in SearchL10NElements()
706 for ( sal_uLong i = 0; i < GetChildList()->Count(); i++ ){ in CheckExportStatus() local
707 pElement = (XMLParentNode*) GetChildList()->GetObject( i ); in CheckExportStatus()
767 for ( sal_uLong i = 0; i < obj.pAttributes->Count(); i++ ) in XMLElement() local
768 AddAttribute( *obj.pAttributes->GetObject( i ) , obj.pAttributes->GetObject( i )->GetValue() ); in XMLElement()
787 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ) in operator =() local
788 delete pAttributes->GetObject( i ); in operator =()
793 for ( sal_uLong i = 0; i < obj.pAttributes->Count(); i++ ) in operator =() local
794 … AddAttribute( *obj.pAttributes->GetObject( i ) , obj.pAttributes->GetObject( i )->GetValue() ); in operator =()
815 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ){ in ChangeLanguageTag() local
816 if ( *pAttributes->GetObject( i ) == rName ){ in ChangeLanguageTag()
817 pAttributes->GetObject( i )->setValue(rValue); in ChangeLanguageTag()
826 for ( sal_uLong i = 0; i < pCList->Count(); i++ ){ in ChangeLanguageTag() local
827 pNode = pCList->GetObject( i ); in ChangeLanguageTag()
844 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ) in GetAttribute() local
845 if ( *pAttributes->GetObject( i ) == rName ) in GetAttribute()
846 return pAttributes->GetObject( i ); in GetAttribute()
856 for ( sal_uLong i = 0; i < pAttributes->Count(); i++ ) in ~XMLElement() local
857 delete pAttributes->GetObject( i ); in ~XMLElement()
1143 int i = 0; in StartElement() local
1144 while( atts[i] ) { in StartElement()
1146 String( XML_CHAR_TO_OUSTRING( atts[ i ] )), in StartElement()
1147 String( XML_CHAR_TO_OUSTRING( atts[ i + 1 ] ))); in StartElement()
1148 i += 2; in StartElement()
1325 for ( sal_uInt16 i = 0; i < rString.Len(); i++) { in QuotHTML() local
1326 if ( i < rString.Len()) { in QuotHTML()
1327 switch ( rString.GetChar( i )) { in QuotHTML()
1328 case '\\': if( i+1 <= rString.Len() ){ in QuotHTML()
1329 switch( rString.GetChar( i+1 ) ){ in QuotHTML()
1330 case '<': sReturn.append( LT );i++;break; in QuotHTML()
1331 case '>': sReturn.append( GT );i++;break; in QuotHTML()
1332 case '\\': sReturn.append( QUOT );i++;break; in QuotHTML()
1333 case '\"': sReturn.append( APOS );i++;break; in QuotHTML()
1360 ( ( i + 4 ) < rString.Len()) && in QuotHTML()
1361 ( String( rString.Copy( i, 5 ) ).Equals( QAMP ) ) in QuotHTML()
1363 sReturn.append( rString.GetChar( i ) ); in QuotHTML()
1369 sReturn.append( rString.GetChar( i ) ); in QuotHTML()