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

/packages/apps/UnifiedEmail/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/apps/Gallery2/src/com/android/gallery3d/util/
H A DProfileData.java37 private static class Node { class in class:ProfileData
39 public Node parent;
41 public ArrayList<Node> children;
42 public Node(Node parent, int id) { method in class:ProfileData.Node
48 private Node mRoot;
55 mRoot = new Node(null, -1); // The id of the root node is unused.
60 mRoot = new Node(null, -1);
80 Node node = mRoot;
83 node.children = new ArrayList<Node>();
[all...]
/packages/apps/Gallery2/src/com/android/photos/data/
H A DSparseArrayBitmapPool.java33 private SparseArray<Node> mStore = new SparseArray<Node>();
36 private Pool<Node> mNodePool;
37 private Node mPoolNodesHead = null;
38 private Node mPoolNodesTail = null;
40 protected static class Node { class in class:SparseArrayBitmapPool
48 Node prevInBucket;
49 Node nextInBucket;
50 Node nextInPool;
51 Node prevInPoo
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DExpandableDictionary.java47 private static final class Node { class in class:ExpandableDictionary
51 Node mParent;
59 Node[] mData;
64 mData = new Node[INCREMENT];
67 void add(final Node n) {
69 Node[] tempData = new Node[mLength + INCREMENT];
80 public Node getWordNode();
87 public final Node mWord;
89 public NextStaticWord(Node wor
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/lib/html/parser/
H A DHtmlDocument.java40 /** List of Node objects */
41 private final List<Node> nodes;
47 public HtmlDocument(List<Node> nodes) {
52 public List<Node> getNodes() {
59 for (Node n : nodes) {
68 for (Node n : nodes) {
81 for (Node n : nodes) {
96 * Creates start Tag Node.
104 * Creates start Tag Node.
115 * Creates self-terminating Tag Node
229 public static abstract class Node { class in class:HtmlDocument
[all...]
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
H A DHtmlDocument.java41 /** List of Node objects */
42 private final List<Node> nodes;
48 public HtmlDocument(List<Node> nodes) {
53 public List<Node> getNodes() {
60 for (Node n : nodes) {
69 for (Node n : nodes) {
82 for (Node n : nodes) {
97 * Creates start Tag Node.
105 * Creates start Tag Node.
116 * Creates self-terminating Tag Node
230 public static abstract class Node { class in class:HtmlDocument
[all...]

Completed in 487 milliseconds