/external/webkit/Source/JavaScriptCore/dfg/ |
D | DFGNode.h | 172 struct Node { struct 186 …Node(NodeType op, ExceptionInfo exceptionInfo, OpInfo imm, NodeIndex child1 = NoNode, NodeIndex ch… argument 199 …Node(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/ |
D | StmtPrinter.cpp | 93 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 …]
|
D | ASTDumper.cpp | 1343 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/ |
D | ilistTest.cpp | 20 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/ |
D | collection.h | 40 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/ |
D | ASTMatchersInternal.h | 71 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 …]
|
D | ASTMatchFinder.h | 143 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/ |
D | SpillPlacement.cpp | 69 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 …]
|
D | MachinePassRegistry.cpp | 36 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { in Add() 47 void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) { in Remove()
|
/external/skia/src/core/ |
D | SkPictureStateTree.h | 120 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 {
|
D | SkRTree.h | 108 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/ |
D | p3.cpp | 4 template<typename T> struct Node { struct 8 Node<T> n[1]; in splay() argument
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | SDNodeOrdering.h | 36 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()
|
D | ScheduleDAGSDNodes.h | 55 static bool isPassiveNode(SDNode *Node) { in isPassiveNode() 135 const SDNode *Node; variable
|
/external/llvm/include/llvm/Support/ |
D | GraphWriter.h | 69 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/ |
D | MatchVerifier.h | 47 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/ |
D | DAGDeltaAlgorithm.cpp | 83 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/ |
D | ChromeClient.h | 56 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
|
D | HaltablePlugin.h | 31 class Node; variable
|
/external/llvm/include/llvm/Analysis/ |
D | DominanceFrontier.h | 79 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
|
D | RegionIterator.h | 170 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/ |
D | WebPluginHalterClient.h | 30 class Node; variable
|
/external/clang/test/CodeGenCXX/ |
D | constructor-template.cpp | 28 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/ |
D | RetainedDOMInfo.h | 38 class Node; variable
|
/external/webkit/Source/WebCore/xml/ |
D | XPathUtil.h | 37 class Node; variable
|