Lines Matching refs:oustring
193 void SAL_CALL ConfigData::replaceName( rtl::OUString& oustring ) const in replaceName()
199 while( ( idx = oustring.indexOf( sal_Unicode('%'),++idx ) ) != -1 ) in replaceName()
201 if( oustring.indexOf( prodName,idx ) == idx ) in replaceName()
203 else if( oustring.indexOf( prodVersion,idx ) == idx ) in replaceName()
205 else if( oustring.indexOf( vendName,idx ) == idx ) in replaceName()
207 else if( oustring.indexOf( vendVersion,idx ) == idx ) in replaceName()
209 else if( oustring.indexOf( vendShort,idx ) == idx ) in replaceName()
222 aStrBuf.append( &oustring.getStr()[k],idx - k ); in replaceName()
230 if( k < oustring.getLength() ) in replaceName()
231 aStrBuf.append( &oustring.getStr()[k],oustring.getLength()-k ); in replaceName()
232 oustring = aStrBuf.makeStringAndClear(); in replaceName()