Home
last modified time | relevance | path

Searched refs:Node (Results 1 – 20 of 20) sorted by relevance

/packages/apps/Mms/src/com/android/mms/dom/
DNodeImpl.java26 import org.w3c.dom.Node;
35 public abstract class NodeImpl implements Node, EventTarget {
36 private Node mParentNode;
37 private final Vector<Node> mChildNodes = new Vector<Node>();
53 public Node appendChild(Node newChild) throws DOMException { in appendChild()
60 public Node cloneNode(boolean deep) { in cloneNode()
74 public Node getFirstChild() { in getFirstChild()
75 Node firstChild = null; in getFirstChild()
85 public Node getLastChild() { in getLastChild()
86 Node lastChild = null; in getLastChild()
[all …]
DNamedNodeMapImpl.java24 import org.w3c.dom.Node;
28 private Vector<Node> mNodes = new Vector<Node>();
34 public Node getNamedItem(String name) { in getNamedItem()
35 Node node = null; in getNamedItem()
45 public Node getNamedItemNS(String namespaceURI, String localName) { in getNamedItemNS()
50 public Node item(int index) { in item()
57 public Node removeNamedItem(String name) throws DOMException { in removeNamedItem()
58 Node node = getNamedItem(name); in removeNamedItem()
67 public Node removeNamedItemNS(String namespaceURI, String localName) in removeNamedItemNS()
73 public Node setNamedItem(Node arg) throws DOMException { in setNamedItem()
[all …]
DNodeListImpl.java22 import org.w3c.dom.Node;
26 private ArrayList<Node> mSearchNodes;
27 private ArrayList<Node> mStaticNodes;
28 private Node mRootNode;
45 public NodeListImpl(Node rootNode, String tagName, boolean deepSearch) { in NodeListImpl()
55 public NodeListImpl(ArrayList<Node> nodes) { in NodeListImpl()
72 public Node item(int index) { in item()
73 Node node = null; in item()
101 private void fillList(Node node) { in fillList()
105 mSearchNodes = new ArrayList<Node>(); in fillList()
DAttrImpl.java23 import org.w3c.dom.Node;
77 return Node.ATTRIBUTE_NODE; in getNodeType()
81 public Node getParentNode() { in getParentNode()
86 public Node getPreviousSibling() { in getPreviousSibling()
91 public Node getNextSibling() { in getNextSibling()
DDocumentImpl.java30 import org.w3c.dom.Node;
125 public Node importNode(Node importedNode, boolean deep) throws DOMException { in importNode()
136 return Node.DOCUMENT_NODE; in getNodeType()
/packages/apps/IM/src/com/android/im/app/
DIntTrie.java21 private Node mHead;
23 class Node { class in IntTrie
24 private Node mFirstChild;
25 private Node mNextSibling;
31 Node n = this; in add()
41 private Node getOrCreateNode(char key) { in getOrCreateNode()
42 for (Node n = mFirstChild; n != null; n = n.mNextSibling) { in getOrCreateNode()
48 Node n = new Node(); in getOrCreateNode()
57 Node getNode(char key) { in getNode()
58 for (Node n = mFirstChild; n != null; n = n.mNextSibling) { in getNode()
[all …]
DMarkup.java60 IntTrie.Node n = mSmileys.getNode(text.charAt(index++)); in applyEmoticons()
/packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
DJJTAddressListParserState.java38 Node rootNode() { in rootNode()
39 return (Node)nodes.elementAt(0); in rootNode()
43 void pushNode(Node n) { in pushNode()
50 Node popNode() { in popNode()
54 return (Node)nodes.pop(); in popNode()
58 Node peekNode() { in peekNode()
59 return (Node)nodes.peek(); in peekNode()
69 void clearNodeScope(Node n) { in clearNodeScope()
77 void openNodeScope(Node n) { in openNodeScope()
88 void closeNodeScope(Node n, int num) { in closeNodeScope()
[all …]
DSimpleNode.java5 …ic class SimpleNode extends org.apache.james.mime4j.field.address.parser.BaseNode implements Node {
6 protected Node parent;
7 protected Node[] children;
26 public void jjtSetParent(Node n) { parent = n; } in jjtSetParent()
27 public Node jjtGetParent() { return parent; } in jjtGetParent()
29 public void jjtAddChild(Node n, int i) { in jjtAddChild()
31 children = new Node[i + 1]; in jjtAddChild()
33 Node c[] = new Node[i + 1]; in jjtAddChild()
40 public Node jjtGetChild(int i) { in jjtGetChild()
DNode.java9 public interface Node { interface
21 public void jjtSetParent(Node n); in jjtSetParent()
22 public Node jjtGetParent(); in jjtGetParent()
26 public void jjtAddChild(Node n, int i); in jjtAddChild()
30 public Node jjtGetChild(int i); in jjtGetChild()
DBaseNode.java22 import org.apache.james.mime4j.field.address.parser.Node;
25 public abstract class BaseNode implements Node {
DAddressListParser.jj85 void jjtreeOpenNodeScope(Node n) {
89 void jjtreeCloseNodeScope(Node n) {
DAddressListParser.java47 void jjtreeOpenNodeScope(Node n) { in jjtreeOpenNodeScope()
51 void jjtreeCloseNodeScope(Node n) { in jjtreeCloseNodeScope()
/packages/apps/Mms/src/com/android/mms/dom/smil/
DSmilDocumentImpl.java22 import org.w3c.dom.Node;
183 Node rootElement = getFirstChild(); in getDocumentElement()
198 Node rootElement = getDocumentElement(); in getHead()
199 Node headElement = rootElement.getFirstChild(); in getHead()
210 Node rootElement = getDocumentElement(); in getBody()
211 Node headElement = getHead(); in getBody()
212 Node bodyElement = headElement.getNextSibling(); in getBody()
263 Node headElement = getHead(); in getLayout()
264 Node layoutElement = null; in getLayout()
DElementSequentialTimeContainerImpl.java22 import org.w3c.dom.Node;
47 ArrayList<Node> nodes = new ArrayList<Node>(); in getActiveChildrenAt()
DElementParallelTimeContainerImpl.java23 import org.w3c.dom.Node;
115 ArrayList<Node> activeChildren = new ArrayList<Node>(); in getActiveChildrenAt()
150 activeChildren.add((Node) child); in getActiveChildrenAt()
/packages/inputmethods/LatinIME/src/com/android/inputmethod/latin/
DExpandableDictionary.java34 static class Node { class in ExpandableDictionary
42 Node[] data;
47 data = new Node[INCREMENT]; in NodeArray()
50 void add(Node n) { in add()
52 Node[] tempData = new Node[length + INCREMENT]; in add()
91 Node childNode = null; in addWordRec()
101 childNode = new Node(); in addWordRec()
154 final Node node = children.data[j]; in getWordFrequencyRec()
207 final Node node = roots.data[i]; in getWordsRec()
/packages/apps/Mms/src/org/w3c/dom/events/
DMutationEvent.java26 import org.w3c.dom.Node;
63 public Node getRelatedNode(); in getRelatedNode()
115 Node relatedNodeArg, in initMutationEvent()
/packages/apps/Email/src/org/apache/james/mime4j/field/address/
DBuilder.java38 import org.apache.james.mime4j.field.address.parser.Node;
70 Node n = it.nextNode(); in buildAddress()
79 Node n2 = it.nextNode(); in buildAddress()
102 Node n = it.nextNode(); in buildGroupBody()
113 Node n = it.nextNode(); in buildMailbox()
130 Node n = it.nextNode(); in buildNameAddr()
152 Node n = it.nextNode(); in buildAngleAddr()
172 Node n = it.nextNode(); in buildRoute()
239 public Node nextNode() { in nextNode()
/packages/apps/Mms/src/com/android/mms/dom/smil/parser/
DSmilContentHandler.java27 import org.w3c.dom.Node;
37 private Node mCurrentNode;