Lines Matching refs:pLine
60 const sal_Char* pLine; in createIndex() local
67 pLine = line.getStr(); in createIndex()
69 while( *pLine ) in createIndex()
71 if( ( *pLine >= 'A' && *pLine <= 'Z' ) in createIndex()
72 || ( *pLine >= 'a' && *pLine <= 'z' ) in createIndex()
73 || ( *pLine >= '0' && *pLine <= '9' ) ) in createIndex()
75 aResult += ::rtl::OString::valueOf( *pLine ); in createIndex()
80 aResult += ::rtl::OString::valueOf( (sal_Int32) *pLine, 16 ); in createIndex()
83 pLine++; in createIndex()
98 const sal_Char* pLine = line.getStr(); in getInfoFromInd() local
103 pLine += 2; in getInfoFromInd()
107 while( *pLine && !( pLine[0] == '_' && pLine[1] == '_' )) in getInfoFromInd()
108 if( *pLine != '_' ) in getInfoFromInd()
110 newItem += ::rtl::OUString::valueOf( (sal_Unicode) *pLine ); in getInfoFromInd()
111 pLine++; in getInfoFromInd()
118 if( !pLine[i] in getInfoFromInd()
119 || ( ( pLine[i] < '0' || pLine[i] > '9' ) in getInfoFromInd()
120 && ( pLine[i] < 'a' || pLine[i] > 'f' ) in getInfoFromInd()
121 && ( pLine[i] < 'A' || pLine[i] > 'F' ) ) ) in getInfoFromInd()
127 aNum += ::rtl::OUString::valueOf( (sal_Unicode) pLine[i] ); in getInfoFromInd()
131 pLine += 3; in getInfoFromInd()
135 } while( pLine[0] == '_' && pLine[1] == '_' ); in getInfoFromInd()
137 if( *pLine ) in getInfoFromInd()