Home
last modified time | relevance | path

Searched defs:Node (Results 1 – 25 of 355) sorted by relevance

12345678910>>...15

/external/webkit/Source/JavaScriptCore/dfg/
DDFGNode.h172 struct Node { struct
186Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex ch… argument
199Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm1, OpInfo imm2, NodeIndex child1 = NoNode… argument
214 return op & NodeMustGenerate; in mustGenerate() argument
219 return op & NodeIsConstant; in isConstant() argument
222 unsigned constantNumber() in constantNumber()
228 bool hasLocal() in hasLocal()
233 VirtualRegister local() in local()
239 bool hasIdentifier() in hasIdentifier()
263 return (op & NodeResultMask) == NodeResultInt32; in hasInt32Result() argument
[all …]
/external/clang/lib/AST/
DStmtPrinter.cpp93 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { in VisitStmt()
96 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { in VisitExpr()
114 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { in PrintRawCompoundStmt()
136 void StmtPrinter::VisitNullStmt(NullStmt *Node) { in VisitNullStmt()
140 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { in VisitDeclStmt()
146 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { in VisitCompoundStmt()
152 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) { in VisitCaseStmt()
164 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt()
169 void StmtPrinter::VisitLabelStmt(LabelStmt *Node) { in VisitLabelStmt()
174 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt()
[all …]
DASTDumper.cpp1343 void ASTDumper::VisitStmt(const Stmt *Node) { in VisitStmt()
1352 void ASTDumper::VisitDeclStmt(const DeclStmt *Node) { in VisitDeclStmt()
1363 void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt()
1374 void ASTDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt()
1379 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt()
1389 void ASTDumper::VisitExpr(const Expr *Node) { in VisitExpr()
1428 static void dumpBasePath(raw_ostream &OS, const CastExpr *Node) { in dumpBasePath()
1453 void ASTDumper::VisitCastExpr(const CastExpr *Node) { in VisitCastExpr()
1464 void ASTDumper::VisitDeclRefExpr(const DeclRefExpr *Node) { in VisitDeclRefExpr()
1476 void ASTDumper::VisitUnresolvedLookupExpr(const UnresolvedLookupExpr *Node) { in VisitUnresolvedLookupExpr()
[all …]
/external/llvm/unittests/ADT/
DilistTest.cpp20 struct Node : ilist_node<Node> { struct
21 int Value;
23 Node() {} in Node() argument
24 Node(int _Value) : Value(_Value) {} in Node() function
25 ~Node() { Value = -1; } in ~Node()
/external/openfst/src/include/fst/extensions/pdt/
Dcollection.h40 struct Node { // Trie node struct
41 I node_id; // Root is kNoNodeId; argument
44 Node() : node_id(kNoNodeId), element(T()) {} in Node() argument
45 Node(I i, const T &t) : node_id(i), element(t) {} in Node() function
/external/clang/include/clang/ASTMatchers/
DASTMatchersInternal.h71 void addNode(StringRef ID, const T* Node) { in addNode()
74 void addNode(StringRef ID, ast_type_traits::DynTypedNode Node) { in addNode()
164 void setBinding(const std::string &Id, const T *Node) { in setBinding()
167 void setBinding(const std::string &Id, ast_type_traits::DynTypedNode Node) { in setBinding()
221 virtual bool matches(const T &Node, in matches()
282 bool matches(const T &Node, in matches()
299 const T *Node = DynNode.get<T>(); in matches() local
316 virtual bool matches(const QualType &Node, in matches()
336 virtual bool matches(const T &Node, in matches()
388 virtual bool matchesNode(const T &Node) const LLVM_OVERRIDE { in matchesNode()
[all …]
DASTMatchFinder.h143 template <typename T> void match(const T &Node, ASTContext &Context) { in match()
203 if (NodeT *Node = I->getNodeAs<NodeT>(BoundTo)) in selectFirst() local
221 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, in match()
232 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { in match()
/external/llvm/lib/CodeGen/
DSpillPlacement.cpp69 struct SpillPlacement::Node { struct in SpillPlacement
74 float Scale[2];
79 float Bias;
84 float Value;
86 typedef SmallVector<std::pair<float, unsigned>, 4> LinkVector;
93 LinkVector Links;
96 bool preferReg() const { in preferReg()
102 bool mustSpill() const { in mustSpill()
109 Node() { in Node() argument
115 void clear() { in clear()
[all …]
DMachinePassRegistry.cpp36 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { in Add()
47 void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) { in Remove()
/external/skia/src/core/
DSkPictureStateTree.h120 struct Node { struct
121 Node* fParent; argument
122 uint32_t fOffset;
123 uint16_t fLevel;
124 uint16_t fFlags;
125 SkMatrix* fMatrix;
126 enum Flags {
DSkRTree.h108 struct Node { struct
109 uint16_t fNumChildren;
110 uint16_t fLevel;
111 bool isLeaf() { return 0 == fLevel; } in isLeaf()
114 Branch* child(size_t index) { in child()
/external/clang/test/CXX/expr/expr.post/expr.ref/
Dp3.cpp4 template<typename T> struct Node { struct
8 Node<T> n[1]; in splay() argument
/external/llvm/lib/CodeGen/SelectionDAG/
DSDNodeOrdering.h36 void add(const SDNode *Node, unsigned O) { in add()
39 void remove(const SDNode *Node) { in remove()
47 unsigned getOrder(const SDNode *Node) { in getOrder()
DScheduleDAGSDNodes.h55 static bool isPassiveNode(SDNode *Node) { in isPassiveNode()
135 const SDNode *Node; variable
/external/llvm/include/llvm/Support/
DGraphWriter.h69 bool getEdgeSourceLabels(raw_ostream &O, NodeType *Node) { in getEdgeSourceLabels()
147 bool isNodeHidden(NodeType &Node) { in isNodeHidden()
151 bool isNodeHidden(NodeType *const *Node) { in isNodeHidden()
155 bool isNodeHidden(NodeType *Node) { in isNodeHidden()
159 void writeNode(NodeType& Node) { in writeNode()
163 void writeNode(NodeType *const *Node) { in writeNode()
167 void writeNode(NodeType *Node) { in writeNode()
238 void writeEdge(NodeType *Node, unsigned edgeidx, child_iterator EI) { in writeEdge()
/external/clang/unittests/AST/
DMatchVerifier.h47 const NodeType &Node) {} in verify()
103 const NodeType *Node = Result.Nodes.getNodeAs<NodeType>(""); in run() local
126 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) { in verify()
141 virtual SourceLocation getLocation(const NodeType &Node) { in getLocation()
165 void verify(const MatchFinder::MatchResult &Result, const NodeType &Node) { in verify()
187 virtual SourceRange getRange(const NodeType &Node) { in getRange()
/external/llvm/lib/Support/
DDAGDeltaAlgorithm.cpp83 pred_iterator_ty pred_begin(change_ty Node) { in pred_begin()
87 pred_iterator_ty pred_end(change_ty Node) { in pred_end()
92 pred_closure_iterator_ty pred_closure_begin(change_ty Node) { in pred_closure_begin()
96 pred_closure_iterator_ty pred_closure_end(change_ty Node) { in pred_closure_end()
101 succ_iterator_ty succ_begin(change_ty Node) { in succ_begin()
105 succ_iterator_ty succ_end(change_ty Node) { in succ_end()
110 succ_closure_iterator_ty succ_closure_begin(change_ty Node) { in succ_closure_begin()
114 succ_closure_iterator_ty succ_closure_end(change_ty Node) { in succ_closure_end()
/external/webkit/Source/WebCore/page/
DChromeClient.h56 class Node; variable
238 virtual void formDidFocus(const Node*) { }; in formDidFocus()
239 virtual void formDidBlur(const Node*) { }; in formDidBlur()
268 virtual bool supportsFullscreenForNode(const Node*) { return false; } in supportsFullscreenForNode()
269 virtual void enterFullscreenForNode(Node*) { } in enterFullscreenForNode() argument
270 virtual void exitFullscreenForNode(Node*) { } in exitFullscreenForNode() argument
DHaltablePlugin.h31 class Node; variable
/external/llvm/include/llvm/Analysis/
DDominanceFrontier.h79 void addToFrontier(iterator I, BasicBlock *Node) { in addToFrontier()
84 void removeFromFrontier(iterator I, BasicBlock *Node) { in removeFromFrontier()
100 BasicBlock *Node = *I++; in compareDomSet() local
125 BasicBlock *Node = I->first; in compare() local
DRegionIterator.h170 NodeType* Node; variable
249 inline RNSuccIterator<NodeType> succ_begin(NodeType* Node) { in succ_begin()
254 inline RNSuccIterator<NodeType> succ_end(NodeType* Node) { in succ_end()
/external/webkit/Source/WebKit/mac/WebCoreSupport/
DWebPluginHalterClient.h30 class Node; variable
/external/clang/test/CodeGenCXX/
Dconstructor-template.cpp28 template <typename T> class Node { class
31 Node(){ } // Node<BinomialNode<int>*>::Node() remains undefined. in Node() function in Node
/external/webkit/Source/WebCore/bindings/v8/
DRetainedDOMInfo.h38 class Node; variable
/external/webkit/Source/WebCore/xml/
DXPathUtil.h37 class Node; variable

12345678910>>...15