Lines Matching refs:ByteString

51 ByteString PFormEntrys::Dump()  in Dump()
53 ByteString sRet( "PFormEntrys\n" ); in Dump()
54 ByteString a("sText"); in Dump()
60 sal_Bool PFormEntrys::GetTransex3Text( ByteString &rReturn, in GetTransex3Text()
61 sal_uInt16 nTyp, const ByteString &nLangIndex, sal_Bool bDel ) in GetTransex3Text()
64 ByteString test( rReturn ); in GetTransex3Text()
77 sal_Bool PFormEntrys::GetText( ByteString &rReturn, in GetText()
78 sal_uInt16 nTyp, const ByteString &nLangIndex, sal_Bool bDel ) in GetText()
122 if( aMap.find( ByteString("HACK") ) != aMap.end() ) in GetPFormEntrys()
123 return aMap[ ByteString("HACK") ]; in GetPFormEntrys()
127 void MergeData::Insert(const ByteString&, PFormEntrys* pfEntrys ) in Insert() argument
129 aMap.insert( PFormEntrysHashMap::value_type( ByteString("HACK") , pfEntrys ) ); in Insert()
132 ByteString MergeData::Dump(){ in Dump()
133 ByteString sRet( "MergeData\n" ); in Dump()
148 PFormEntrys* MergeData::GetPFObject( const ByteString& rPFO ){ in GetPFObject()
149 if( aMap.find( ByteString("HACK") ) != aMap.end() ) in GetPFObject()
155 PFormEntrys *MergeData::InsertEntry( const ByteString &rPForm ) in InsertEntry()
164 ByteString sResTyp_upper( pData->sResTyp ); in operator ==()
166 ByteString sTyp_upper( sTyp ); in operator ==()
185 const ByteString &rFileName, in MergeDataFile()
186 const ByteString& sFile, in MergeDataFile()
194 ByteString sLine; in MergeDataFile()
195 const ByteString sHACK("HACK"); in MergeDataFile()
218 const ByteString sTYP = sLine.GetToken( 3, '\t', rIdx ); in MergeDataFile()
219 const ByteString sGID = sLine.GetToken( 0, '\t', rIdx ); // 4 in MergeDataFile()
220 const ByteString sLID = sLine.GetToken( 0, '\t', rIdx ); // 5 in MergeDataFile()
221 ByteString sPFO = sLine.GetToken( 1, '\t', rIdx ); // 7 in MergeDataFile()
223 ByteString nLANG = sLine.GetToken( 1, '\t', rIdx ); // 9 in MergeDataFile()
225 const ByteString sTEXT = sLine.GetToken( 0, '\t', rIdx ); // 10 in MergeDataFile()
226 const ByteString sQHTEXT = sLine.GetToken( 1, '\t', rIdx ); // 12 in MergeDataFile()
227 const ByteString sTITLE = sLine.GetToken( 0, '\t', rIdx ); // 13 in MergeDataFile()
253 ByteString MergeDataFile::Dump(){ in Dump()
254 ByteString sRet( "MergeDataFile\n" ); in Dump()
268 void MergeDataFile::WriteError( const ByteString &rLine ) in WriteError()
280 std::vector<ByteString> MergeDataFile::GetLanguages(){ in GetLanguages()
281 return std::vector<ByteString>(aLanguageSet.begin(),aLanguageSet.end()); in GetLanguages()
286 ByteString sOldG = pResData->sGId; in GetMergeData()
287 ByteString sOldL = pResData->sId; in GetMergeData()
288 ByteString sGID = pResData->sGId; in GetMergeData()
289 ByteString sLID; in GetMergeData()
297ByteString sKey = CreateKey( pResData->sResTyp , pResData->sGId , pResData->sId , pResData->sFilen… in GetMergeData()
330 const ByteString &rTYP, const ByteString &rGID, in InsertEntry()
331 const ByteString &rLID, const ByteString &rPFO, in InsertEntry()
332 const ByteString &nLANG, const ByteString &rTEXT, in InsertEntry()
333 const ByteString &rQHTEXT, const ByteString &rTITLE , in InsertEntry()
334 const ByteString &rInFilename , bool bCaseSensitive in InsertEntry()
340 ByteString sKey = CreateKey( rTYP , rGID , rLID , rInFilename , bCaseSensitive ); in InsertEntry()
368 ByteString MergeDataFile::CreateKey( const ByteString& rTYP , const ByteString& rGID , const ByteSt… in CreateKey()