Lines Matching refs:sTmp
441 ByteString sTmp; in InitLanguages() local
444 sTmp = sLanguages.GetToken( x, ',' ).GetToken( 0, '=' ); in InitLanguages()
445 sTmp.EraseLeadingAndTrailingChars(); in InitLanguages()
446 if( bMergeMode && !isAllowed( sTmp ) ){} in InitLanguages()
447 else if( !( (sTmp.GetChar(0)=='x' || sTmp.GetChar(0)=='X') && sTmp.GetChar(1)=='-' ) ){ in InitLanguages()
448 aLanguages.push_back( sTmp ); in InitLanguages()
458 ByteString sTmp; in InitForcedLanguages() local
461 sTmp = sForcedLanguages.GetToken( x, ',' ).GetToken( 0, '=' ); in InitForcedLanguages()
462 sTmp.EraseLeadingAndTrailingChars(); in InitForcedLanguages()
463 if( bMergeMode && isAllowed( sTmp ) ){} in InitForcedLanguages()
464 else if( !( (sTmp.GetChar(0)=='x' || sTmp.GetChar(0)=='X') && sTmp.GetChar(1)=='-' ) ) in InitForcedLanguages()
465 aForcedLanguages.push_back( sTmp ); in InitForcedLanguages()
489 ByteString sTmp = rString.Copy( 0 , idx ); in replaceEncoding() local
490 sTmp.Append( "\\u" ); in replaceEncoding()
491 sTmp.Append( rString.GetChar( idx+3 ) ); in replaceEncoding()
492 sTmp.Append( rString.GetChar( idx+4 ) ); in replaceEncoding()
493 sTmp.Append( rString.GetChar( idx+5 ) ); in replaceEncoding()
494 sTmp.Append( rString.GetChar( idx+6 ) ); in replaceEncoding()
495 sTmp.Append( rString.Copy( idx+8 , rString.Len() ) ); in replaceEncoding()
496 rString = sTmp; in replaceEncoding()
712 ByteString sTmp( sDecodedStr , RTL_TEXTENCODING_UTF8 ); in GetTempFile() local
715 sTmp.SearchAndReplace("file:///",""); in GetTempFile()
716 sTmp.SearchAndReplaceAll('/','\\'); in GetTempFile()
725 sTmp.SearchAndReplace("file://",""); in GetTempFile()
727 DirEntry aDirEntry( sTmp ); in GetTempFile()