Home | History | Annotate | Download | only in serializer

Lines Matching refs:Trie

61     /** A digital search trie for fast, case insensitive lookup of ElemDesc objects. */
62 static final Trie m_elementFlags = new Trie();
67 static void initTagReference(Trie m_elementFlags) {
639 * A Trie that is just a copy of the "static" one.
641 * method Trie.get2(name)
643 private Trie m_htmlInfo = new Trie(m_elementFlags);
2031 static class Trie
2034 * A digital search trie for 7-bit ASCII text
2038 * One can get an object stored in a trie from its key,
2042 * the Trie is created, before any objects are put in it.
2063 * Construct the trie that has a case insensitive search.
2065 public Trie()
2072 * Construct the trie given the desired case sensitivity with the key.
2076 public Trie(boolean lowerCaseOnly)
2083 * Put an object into the trie for lookup.
2230 * The node representation for the trie.
2252 * Construct the trie from another Trie.
2253 * Both the existing Trie and this new one share the same table for
2257 * @param existingTrie the Trie that this one is a copy of.
2259 public Trie(Trie existingTrie)
2261 // copy some fields from the existing Trie into this one.
2315 * threads were to use this Trie they all would be