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

1234567891011>>

/external/v8/src/compiler/
H A Dnode-properties.h20 static inline Node* GetValueInput(Node* node, int index);
21 static inline Node* GetContextInput(Node* node);
22 static inline Node* GetFrameStateInput(Node* node);
23 static inline Node* GetEffectInput(Node* node, int index = 0);
24 static inline Node* GetControlInput(Node* nod
[all...]
H A Dgraph-unittest.h33 Node* Parameter(int32_t index);
34 Node* Float32Constant(volatile float value);
35 Node* Float64Constant(volatile double value);
36 Node* Int32Constant(int32_t value);
37 Node* Int64Constant(int64_t value);
38 Node* NumberConstant(volatile double value);
39 Node* HeapConstant(const Unique<HeapObject>& value);
40 Node* FalseConstant();
41 Node* TrueConstant();
43 Matcher<Node*> IsFalseConstan
[all...]
H A Draw-machine-assembler.h59 Node* UndefinedConstant() {
66 Node* PointerConstant(void* value) {
69 Node* IntPtrConstant(intptr_t value) {
74 Node* Int32Constant(int32_t value) {
77 Node* Int64Constant(int64_t value) {
80 Node* NumberConstant(double value) {
83 Node* Float64Constant(double value) {
86 Node* HeapConstant(Handle<Object> object) {
91 Node* Projection(int index, Node*
[all...]
H A Dchange-lowering.h26 virtual Reduction Reduce(Node* node) OVERRIDE;
29 Node* HeapNumberValueIndexConstant();
30 Node* SmiMaxValueConstant();
31 Node* SmiShiftBitsConstant();
33 Node* AllocateHeapNumberWithValue(Node* value, Node* control);
34 Node* ChangeSmiToInt32(Node* value);
35 Node* LoadHeapNumberValu
[all...]
H A Dgraph.h23 class Graph : public GenericGraph<Node> {
28 Node* NewNode(const Operator* op, int input_count, Node** inputs);
31 Node* NewNode(const Operator* op) {
32 return NewNode(op, 0, static_cast<Node**>(NULL));
34 Node* NewNode(const Operator* op, Node* n1) { return NewNode(op, 1, &n1); }
35 Node* NewNode(const Operator* op, Node* n1, Node* n
[all...]
H A Dgraph-builder.h19 class Node;
27 Node* NewNode(const Operator* op) {
28 return MakeNode(op, 0, static_cast<Node**>(NULL));
31 Node* NewNode(const Operator* op, Node* n1) { return MakeNode(op, 1, &n1); }
33 Node* NewNode(const Operator* op, Node* n1, Node* n2) {
34 Node* buffer[] = {n1, n2};
38 Node* NewNod
[all...]
H A Dsimplified-lowering.h25 void DoLoadField(Node* node);
26 void DoStoreField(Node* node);
27 void DoLoadElement(Node* node);
28 void DoStoreElement(Node* node);
29 void DoStringAdd(Node* node);
30 void DoStringEqual(Node* node);
31 void DoStringLessThan(Node* node);
32 void DoStringLessThanOrEqual(Node* node);
37 Node* SmiTag(Node* nod
[all...]
H A Djs-graph.h37 Node* CEntryStubConstant();
38 Node* UndefinedConstant();
39 Node* TheHoleConstant();
40 Node* TrueConstant();
41 Node* FalseConstant();
42 Node* NullConstant();
43 Node* ZeroConstant();
44 Node* OneConstant();
45 Node* NaNConstant();
49 Node* HeapConstan
[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/skia/include/xml/
H A DSkDOM.h28 typedef SkDOMNode Node; typedef in class:SkDOM
33 const Node* build(const char doc[], size_t len);
34 const Node* copy(const SkDOM& dom, const Node* node);
36 const Node* getRootNode() const;
39 const Node* finishParsing();
45 Type getType(const Node*) const;
47 const char* getName(const Node*) const;
48 const Node* getFirstChild(const Node*, cons
[all...]
/external/v8/test/cctest/compiler/
H A Dsimplified-graph-builder.h35 void Return(Node* value);
40 Node* PointerConstant(void* value) {
45 Node* Int32Constant(int32_t value) {
48 Node* HeapConstant(Handle<Object> object) {
53 Node* BooleanNot(Node* a) { return NewNode(simplified()->BooleanNot(), a); }
55 Node* NumberEqual(Node* a, Node* b) {
58 Node* NumberLessTha
[all...]
/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/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*);
/external/llvm/lib/CodeGen/
H A DMachinePassRegistry.cpp36 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { argument
37 Node->setNext(List);
38 List = Node;
39 if (Listener) Listener->NotifyAdd(Node->getName(),
40 Node->getCtor(),
41 Node->getDescription());
47 void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) { argument
49 if (*I == Node) {
50 if (Listener) Listener->NotifyRemove(Node->getName());
/external/valgrind/memcheck/tests/
H A Dleak-cases.c46 } Node; typedef in typeref:struct:_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* p
[all...]
/external/clang/lib/AST/
H A DStmtPrinter.cpp94 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED {
97 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED {
100 void VisitCXXNamedCastExpr(CXXNamedCastExpr *Node);
104 void Visit##CLASS(CLASS *Node);
115 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { argument
117 for (auto *I : Node->body())
132 void StmtPrinter::VisitNullStmt(NullStmt *Node) { argument
136 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { argument
138 PrintRawDeclStmt(Node);
142 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { argument
148 VisitCaseStmt(CaseStmt *Node) argument
160 VisitDefaultStmt(DefaultStmt *Node) argument
165 VisitLabelStmt(LabelStmt *Node) argument
170 VisitAttributedStmt(AttributedStmt *Node) argument
218 VisitSwitchStmt(SwitchStmt *Node) argument
237 VisitWhileStmt(WhileStmt *Node) argument
247 VisitDoStmt(DoStmt *Node) argument
263 VisitForStmt(ForStmt *Node) argument
292 VisitObjCForCollectionStmt(ObjCForCollectionStmt *Node) argument
311 VisitCXXForRangeStmt(CXXForRangeStmt *Node) argument
324 VisitMSDependentExistsStmt(MSDependentExistsStmt *Node) argument
340 VisitGotoStmt(GotoStmt *Node) argument
345 VisitIndirectGotoStmt(IndirectGotoStmt *Node) argument
352 VisitContinueStmt(ContinueStmt *Node) argument
357 VisitBreakStmt(BreakStmt *Node) argument
363 VisitReturnStmt(ReturnStmt *Node) argument
374 VisitGCCAsmStmt(GCCAsmStmt *Node) argument
437 VisitMSAsmStmt(MSAsmStmt *Node) argument
447 VisitCapturedStmt(CapturedStmt *Node) argument
451 VisitObjCAtTryStmt(ObjCAtTryStmt *Node) argument
480 VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *Node) argument
483 VisitObjCAtCatchStmt(ObjCAtCatchStmt *Node) argument
487 VisitObjCAtThrowStmt(ObjCAtThrowStmt *Node) argument
496 VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *Node) argument
504 VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *Node) argument
510 PrintRawCXXCatchStmt(CXXCatchStmt *Node) argument
520 VisitCXXCatchStmt(CXXCatchStmt *Node) argument
526 VisitCXXTryStmt(CXXTryStmt *Node) argument
536 VisitSEHTryStmt(SEHTryStmt *Node) argument
550 PrintRawSEHFinallyStmt(SEHFinallyStmt *Node) argument
556 PrintRawSEHExceptHandler(SEHExceptStmt *Node) argument
564 VisitSEHExceptStmt(SEHExceptStmt *Node) argument
570 VisitSEHFinallyStmt(SEHFinallyStmt *Node) argument
576 VisitSEHLeaveStmt(SEHLeaveStmt *Node) argument
600 VisitOMPIfClause(OMPIfClause *Node) argument
606 VisitOMPFinalClause(OMPFinalClause *Node) argument
612 VisitOMPNumThreadsClause(OMPNumThreadsClause *Node) argument
618 VisitOMPSafelenClause(OMPSafelenClause *Node) argument
624 VisitOMPCollapseClause(OMPCollapseClause *Node) argument
630 VisitOMPDefaultClause(OMPDefaultClause *Node) argument
636 VisitOMPProcBindClause(OMPProcBindClause *Node) argument
642 VisitOMPScheduleClause(OMPScheduleClause *Node) argument
685 VisitOMPClauseList(T *Node, char StartSym) argument
700 VisitOMPPrivateClause(OMPPrivateClause *Node) argument
708 VisitOMPFirstprivateClause(OMPFirstprivateClause *Node) argument
716 VisitOMPLastprivateClause(OMPLastprivateClause *Node) argument
724 VisitOMPSharedClause(OMPSharedClause *Node) argument
732 VisitOMPReductionClause(OMPReductionClause *Node) argument
754 VisitOMPLinearClause(OMPLinearClause *Node) argument
766 VisitOMPAlignedClause(OMPAlignedClause *Node) argument
778 VisitOMPCopyinClause(OMPCopyinClause *Node) argument
786 VisitOMPCopyprivateClause(OMPCopyprivateClause *Node) argument
794 VisitOMPFlushClause(OMPFlushClause *Node) argument
824 VisitOMPParallelDirective(OMPParallelDirective *Node) argument
829 VisitOMPSimdDirective(OMPSimdDirective *Node) argument
834 VisitOMPForDirective(OMPForDirective *Node) argument
839 VisitOMPForSimdDirective(OMPForSimdDirective *Node) argument
844 VisitOMPSectionsDirective(OMPSectionsDirective *Node) argument
849 VisitOMPSectionDirective(OMPSectionDirective *Node) argument
854 VisitOMPSingleDirective(OMPSingleDirective *Node) argument
859 VisitOMPMasterDirective(OMPMasterDirective *Node) argument
864 VisitOMPCriticalDirective(OMPCriticalDirective *Node) argument
874 VisitOMPParallelForDirective(OMPParallelForDirective *Node) argument
879 VisitOMPParallelForSimdDirective( OMPParallelForSimdDirective *Node) argument
885 VisitOMPParallelSectionsDirective( OMPParallelSectionsDirective *Node) argument
891 VisitOMPTaskDirective(OMPTaskDirective *Node) argument
896 VisitOMPTaskyieldDirective(OMPTaskyieldDirective *Node) argument
901 VisitOMPBarrierDirective(OMPBarrierDirective *Node) argument
906 VisitOMPTaskwaitDirective(OMPTaskwaitDirective *Node) argument
911 VisitOMPFlushDirective(OMPFlushDirective *Node) argument
916 VisitOMPOrderedDirective(OMPOrderedDirective *Node) argument
921 VisitOMPAtomicDirective(OMPAtomicDirective *Node) argument
926 VisitOMPTargetDirective(OMPTargetDirective *Node) argument
931 VisitOMPTeamsDirective(OMPTeamsDirective *Node) argument
940 VisitDeclRefExpr(DeclRefExpr *Node) argument
951 VisitDependentScopeDeclRefExpr( DependentScopeDeclRefExpr *Node) argument
963 VisitUnresolvedLookupExpr(UnresolvedLookupExpr *Node) argument
974 VisitObjCIvarRefExpr(ObjCIvarRefExpr *Node) argument
982 VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *Node) argument
998 VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *Node) argument
1006 VisitPredefinedExpr(PredefinedExpr *Node) argument
1010 VisitCharacterLiteral(CharacterLiteral *Node) argument
1065 VisitIntegerLiteral(IntegerLiteral *Node) argument
1088 PrintFloatingLiteral(raw_ostream &OS, FloatingLiteral *Node, bool PrintSuffix) argument
1109 VisitFloatingLiteral(FloatingLiteral *Node) argument
1113 VisitImaginaryLiteral(ImaginaryLiteral *Node) argument
1121 VisitParenExpr(ParenExpr *Node) argument
1126 VisitUnaryOperator(UnaryOperator *Node) argument
1152 VisitOffsetOfExpr(OffsetOfExpr *Node) argument
1186 VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *Node) argument
1213 VisitGenericSelectionExpr(GenericSelectionExpr *Node) argument
1229 VisitArraySubscriptExpr(ArraySubscriptExpr *Node) argument
1254 VisitMemberExpr(MemberExpr *Node) argument
1278 VisitObjCIsaExpr(ObjCIsaExpr *Node) argument
1283 VisitExtVectorElementExpr(ExtVectorElementExpr *Node) argument
1288 VisitCStyleCastExpr(CStyleCastExpr *Node) argument
1294 VisitCompoundLiteralExpr(CompoundLiteralExpr *Node) argument
1300 VisitImplicitCastExpr(ImplicitCastExpr *Node) argument
1304 VisitBinaryOperator(BinaryOperator *Node) argument
1309 VisitCompoundAssignOperator(CompoundAssignOperator *Node) argument
1314 VisitConditionalOperator(ConditionalOperator *Node) argument
1325 VisitBinaryConditionalOperator(BinaryConditionalOperator *Node) argument
1330 VisitAddrLabelExpr(AddrLabelExpr *Node) argument
1340 VisitChooseExpr(ChooseExpr *Node) argument
1354 VisitShuffleVectorExpr(ShuffleVectorExpr *Node) argument
1363 VisitConvertVectorExpr(ConvertVectorExpr *Node) argument
1371 VisitInitListExpr(InitListExpr* Node) argument
1388 VisitParenListExpr(ParenListExpr* Node) argument
1397 VisitDesignatedInitExpr(DesignatedInitExpr *Node) argument
1425 VisitImplicitValueInitExpr(ImplicitValueInitExpr *Node) argument
1441 VisitVAArgExpr(VAArgExpr *Node) argument
1449 VisitPseudoObjectExpr(PseudoObjectExpr *Node) argument
1453 VisitAtomicExpr(AtomicExpr *Node) argument
1494 VisitCXXOperatorCallExpr(CXXOperatorCallExpr *Node) argument
1540 VisitCXXMemberCallExpr(CXXMemberCallExpr *Node) argument
1550 VisitCUDAKernelCallExpr(CUDAKernelCallExpr *Node) argument
1559 VisitCXXNamedCastExpr(CXXNamedCastExpr *Node) argument
1567 VisitCXXStaticCastExpr(CXXStaticCastExpr *Node) argument
1571 VisitCXXDynamicCastExpr(CXXDynamicCastExpr *Node) argument
1575 VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *Node) argument
1579 VisitCXXConstCastExpr(CXXConstCastExpr *Node) argument
1583 VisitCXXTypeidExpr(CXXTypeidExpr *Node) argument
1593 VisitCXXUuidofExpr(CXXUuidofExpr *Node) argument
1603 VisitMSPropertyRefExpr(MSPropertyRefExpr *Node) argument
1615 VisitUserDefinedLiteral(UserDefinedLiteral *Node) argument
1661 VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *Node) argument
1665 VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *Node) argument
1669 VisitCXXThisExpr(CXXThisExpr *Node) argument
1673 VisitCXXThrowExpr(CXXThrowExpr *Node) argument
1682 VisitCXXDefaultArgExpr(CXXDefaultArgExpr *Node) argument
1686 VisitCXXDefaultInitExpr(CXXDefaultInitExpr *Node) argument
1690 VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *Node) argument
1701 VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *Node) argument
1705 VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *Node) argument
1730 VisitLambdaExpr(LambdaExpr *Node) argument
1820 VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *Node) argument
1920 VisitCXXUnresolvedConstructExpr( CXXUnresolvedConstructExpr *Node) argument
1934 VisitCXXDependentScopeMemberExpr( CXXDependentScopeMemberExpr *Node) argument
1950 VisitUnresolvedMemberExpr(UnresolvedMemberExpr *Node) argument
2031 VisitSubstNonTypeTemplateParmPackExpr( SubstNonTypeTemplateParmPackExpr *Node) argument
2036 VisitSubstNonTypeTemplateParmExpr( SubstNonTypeTemplateParmExpr *Node) argument
2045 VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *Node) argument
2065 VisitObjCStringLiteral(ObjCStringLiteral *Node) argument
2105 VisitObjCEncodeExpr(ObjCEncodeExpr *Node) argument
2111 VisitObjCSelectorExpr(ObjCSelectorExpr *Node) argument
2117 VisitObjCProtocolExpr(ObjCProtocolExpr *Node) argument
2159 VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *Node) argument
2176 VisitBlockExpr(BlockExpr *Node) argument
2203 VisitOpaqueValueExpr(OpaqueValueExpr *Node) argument
2207 VisitTypoExpr(TypoExpr *Node) argument
2212 VisitAsTypeExpr(AsTypeExpr *Node) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeListBase.java22 import org.w3c.dom.Node;
70 public Node item(int index) {

Completed in 467 milliseconds

1234567891011>>