HomeSort by: relevance | last modified time | path
    Searched defs:ASTNode (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
ast_node.h 17 class ASTNode : public RootObject
  /src/external/apache2/llvm/dist/clang/include/clang-c/
Documentation.h 37 const void *ASTNode;
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ASTDiff/
ASTDiff.h 40 DynTypedNode ASTNode;
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ASTTableGen.h 21 #define ASTNodeClassName "ASTNode"
42 // Cases of various non-ASTNode structured types like DeclarationName.
157 class ASTNode : public HasProperties {
159 ASTNode(llvm::Record *record = nullptr) : HasProperties(record) {}
166 ASTNode getBase() const {
180 class DeclNode : public ASTNode {
182 DeclNode(llvm::Record *record = nullptr) : ASTNode(record) {}
186 DeclNode getBase() const { return DeclNode(ASTNode::getBase().getRecord()); }
202 class TypeNode : public ASTNode {
204 TypeNode(llvm::Record *record = nullptr) : ASTNode(record) {
    [all...]
  /src/external/bsd/elftosb/dist/elftosb2/
ElftosbAST.h 34 class ASTNode
38 ASTNode() : m_parent(0) {}
41 ASTNode(ASTNode * parent) : m_parent(parent) {}
44 ASTNode(const ASTNode & other) : m_parent(other.m_parent) {}
47 virtual ~ASTNode() {}
50 virtual ASTNode * clone() const = 0;
53 virtual std::string nodeName() const { return "ASTNode"; }
57 virtual ASTNode * getParent() const { return m_parent;
    [all...]

Completed in 18 milliseconds