| /external/clang/lib/AST/ |
| D | StmtPrinter.cpp | 96 void VisitStmt(Stmt *Node) LLVM_ATTRIBUTE_UNUSED { in VisitStmt() 99 void VisitExpr(Expr *Node) LLVM_ATTRIBUTE_UNUSED { in VisitExpr() 117 void StmtPrinter::PrintRawCompoundStmt(CompoundStmt *Node) { in PrintRawCompoundStmt() 134 void StmtPrinter::VisitNullStmt(NullStmt *Node) { in VisitNullStmt() 138 void StmtPrinter::VisitDeclStmt(DeclStmt *Node) { in VisitDeclStmt() 144 void StmtPrinter::VisitCompoundStmt(CompoundStmt *Node) { in VisitCompoundStmt() 150 void StmtPrinter::VisitCaseStmt(CaseStmt *Node) { in VisitCaseStmt() 162 void StmtPrinter::VisitDefaultStmt(DefaultStmt *Node) { in VisitDefaultStmt() 167 void StmtPrinter::VisitLabelStmt(LabelStmt *Node) { in VisitLabelStmt() 172 void StmtPrinter::VisitAttributedStmt(AttributedStmt *Node) { in VisitAttributedStmt() [all …]
|
| D | ASTDumper.cpp | 541 void VisitLambdaExpr(const LambdaExpr *Node) { in VisitLambdaExpr() 1767 void ASTDumper::VisitStmt(const Stmt *Node) { in VisitStmt() 1776 void ASTDumper::VisitDeclStmt(const DeclStmt *Node) { in VisitDeclStmt() 1784 void ASTDumper::VisitAttributedStmt(const AttributedStmt *Node) { in VisitAttributedStmt() 1792 void ASTDumper::VisitLabelStmt(const LabelStmt *Node) { in VisitLabelStmt() 1797 void ASTDumper::VisitGotoStmt(const GotoStmt *Node) { in VisitGotoStmt() 1803 void ASTDumper::VisitCXXCatchStmt(const CXXCatchStmt *Node) { in VisitCXXCatchStmt() 1808 void ASTDumper::VisitCapturedStmt(const CapturedStmt *Node) { in VisitCapturedStmt() 1818 const OMPExecutableDirective *Node) { in VisitOMPExecutableDirective() 1847 void ASTDumper::VisitExpr(const Expr *Node) { in VisitExpr() [all …]
|
| /external/skqp/src/sksl/ |
| D | SkSLCFGGenerator.h | 23 struct Node { struct 24 enum Kind { 29 Node(Kind kind, bool constantPropagation, std::unique_ptr<Expression>* expression, in Node() function 36 std::unique_ptr<Expression>* expression() const { in expression() 41 void setExpression(std::unique_ptr<Expression> expr) { in setExpression() 46 std::unique_ptr<Statement>* statement() const { in statement() 51 void setStatement(std::unique_ptr<Statement> stmt) { in setStatement() 56 String description() const { in description() 88 bool tryRemoveExpression(std::vector<BasicBlock::Node>::iterator* iter);
|
| /external/skia/src/sksl/ |
| D | SkSLCFGGenerator.h | 23 struct Node { struct 24 enum Kind { 29 Node(Kind kind, bool constantPropagation, std::unique_ptr<Expression>* expression, in Node() function 36 std::unique_ptr<Expression>* expression() const { in expression() 41 void setExpression(std::unique_ptr<Expression> expr) { in setExpression() 46 std::unique_ptr<Statement>* statement() const { in statement() 51 void setStatement(std::unique_ptr<Statement> stmt) { in setStatement() 56 String description() const { in description() 88 bool tryRemoveExpression(std::vector<BasicBlock::Node>::iterator* iter);
|
| /external/swiftshader/third_party/LLVM/unittests/ADT/ |
| D | ilistTest.cpp | 19 struct Node : ilist_node<Node> { struct 20 int Value; 22 Node() {} in Node() function 23 Node(int _Value) : Value(_Value) {} in Node() argument
|
| /external/libcxx/test/libcxx/containers/associative/ |
| D | tree_left_rotate.pass.cpp | 20 struct Node struct 22 Node* __left_; argument 23 Node* __right_; argument 24 Node* __parent_; argument 26 Node* __parent_unsafe() const { return __parent_; } in __parent_unsafe() argument 27 void __set_parent(Node* x) { __parent_ = x;} in __set_parent() argument 29 Node() : __left_(), __right_(), __parent_() {} in Node() argument
|
| D | tree_right_rotate.pass.cpp | 20 struct Node struct 22 Node* __left_; argument 23 Node* __right_; argument 24 Node* __parent_; argument 26 Node* __parent_unsafe() const { return __parent_; } in __parent_unsafe() argument 27 void __set_parent(Node* x) { __parent_ = x;} in __set_parent() argument 29 Node() : __left_(), __right_(), __parent_() {} in Node() argument
|
| /external/llvm/unittests/ADT/ |
| D | ilistTest.cpp | 20 struct Node : ilist_node<Node> { struct 21 int Value; 23 Node() {} in Node() function 24 Node(int Value) : Value(Value) {} in Node() function 26 ~Node() { Value = -1; } in ~Node()
|
| /external/llvm/lib/CodeGen/ |
| D | SpillPlacement.cpp | 72 struct SpillPlacement::Node { struct in SpillPlacement 74 BlockFrequency BiasN; 76 BlockFrequency BiasP; 81 int Value; 83 typedef SmallVector<std::pair<BlockFrequency, unsigned>, 4> LinkVector; 87 LinkVector Links; 90 BlockFrequency SumLinkWeights; 93 bool preferReg() const { in preferReg() 99 bool mustSpill() const { in mustSpill() 108 void clear(const BlockFrequency &Threshold) { in clear() [all …]
|
| /external/swiftshader/third_party/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 | 22 void MachinePassRegistry::Add(MachinePassRegistryNode *Node) { in Add() 33 void MachinePassRegistry::Remove(MachinePassRegistryNode *Node) { in Remove()
|
| /external/skia/src/core/ |
| D | SkArenaAllocList.h | 50 struct Node { struct 52 Node(Args... args) : fT(std::forward<Args>(args)...) {} in Node() function 54 Node* fNext = nullptr; argument
|
| D | SkSinglyLinkedList.h | 86 struct Node { struct 88 Node* fNext; argument 90 Node(Args&&... args) : fData(std::forward<Args>(args)...), fNext(nullptr) {} in Node() argument
|
| D | SkRTree.h | 72 struct Node { struct 78 void search(Node* root, const SkRect& query, SkTDArray<int>* results) const; argument
|
| /external/skqp/src/core/ |
| D | SkArenaAllocList.h | 50 struct Node { struct 52 Node(Args... args) : fT(std::forward<Args>(args)...) {} in Node() argument 54 Node* fNext = nullptr; argument
|
| D | SkSinglyLinkedList.h | 86 struct Node { struct 88 Node* fNext; argument 90 Node(Args&&... args) : fData(std::forward<Args>(args)...), fNext(nullptr) {} in Node() argument
|
| D | SkRTree.h | 72 struct Node { struct 78 void search(Node* root, const SkRect& query, SkTDArray<int>* results) const; argument
|
| /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/clang/include/clang/ASTMatchers/ |
| D | ASTMatchersInternal.h | 99 inline QualType getUnderlyingType(const Expr &Node) { return Node.getType(); } in getUnderlyingType() 101 inline QualType getUnderlyingType(const ValueDecl &Node) { in getUnderlyingType() 105 inline QualType getUnderlyingType(const TypedefNameDecl &Node) { in getUnderlyingType() 112 getFunctionProtoType(const FunctionProtoType &Node) { in getFunctionProtoType() 116 inline const FunctionProtoType *getFunctionProtoType(const FunctionDecl &Node) { in getFunctionProtoType() 299 bool matches(const T &Node, in matches() 506 bool matches(const T &Node, in matches() 536 bool matches(const QualType &Node, ASTMatchFinder *Finder, in matches() 650 bool matchesNode(const T &Node) const override { in matchesNode() 659 bool matchesSpecialized(const CXXOperatorCallExpr &Node) const { in matchesSpecialized() [all …]
|
| /external/swiftshader/third_party/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()
|
| /external/swiftshader/third_party/LLVM/include/llvm/Support/ |
| D | GraphWriter.h | 65 bool getEdgeSourceLabels(raw_ostream &O, NodeType *Node) { in getEdgeSourceLabels() 143 bool isNodeHidden(NodeType &Node) { in isNodeHidden() 147 bool isNodeHidden(NodeType *const *Node) { in isNodeHidden() 151 bool isNodeHidden(NodeType *Node) { in isNodeHidden() 155 void writeNode(NodeType& Node) { in writeNode() 159 void writeNode(NodeType *const *Node) { in writeNode() 163 void writeNode(NodeType *Node) { in writeNode() 226 void writeEdge(NodeType *Node, unsigned edgeidx, child_iterator EI) { in writeEdge()
|
| /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() 240 void writeEdge(NodeType *Node, unsigned edgeidx, child_iterator EI) { in writeEdge()
|
| /external/gemmlowp/profiling/ |
| D | profiler.h | 158 struct Node { struct 159 std::vector<Node*> children; argument 162 Node() : label(nullptr), weight(0) {} in Node() argument 163 ~Node() { in ~Node() argument
|
| /external/clang/include/clang/Tooling/ |
| D | FixIt.h | 43 template <typename T> SourceRange getSourceRange(const T &Node) { in getSourceRange() 50 StringRef getText(const T &Node, const ASTContext &Context) { in getText() 56 template <typename T> FixItHint createRemoval(const T &Node) { in createRemoval()
|
| /external/swiftshader/third_party/subzero/src/ |
| D | IceLiveness.h | 79 SizeT getNumVarsInNode(const CfgNode *Node) const { in getNumVarsInNode() 82 SizeT &getNumNonDeadPhis(const CfgNode *Node) { in getNumNonDeadPhis() 85 LivenessBV &getLiveIn(const CfgNode *Node) { in getLiveIn() 90 LivenessBV &getLiveOut(const CfgNode *Node) { in getLiveOut() 96 LiveBeginEndMap *getLiveBegin(const CfgNode *Node) { in getLiveBegin() 101 LiveBeginEndMap *getLiveEnd(const CfgNode *Node) { in getLiveEnd()
|