Searched defs:Node (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
H A DNode.java1 /* Generated By:JJTree: Do not edit this line. Node.java */
9 public interface Node { interface
21 public void jjtSetParent(Node n);
22 public Node jjtGetParent();
26 public void jjtAddChild(Node n, int i);
30 public Node jjtGetChild(int i);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DPathMatcher.java26 private Node mRoot = new Node();
29 mRoot = new Node();
34 Node current = mRoot;
44 Node current = mRoot;
46 Node next = current.getChild(segments[i]);
72 private static class Node { class in class:PathMatcher
73 private HashMap<String, Node> mMap;
76 Node addChild(String segment) {
78 mMap = new HashMap<String, Node>();
[all...]
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
H A DFusionDictionary.java39 public static class Node { class in class:FusionDictionary
44 public Node() { method in class:FusionDictionary.Node
49 public Node(ArrayList<CharGroup> data) { method in class:FusionDictionary.Node
87 Node mChildren;
101 final ArrayList<WeightedString> bigrams, final int frequency, final Node children) {
110 mChildren = new Node();
135 public final Node mRoot;
139 mRoot = new Node();
142 public FusionDictionary(final Node root, final DictionaryOptions options) {
188 private void checkStack(Node nod
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java53 private static class Node { class in class:ExpandableDictionary
57 Node mParent;
63 Node[] mData;
68 mData = new Node[INCREMENT];
71 void add(Node n) {
73 Node[] tempData = new Node[mLength + INCREMENT];
84 public final Node mWord;
87 public NextWord(Node word, int frequency) {
161 final int frequency, Node parentNod
[all...]

Completed in 230 milliseconds