Lines Matching refs:file
219 OUString file( reinterpret_cast<sal_Char const *>(bytes.getConstArray()), in readLine()
224 if (file.match( startingWith, pos )) in readLine()
231 pos = file.indexOf( LF, pos ); in readLine()
233 buf.append( file.copy( start ) ); in readLine()
237 if (pos > 0 && file[ pos - 1 ] == CR) in readLine()
240 buf.append( file.copy( start, pos - start - 1 ) ); in readLine()
244 buf.append( file.copy( start, pos - start ) ); in readLine()
247 if (pos < file.getLength() && in readLine()
248 (file[ pos ] == ' ' || file[ pos ] == '\t')) in readLine()
262 sal_Int32 next_lf = file.indexOf( LF, pos ); in readLine()
275 OUString file( reinterpret_cast<sal_Char const *>(bytes.getConstArray()), in readProperties()
286 pos = file.indexOf( LF, pos ); in readProperties()
288 buf.append( file.copy( start ) ); in readProperties()
293 if (pos > 0 && file[ pos - 1 ] == CR) in readProperties()
295 buf.append( file.copy( start, pos - start - 1 ) ); in readProperties()
297 buf.append( file.copy( start, pos - start ) ); in readProperties()