HomeSort by relevance Sort by last modified time
    Searched refs:Node (Results 26 - 50 of 2295) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/dom/
TreeWalker.idl 27 readonly attribute Node root;
31 attribute Node currentNode
34 [CallWith=ScriptState] Node parentNode();
35 [CallWith=ScriptState] Node firstChild();
36 [CallWith=ScriptState] Node lastChild();
37 [CallWith=ScriptState] Node previousSibling();
38 [CallWith=ScriptState] Node nextSibling();
39 [CallWith=ScriptState] Node previousNode();
40 [CallWith=ScriptState] Node nextNode();
NodeFilterCondition.cpp 32 short NodeFilterCondition::acceptNode(ScriptState*, Node*) const
Traversal.h 33 class Node;
38 Node* root() const { return m_root.get(); }
44 Traversal(PassRefPtr<Node>, unsigned whatToShow, PassRefPtr<NodeFilter>, bool expandEntityReferences);
45 short acceptNode(ScriptState*, Node*) const;
48 RefPtr<Node> m_root;
  /external/webkit/Source/WebCore/html/
HTMLAllCollection.h 35 static PassRefPtr<HTMLAllCollection> create(PassRefPtr<Node>);
39 HTMLAllCollection(PassRefPtr<Node>);
HTMLDetailsElement.h 31 Node* mainSummary() const { return m_mainSummary; }
43 virtual void childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta);
48 bool childShouldCreateRenderer(Node*) const;
50 Node* findSummaryFor(ContainerNode*);
51 Node* findMainSummary();
56 Node* m_mainSummary;
  /external/webkit/Source/WebCore/page/
HaltablePlugin.h 31 class Node;
39 virtual Node* node() const = 0;
  /external/clang/lib/AST/
