Lines Matching refs:ustrFile
37 rtl_uString *ustrFile = NULL; in osl_abbreviateSystemPath() local
49 …rtl_uString_newFromStr_WithLength( &ustrFile, &ustrSystemPath->buffer[iLastSlash], ustrSystemPath-… in osl_abbreviateSystemPath()
54 rtl_uString_newFromString( &ustrFile, ustrSystemPath ); in osl_abbreviateSystemPath()
59 uFileWidth = pfnCalcWidth( ustrFile ); in osl_abbreviateSystemPath()
83 if ( ustrFile->length > 4 ) in osl_abbreviateSystemPath()
85 ustrFile->length--; in osl_abbreviateSystemPath()
86 ustrFile->buffer[ustrFile->length-3] = '.'; in osl_abbreviateSystemPath()
87 ustrFile->buffer[ustrFile->length-2] = '.'; in osl_abbreviateSystemPath()
88 ustrFile->buffer[ustrFile->length-1] = '.'; in osl_abbreviateSystemPath()
89 ustrFile->buffer[ustrFile->length] = 0; in osl_abbreviateSystemPath()
91 uFileWidth = pfnCalcWidth( ustrFile ); in osl_abbreviateSystemPath()
97 rtl_uString_newConcat( pustrCompacted, ustrPath, ustrFile ); in osl_abbreviateSystemPath()
113 if ( ustrFile ) in osl_abbreviateSystemPath()
114 rtl_uString_release( ustrFile ); in osl_abbreviateSystemPath()