Home | History | Annotate | Download | only in common

Lines Matching refs:fChars

682     UnicodeString   fChars;
702 *((uint16_t *)(bytes+offset)) = (fChars.length() & kCountMask)
722 (fChars.length()*sizeof(CompactTrieHorizontalEntry));
727 int32_t count = fChars.length();
730 entry->ch = fChars[i];
743 fChars.append(ch);
762 return offsetof(CompactTrieVerticalNode,chars) + (fChars.length()*sizeof(uint16_t));
776 fChars.extract(0, fChars.length(), (UChar *)node->chars);
777 offset += sizeof(uint16_t)*fChars.length();
781 fChars.append(ch);
897 int32_t result = left->fChars.compare(right->fChars);