Searched refs:Node (Results 1 - 25 of 1599) sorted by relevance

1234567891011>>

/external/webkit/Source/JavaScriptCore/API/tests/
H A DNode.h29 typedef struct __Node Node; typedef in typeref:struct:__Node
33 Node* node;
43 extern Node* Node_new(void);
44 extern void Node_ref(Node* node);
45 extern void Node_deref(Node* node);
46 extern void Node_appendChild(Node* node, Node* child);
47 extern void Node_removeChild(Node* node, Node* child);
48 extern void Node_replaceChild(Node* nod
[all...]
H A DNodeList.h29 #include "Node.h"
33 Node* parentNode;
36 extern NodeList* NodeList_new(Node* parentNode);
38 extern Node* NodeList_item(NodeList*, unsigned);
/external/webkit/Source/WebCore/dom/
H A DEntityReference.idl22 interface EntityReference : Node {
H A DNamedNodeMap.idl30 Node getNamedItem(in DOMString name);
32 Node setNamedItem(in Node node)
35 Node removeNamedItem(in DOMString name)
38 Node item(in unsigned long index);
45 [OldStyleObjC] Node getNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
50 Node setNamedItemNS(in Node node)
53 [OldStyleObjC] Node removeNamedItemNS(in [ConvertNullToNullString] DOMString namespaceURI,
H A DTreeWalker.idl27 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();
H A DTreeWalker.h39 static PassRefPtr<TreeWalker> create(PassRefPtr<Node> rootNode, unsigned whatToShow, PassRefPtr<NodeFilter> filter, bool expandEntityReferences)
44 Node* currentNode() const { return m_current.get(); }
45 void setCurrentNode(PassRefPtr<Node>, ExceptionCode&);
47 Node* parentNode(ScriptState*);
48 Node* firstChild(ScriptState*);
49 Node* lastChild(ScriptState*);
50 Node* previousSibling(ScriptState*);
51 Node* nextSibling(ScriptState*);
52 Node* previousNode(ScriptState*);
53 Node* nextNod
[all...]
/external/clang/test/CXX/expr/expr.post/expr.ref/
H A Dp3.cpp4 template<typename T> struct Node { struct
8 Node<T> n[1];
14 Node<int> n;
/external/v8/test/mjsunit/
H A Dthis-property-assignment.js31 function Node() { class
37 var n1 = new Node();
40 var n2 = new Node();
/external/v8/test/mjsunit/regress/
H A Dregress-99167.js30 eval("function Node() { this.a = 1; this.a = 3; }");
31 new Node;
33 for (var i = 0; i < 100000; ++i) new Node;
/external/webkit/Source/JavaScriptCore/wtf/
H A DSentinelLinkedList.h30 // Requires: Node is a concrete class with:
31 // Node(SentinelTag);
32 // void setPrev(Node*);
33 // Node* prev();
34 // void setNext(Node*);
35 // Node* next();
44 template <typename Node> class SentinelLinkedList {
46 typedef Node* iterator;
50 void push(Node*);
51 static void remove(Node*);
[all...]
H A DSinglyLinkedList.h31 template <typename Node> class SinglyLinkedList {
37 void push(Node*);
38 Node* pop();
41 Node* m_head;
44 template <typename Node> inline SinglyLinkedList<Node>::SinglyLinkedList()
49 template <typename Node> inline bool SinglyLinkedList<Node>::isEmpty()
54 template <typename Node> inline void SinglyLinkedList<Node>
[all...]
H A DDoublyLinkedList.h31 template <typename Node> class DoublyLinkedList {
37 Node* head();
39 void append(Node*);
40 void remove(Node*);
43 Node* m_head;
44 Node* m_tail;
47 template <typename Node> inline DoublyLinkedList<Node>::DoublyLinkedList()
53 template <typename Node> inline bool DoublyLinkedList<Node>
[all...]
/external/webkit/Source/WebCore/xml/
H A DXPathUtil.cpp37 bool isRootDomNode(Node* node)
42 String stringValue(Node* node)
45 case Node::ATTRIBUTE_NODE:
46 case Node::PROCESSING_INSTRUCTION_NODE:
47 case Node::COMMENT_NODE:
48 case Node::TEXT_NODE:
49 case Node::CDATA_SECTION_NODE:
50 case Node::XPATH_NAMESPACE_NODE:
53 if (isRootDomNode(node) || node->nodeType() == Node::ELEMENT_NODE) {
57 for (Node*
[all...]
/external/skia/include/xml/
H A DSkDOM.h25 typedef SkDOMNode Node; typedef in class:SkDOM
30 const Node* build(const char doc[], size_t len);
31 const Node* copy(const SkDOM& dom, const Node* node);
33 const Node* getRootNode() const;
39 Type getType(const Node*) const;
41 const char* getName(const Node*) const;
42 const Node* getFirstChild(const Node*, const char elem[] = NULL) const;
43 const Node* getNextSiblin
[all...]
/external/skia/legacy/include/xml/
H A DSkDOM.h25 typedef SkDOMNode Node; typedef in class:SkDOM
30 const Node* build(const char doc[], size_t len);
31 const Node* copy(const SkDOM& dom, const Node* node);
33 const Node* getRootNode() const;
39 Type getType(const Node*) const;
41 const char* getName(const Node*) const;
42 const Node* getFirstChild(const Node*, const char elem[] = NULL) const;
43 const Node* getNextSiblin
[all...]
/external/webkit/Source/WebCore/editing/
H A DInsertNodeBeforeCommand.h35 static PassRefPtr<InsertNodeBeforeCommand> create(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore)
41 InsertNodeBeforeCommand(PassRefPtr<Node> childToInsert, PassRefPtr<Node> childToInsertBefore);
46 RefPtr<Node> m_insertChild;
47 RefPtr<Node> m_refChild;
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DNodeConsumer.java23 import org.w3c.dom.Node;
39 public void setOriginatingNode(Node n);
/external/webkit/Source/WebCore/inspector/
H A DDOMNodeHighlighter.h35 class Node;
39 void DrawNodeHighlight(GraphicsContext&, Node*);
/external/clang/lib/AST/
H A DStmtPrinter.cpp93 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
96 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
99 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
103 void Visit##CLASS(CLASS *Node);
114 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { argument
116 for (CompoundStmt::body_iterator I = Node->body_begin(), E = Node->body_end();
136 void StmtPrinter::VisitNullStmt(NullStmt *Node) { argument
140 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { argument
142 PrintRawDeclStmt(Node);
146 VisitCompoundStmt(CompoundStmt *Node) argument
152 VisitCaseStmt(CaseStmt *Node) argument
164 VisitDefaultStmt(DefaultStmt *Node) argument
169 VisitLabelStmt(LabelStmt *Node) argument
174 VisitAttributedStmt(AttributedStmt *Node) argument
231 VisitSwitchStmt(SwitchStmt *Node) argument
250 VisitWhileStmt(WhileStmt *Node) argument
260 VisitDoStmt(DoStmt *Node) argument
276 VisitForStmt(ForStmt *Node) argument
305 VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) argument
324 VisitCXXForRangeStmt(CXXForRangeStmt *Node) argument
336 VisitMSDependentExistsStmt(MSDependentExistsStmt *Node) argument
352 VisitGotoStmt(GotoStmt *Node) argument
356 VisitIndirectGotoStmt(IndirectGotoStmt *Node) argument
362 VisitContinueStmt(ContinueStmt *Node) argument
366 VisitBreakStmt(BreakStmt *Node) argument
371 VisitReturnStmt(ReturnStmt *Node) argument
381 VisitGCCAsmStmt(GCCAsmStmt *Node) argument
443 VisitMSAsmStmt(MSAsmStmt *Node) argument
453 VisitObjCAtTryStmt(ObjCAtTryStmt *Node) argument
482 VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) argument
485 VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) argument
489 VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) argument
498 VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) argument
506 VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *Node) argument
512 PrintRawCXXCatchStmt(CXXCatchStmt *Node) argument
522 VisitCXXCatchStmt(CXXCatchStmt *Node) argument
528 VisitCXXTryStmt(CXXTryStmt *Node) argument
538 VisitSEHTryStmt(SEHTryStmt *Node) argument
552 PrintRawSEHFinallyStmt(SEHFinallyStmt *Node) argument
558 PrintRawSEHExceptHandler(SEHExceptStmt *Node) argument
566 VisitSEHExceptStmt(SEHExceptStmt *Node) argument
572 VisitSEHFinallyStmt(SEHFinallyStmt *Node) argument
582 VisitDeclRefExpr(DeclRefExpr *Node) argument
593 VisitDependentScopeDeclRefExpr( DependentScopeDeclRefExpr *Node) argument
605 VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) argument
616 VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) argument
624 VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) argument
638 VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *Node) argument
646 VisitPredefinedExpr(PredefinedExpr *Node) argument
665 VisitCharacterLiteral(CharacterLiteral *Node) argument
720 VisitIntegerLiteral(IntegerLiteral *Node) argument
743 PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node, bool PrintSuffix) argument
764 VisitFloatingLiteral(FloatingLiteral *Node) argument
768 VisitImaginaryLiteral(ImaginaryLiteral *Node) argument
776 VisitParenExpr(ParenExpr *Node) argument
781 VisitUnaryOperator(UnaryOperator *Node) argument
807 VisitOffsetOfExpr(OffsetOfExpr *Node) argument
841 VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *Node) argument
868 VisitGenericSelectionExpr(GenericSelectionExpr *Node) argument
884 VisitArraySubscriptExpr(ArraySubscriptExpr *Node) argument
909 VisitMemberExpr(MemberExpr *Node) argument
933 VisitObjCIsaExpr(ObjCIsaExpr *Node) argument
938 VisitExtVectorElementExpr(ExtVectorElementExpr *Node) argument
943 VisitCStyleCastExpr(CStyleCastExpr *Node) argument
949 VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) argument
955 VisitImplicitCastExpr(ImplicitCastExpr *Node) argument
959 VisitBinaryOperator(BinaryOperator *Node) argument
964 VisitCompoundAssignOperator(CompoundAssignOperator *Node) argument
969 VisitConditionalOperator(ConditionalOperator *Node) argument
980 VisitBinaryConditionalOperator(BinaryConditionalOperator *Node) argument
985 VisitAddrLabelExpr(AddrLabelExpr *Node) argument
995 VisitChooseExpr(ChooseExpr *Node) argument
1009 VisitShuffleVectorExpr(ShuffleVectorExpr *Node) argument
1018 VisitInitListExpr(InitListExpr* Node) argument
1035 VisitParenListExpr(ParenListExpr* Node) argument
1044 VisitDesignatedInitExpr(DesignatedInitExpr *Node) argument
1070 VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) argument
1086 VisitVAArgExpr(VAArgExpr *Node) argument
1094 VisitPseudoObjectExpr(PseudoObjectExpr *Node) argument
1098 VisitAtomicExpr(AtomicExpr *Node) argument
1138 VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) argument
1184 VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) argument
1188 VisitCUDAKernelCallExpr(CUDAKernelCallExpr *Node) argument
1197 VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) argument
1205 VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) argument
1209 VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) argument
1213 VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) argument
1217 VisitCXXConstCastExpr(CXXConstCastExpr *Node) argument
1221 VisitCXXTypeidExpr(CXXTypeidExpr *Node) argument
1231 VisitCXXUuidofExpr(CXXUuidofExpr *Node) argument
1241 VisitUserDefinedLiteral(UserDefinedLiteral *Node) argument
1279 VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) argument
1283 VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) argument
1287 VisitCXXThisExpr(CXXThisExpr *Node) argument
1291 VisitCXXThrowExpr(CXXThrowExpr *Node) argument
1300 VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) argument
1304 VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) argument
1311 VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) argument
1315 VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) argument
1328 VisitLambdaExpr(LambdaExpr *Node) argument
1417 VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) argument
1513 VisitCXXUnresolvedConstructExpr( CXXUnresolvedConstructExpr *Node) argument
1527 VisitCXXDependentScopeMemberExpr( CXXDependentScopeMemberExpr *Node) argument
1543 VisitUnresolvedMemberExpr(UnresolvedMemberExpr *Node) argument
1693 VisitSubstNonTypeTemplateParmPackExpr( SubstNonTypeTemplateParmPackExpr *Node) argument
1698 VisitSubstNonTypeTemplateParmExpr( SubstNonTypeTemplateParmExpr *Node) argument
1707 VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *Node) argument
1713 VisitObjCStringLiteral(ObjCStringLiteral *Node) argument
1753 VisitObjCEncodeExpr(ObjCEncodeExpr *Node) argument
1759 VisitObjCSelectorExpr(ObjCSelectorExpr *Node) argument
1763 VisitObjCProtocolExpr(ObjCProtocolExpr *Node) argument
1805 VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Node) argument
1822 VisitBlockExpr(BlockExpr *Node) argument
1849 VisitOpaqueValueExpr(OpaqueValueExpr *Node) argument
1853 VisitAsTypeExpr(AsTypeExpr *Node) argument
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DGraph.java38 public static class Node { class in class:Graph
40 List<Node> edges; // points at which nodes?
42 public Node(Object payload) { this.payload = payload; } method in class:Graph.Node
44 public void addEdge(Node n) {
45 if ( edges==null ) edges = new ArrayList<Node>();
53 protected Map<Object,Node> nodes = new HashMap<Object,Node>();
57 Node a_node = getNode(a);
58 Node b_node = getNode(b);
62 protected Node getNod
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/app/state/
H A DRootNodeState.java36 import com.jme3.scene.Node;
40 private Node rootNode = new Node("Root Node");
42 public Node getRootNode(){
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DPCommand.java5 public abstract class PCommand extends Node
H A DPExpression.java5 public abstract class PExpression extends Node
H A DPPosition.java5 public abstract class PPosition extends Node
H A DPVariable.java5 public abstract class PVariable extends Node

Completed in 607 milliseconds

1234567891011>>