Home | History | Annotate | Download | only in intltest

Lines Matching defs:firstResult

827         UStringTrieResult firstResult=trie.first(c);
828 int32_t firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1;
830 if(firstResult!=trie.reset().next(c) ||
831 firstResult!=trie.current() ||
832 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) ||
841 firstResult=trie.firstForCodePoint(c);
842 firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1;
844 if(firstResult!=trie.reset().nextForCodePoint(c) ||
845 firstResult!=trie.current() ||
846 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) ||