Home | History | Annotate | Download | only in dicttrieperf

Lines Matching refs:lines

54                 // Skip comment lines (start with a character below 'A').
55 if(lines[i].name[0]>=0x41) {
58 int32_t len=lines[i].len;
60 while(len>0 && ((c=lines[i].name[len-1])==0xa || c==0xd)) {
63 lines[i].len=len;
74 const ULine *getCachedLines() const { return lines; }
76 int32_t numTextLines; // excluding comment lines
412 const ULine *lines=perf.getCachedLines();
415 // Skip comment lines (start with a character below 'A').
416 if(lines[i].name[0]<0x41) {
419 builder->add(UnicodeString(FALSE, lines[i].name, lines[i].len), 0, errorCode);
445 const ULine *lines=perf.getCachedLines();
448 // Skip comment lines (start with a character below 'A').
449 if(lines[i].name[0]<0x41) {
452 utext_openUChars(&text, lines[i].name, lines[i].len, pErrorCode);
454 ucharsTrieMatches(*trie, &text, lines[i].len,
456 if(count==0 || lengths[count-1]!=lines[i].len) {
469 const ULine *lines=perf.getCachedLines();
472 // Skip comment lines (which start with a character below 'A').
473 if(lines[i].name[0]<0x41) {
476 if(!USTRINGTRIE_HAS_VALUE(trie->reset().next(lines[i].name, lines[i].len))) {
515 const ULine *lines=perf.getCachedLines();
518 // Skip comment lines (start with a character below 'A').
519 if(lines[i].name[0]<0x41) {
522 if(!thaiWordToBytes(lines[i].name, lines[i].len, str.clear(), errorCode)) {
594 const ULine *lines=perf.getCachedLines();
597 // Skip comment lines (start with a character below 'A').
598 if(lines[i].name[0]<0x41) {
601 utext_openUChars(&text, lines[i].name, lines[i].len, pErrorCode);
603 bytesTrieMatches(*trie, &text, lines[i].len,
605 if(count==0 || lengths[count-1]!=lines[i].len) {
621 const ULine *lines=perf.getCachedLines();
624 const UChar *line=lines[i].name;
625 // Skip comment lines (start with a character below 'A').
630 int32_t lineLength=lines[i].len;