StmtPrinter.cpp 91 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
94 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
97 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
101 void Visit##CLASS(CLASS *Node);
112 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) {
114 for (CompoundStmt::body_iterator I = Node->body_begin(), E = Node->body_end();
134 void StmtPrinter::VisitNullStmt(NullStmt *Node) {
138 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) {
140 PrintRawDeclStmt(Node);
    [all...]
StmtDumper.cpp 96 void DumpDeclRef(Decl *node);
97 void DumpStmt(const Stmt *Node) {
99 OS << "(" << Node->getStmtClassName()
100 << " " << (void*)Node;
101 DumpSourceRange(Node);
118 void DumpExpr(const Expr *Node) {
119 DumpStmt(Node);
121 DumpType(Node->getType());
122 DumpValueKind(Node->getValueKind());
123 DumpObjectKind(Node->getObjectKind())
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
PCommand.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PCommand extends Node
PExpression.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PExpression extends Node
PPosition.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PPosition extends Node
PVariable.java 3 package com.google.clearsilver.jsilver.syntax.node;
5 public abstract class PVariable extends Node
  /external/skia/include/utils/
SkParsePaint.h 31 void SkPaint_Inflate(SkPaint*, const SkDOM&, const SkDOM::Node*);
  /external/webkit/Source/WebCore/editing/
RemoveNodeCommand.h 35 static PassRefPtr<RemoveNodeCommand> create(PassRefPtr<Node> node)
37 return adoptRef(new RemoveNodeCommand(node));
41 RemoveNodeCommand(PassRefPtr<Node>);
46 RefPtr<Node> m_node;
48 RefPtr<Node> m_refChild;
ReplaceSelectionCommand.h 62 void insertNodeAfterAndUpdateNodesInserted(PassRefPtr<Node> insertChild, Node* refChild);
63 void insertNodeAtAndUpdateNodesInserted(PassRefPtr<Node>, const Position&);
64 void insertNodeBeforeAndUpdateNodesInserted(PassRefPtr<Node> insertChild, Node* refChild);
65 Node* insertAsListItems(PassRefPtr<Node>, Node* insertionNode, const Position&);
67 void updateNodesInserted(Node*);
68 bool shouldRemoveEndBR(Node*, const VisiblePosition&)
    [all...]
htmlediting.h 42 class Node;
52 // Node
55 // Functions returning Node
57 Node* highestAncestor(Node*);
58 Node* highestEditableRoot(const Position&);
59 Node* highestEnclosingNodeOfType(const Position&, bool (*nodeIsOfType)(const Node*), EditingBoundaryCrossingRule = CannotCrossEditingBoundary);
60 Node* lowestEditableAncestor(Node*);
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
NodeList.java 29 * @return The node at the <code>index</code>th position in the
33 public Node item(int index);
36 * The number of nodes in the list. The range of valid child node indices
Node.java 16 * The <code>Node</code> interface is the primary datatype for the entire
17 * Document Object Model. It represents a single node in the document tree.
18 * While all objects implementing the <code>Node</code> interface expose
20 * <code>Node</code> interface may have children. For example,
24 * <code>attributes</code> are included as a mechanism to get at node
34 * node type as follows:
130 * of the text node</td>
136 public interface Node {
139 * The node is an <code>Element</code>.
143 * The node is an <code>Attr</code>
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/traversal/
NodeIterator.java 16 import org.w3c.dom.Node;
21 * governed by a particular <code>Node</code>, the results of a query, or
35 * The root node of the <code>NodeIterator</code>, as specified when it
38 public Node getRoot();
41 * This attribute determines which node types are presented via the
65 * expanded and does not expose the entity reference node itself, use
66 * the <code>whatToShow</code> flags to hide the entity reference node
70 * <code>whatToShow</code> flags to show the entity reference node and
76 * Returns the next node in the set and advances the position of the
79 * <code>nextNode()</code> returns the first node in the set
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
UserDataNotification.java 14 import org.w3c.dom.Node;
25 private final Node src;
26 private final Node dst;
35 Node src,
36 Node dst) {
76 public final Node getSrc() {
85 public final Node getDst() {
  /external/webkit/Source/WebKit/chromium/src/
DOMUtilitiesPrivate.h 40 class Node;
47 // If node is an HTML node with a tag name of name it is casted and returned.
48 // If node is not an HTML node or the tag name is not name, 0 is returned.
49 WebCore::HTMLInputElement* toHTMLInputElement(WebCore::Node*);
50 WebCore::HTMLLinkElement* toHTMLLinkElement(WebCore::Node*);
51 WebCore::HTMLMetaElement* toHTMLMetaElement(WebCore::Node*);
52 WebCore::HTMLOptionElement* toHTMLOptionElement(WebCore::Node*);
  /packages/apps/Mms/src/com/android/mms/dom/
NamedNodeMapImpl.java 24 import org.w3c.dom.Node;
28 private Vector<Node> mNodes = new Vector<Node>();
34 public Node getNamedItem(String name) {
35 Node node = null; local
38 node = mNodes.elementAt(i);
42 return node;
45 public Node getNamedItemNS(String namespaceURI, String localName) {
50 public Node item(int index)
58 Node node = getNamedItem(name); local
    [all...]
  /external/valgrind/main/memcheck/tests/
leak-cases.c 46 } Node;
48 Node* mk(Node* next)
52 Node* x = malloc(2 * sizeof(Node));
58 Node* p1;
59 Node* p2;
60 Node* p3;
61 Node* p4;
62 Node* p5
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
MockNamedNodeMap.java 21 import org.w3c.dom.Node;
29 private final HashMap<String, HashMap<String, Node>> mNodeMap =
30 new HashMap<String, HashMap<String, Node>>();
33 private final ArrayList<Node> mNodeList = new ArrayList<Node>();
36 MockXmlNode node = new MockXmlNode(namespace, localName, value); local
43 HashMap<String, Node> map = mNodeMap.get(namespace);
45 map = new HashMap<String, Node>();
50 map.put(localName, node);
51 mNodeList.add(node);
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeOrdering.h 36 void add(const SDNode *Node, unsigned O) {
37 OrderMap[Node] = O;
39 void remove(const SDNode *Node) {
40 DenseMap<const SDNode*, unsigned>::iterator Itr = OrderMap.find(Node);
47 unsigned getOrder(const SDNode *Node) {
48 return OrderMap[Node];

Completed in 3210 milliseconds

12 3 4 5 6 7 8 91011>>