Searched refs:Node (Results 1 - 25 of 1530) 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.cpp3 template<typename T> struct Node { struct
7 Node<T> n[1];
13 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/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.cpp90 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
93 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
96 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
100 void Visit##CLASS(CLASS *Node);
111 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { argument
113 for (CompoundStmt::body_iterator I = Node->body_begin(), E = Node->body_end();
133 void StmtPrinter::VisitNullStmt(NullStmt *Node) { argument
137 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { argument
139 PrintRawDeclStmt(Node);
143 VisitCompoundStmt(CompoundStmt *Node) argument
149 VisitCaseStmt(CaseStmt *Node) argument
161 VisitDefaultStmt(DefaultStmt *Node) argument
166 VisitLabelStmt(LabelStmt *Node) argument
171 VisitAttributedStmt(AttributedStmt *Node) argument
225 VisitSwitchStmt(SwitchStmt *Node) argument
241 VisitWhileStmt(WhileStmt *Node) argument
248 VisitDoStmt(DoStmt *Node) argument
264 VisitForStmt(ForStmt *Node) argument
293 VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) argument
312 VisitCXXForRangeStmt(CXXForRangeStmt *Node) argument
324 VisitMSDependentExistsStmt(MSDependentExistsStmt *Node) argument
340 VisitGotoStmt(GotoStmt *Node) argument
344 VisitIndirectGotoStmt(IndirectGotoStmt *Node) argument
350 VisitContinueStmt(ContinueStmt *Node) argument
354 VisitBreakStmt(BreakStmt *Node) argument
359 VisitReturnStmt(ReturnStmt *Node) argument
369 VisitGCCAsmStmt(GCCAsmStmt *Node) argument
431 VisitMSAsmStmt(MSAsmStmt *Node) argument
441 VisitObjCAtTryStmt(ObjCAtTryStmt *Node) argument
470 VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) argument
473 VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) argument
477 VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) argument
486 VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) argument
494 VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *Node) argument
500 PrintRawCXXCatchStmt(CXXCatchStmt *Node) argument
510 VisitCXXCatchStmt(CXXCatchStmt *Node) argument
516 VisitCXXTryStmt(CXXTryStmt *Node) argument
526 VisitSEHTryStmt(SEHTryStmt *Node) argument
540 PrintRawSEHFinallyStmt(SEHFinallyStmt *Node) argument
546 PrintRawSEHExceptHandler(SEHExceptStmt *Node) argument
554 VisitSEHExceptStmt(SEHExceptStmt *Node) argument
560 VisitSEHFinallyStmt(SEHFinallyStmt *Node) argument
570 VisitDeclRefExpr(DeclRefExpr *Node) argument
583 VisitDependentScopeDeclRefExpr( DependentScopeDeclRefExpr *Node) argument
597 VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) argument
610 VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) argument
618 VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) argument
632 VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *Node) argument
640 VisitPredefinedExpr(PredefinedExpr *Node) argument
659 VisitCharacterLiteral(CharacterLiteral *Node) argument
715 VisitIntegerLiteral(IntegerLiteral *Node) argument
737 VisitFloatingLiteral(FloatingLiteral *Node) argument
743 VisitImaginaryLiteral(ImaginaryLiteral *Node) argument
751 VisitParenExpr(ParenExpr *Node) argument
756 VisitUnaryOperator(UnaryOperator *Node) argument
782 VisitOffsetOfExpr(OffsetOfExpr *Node) argument
815 VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *Node) argument
840 VisitGenericSelectionExpr(GenericSelectionExpr *Node) argument
856 VisitArraySubscriptExpr(ArraySubscriptExpr *Node) argument
881 VisitMemberExpr(MemberExpr *Node) argument
899 VisitObjCIsaExpr(ObjCIsaExpr *Node) argument
904 VisitExtVectorElementExpr(ExtVectorElementExpr *Node) argument
909 VisitCStyleCastExpr(CStyleCastExpr *Node) argument
913 VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) argument
917 VisitImplicitCastExpr(ImplicitCastExpr *Node) argument
921 VisitBinaryOperator(BinaryOperator *Node) argument
926 VisitCompoundAssignOperator(CompoundAssignOperator *Node) argument
931 VisitConditionalOperator(ConditionalOperator *Node) argument
942 VisitBinaryConditionalOperator(BinaryConditionalOperator *Node) argument
947 VisitAddrLabelExpr(AddrLabelExpr *Node) argument
957 VisitChooseExpr(ChooseExpr *Node) argument
971 VisitShuffleVectorExpr(ShuffleVectorExpr *Node) argument
980 VisitInitListExpr(InitListExpr* Node) argument
997 VisitParenListExpr(ParenListExpr* Node) argument
1006 VisitDesignatedInitExpr(DesignatedInitExpr *Node) argument
1032 VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) argument
1044 VisitVAArgExpr(VAArgExpr *Node) argument
1052 VisitPseudoObjectExpr(PseudoObjectExpr *Node) argument
1056 VisitAtomicExpr(AtomicExpr *Node) argument
1096 VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) argument
1140 VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) argument
1144 VisitCUDAKernelCallExpr(CUDAKernelCallExpr *Node) argument
1153 VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) argument
1160 VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) argument
1164 VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) argument
1168 VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) argument
1172 VisitCXXConstCastExpr(CXXConstCastExpr *Node) argument
1176 VisitCXXTypeidExpr(CXXTypeidExpr *Node) argument
1186 VisitCXXUuidofExpr(CXXUuidofExpr *Node) argument
1196 VisitUserDefinedLiteral(UserDefinedLiteral *Node) argument
1229 VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) argument
1233 VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) argument
1237 VisitCXXThisExpr(CXXThisExpr *Node) argument
1241 VisitCXXThrowExpr(CXXThrowExpr *Node) argument
1250 VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) argument
1254 VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) argument
1261 VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) argument
1265 VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) argument
1278 VisitLambdaExpr(LambdaExpr *Node) argument
1370 VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) argument
1459 VisitCXXUnresolvedConstructExpr( CXXUnresolvedConstructExpr *Node) argument
1473 VisitCXXDependentScopeMemberExpr( CXXDependentScopeMemberExpr *Node) argument
1492 VisitUnresolvedMemberExpr(UnresolvedMemberExpr *Node) argument
1640 VisitSubstNonTypeTemplateParmPackExpr( SubstNonTypeTemplateParmPackExpr *Node) argument
1645 VisitSubstNonTypeTemplateParmExpr( SubstNonTypeTemplateParmExpr *Node) argument
1650 VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *Node) argument
1656 VisitObjCStringLiteral(ObjCStringLiteral *Node) argument
1696 VisitObjCEncodeExpr(ObjCEncodeExpr *Node) argument
1700 VisitObjCSelectorExpr(ObjCSelectorExpr *Node) argument
1704 VisitObjCProtocolExpr(ObjCProtocolExpr *Node) argument
1746 VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Node) argument
1762 VisitBlockExpr(BlockExpr *Node) argument
1790 VisitOpaqueValueExpr(OpaqueValueExpr *Node) argument
1794 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
/external/skia/include/utils/
H A DSkParsePaint.h24 void SkPaint_Inflate(SkPaint*, const SkDOM&, const SkDOM::Node*);

Completed in 496 milliseconds

1234567891011>>