Searched refs:mTrie (Results 1 – 1 of 1) sorted by relevance
70 private char[] mTrie; field in AutoText133 int here = mTrie[TRIE_ROOT]; in lookup()138 for (; here != TRIE_NULL; here = mTrie[here + TRIE_NEXT]) { in lookup()139 if (c == mTrie[here + TRIE_C]) { in lookup()141 && (mTrie[here + TRIE_OFF] != TRIE_NULL)) { in lookup()142 int off = mTrie[here + TRIE_OFF]; in lookup()148 here = mTrie[here + TRIE_CHILD]; in lookup()165 mTrie = new char[DEFAULT]; in init()166 mTrie[TRIE_ROOT] = TRIE_NULL; in init()222 for (; mTrie[herep] != TRIE_NULL; in add()[all …]