Home | History | Annotate | Download | only in dicttrieperf

Lines Matching refs:lines

50                 // Skip comment lines (start with a character below 'A').
51 if(lines[i].name[0]>=0x41) {
54 int32_t len=lines[i].len;
56 while(len>0 && ((c=lines[i].name[len-1])==0xa || c==0xd)) {
59 lines[i].len=len;
70 const ULine *getCachedLines() const { return lines; }
72 int32_t numTextLines; // excluding comment lines
408 const ULine *lines=perf.getCachedLines();
411 // Skip comment lines (start with a character below 'A').
412 if(lines[i].name[0]<0x41) {
415 builder->add(UnicodeString(FALSE, lines[i].name, lines[i].len), 0, errorCode);
441 const ULine *lines=perf.getCachedLines();
444 // Skip comment lines (start with a character below 'A').
445 if(lines[i].name[0]<0x41) {
448 utext_openUChars(&text, lines[i].name, lines[i].len, pErrorCode);
450 ucharsTrieMatches(*trie, &text, lines[i].len,
452 if(count==0 || lengths[count-1]!=lines[i].len) {
465 const ULine *lines=perf.getCachedLines();
468 // Skip comment lines (which start with a character below 'A').
469 if(lines[i].name[0]<0x41) {
472 if(!USTRINGTRIE_HAS_VALUE(trie->reset().next(lines[i].name, lines[i].len))) {
511 const ULine *lines=perf.getCachedLines();
514 // Skip comment lines (start with a character below 'A').
515 if(lines[i].name[0]<0x41) {
518 if(!thaiWordToBytes(lines[i].name, lines[i].len, str.clear(), errorCode)) {
590 const ULine *lines=perf.getCachedLines();
593 // Skip comment lines (start with a character below 'A').
594 if(lines[i].name[0]<0x41) {
597 utext_openUChars(&text, lines[i].name, lines[i].len, pErrorCode);
599 bytesTrieMatches(*trie, &text, lines[i].len,
601 if(count==0 || lengths[count-1]!=lines[i].len) {
617 const ULine *lines=perf.getCachedLines();
620 const UChar *line=lines[i].name;
621 // Skip comment lines (start with a character below 'A').
626 int32_t lineLength=lines[i].len;