Home
last modified time | relevance | path

Searched refs:SimpleDeclarator (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Tooling/Syntax/
H A DNodes.cpp176 std::vector<syntax::SimpleDeclarator *>
179 std::vector<syntax::SimpleDeclarator *> Children; in getDeclarators()
181 Children.push_back(llvm::cast<syntax::SimpleDeclarator>(DeclaratorAsNode)); in getDeclarators()
186 std::vector<syntax::List::ElementAndDelimiter<syntax::SimpleDeclarator>>
189 std::vector<syntax::List::ElementAndDelimiter<syntax::SimpleDeclarator>> in getDeclaratorsAndCommas()
193 {llvm::cast<syntax::SimpleDeclarator>(DeclaratorAsNodeAndComma.element), in getDeclaratorsAndCommas()
356 std::vector<syntax::SimpleDeclarator *>
358 std::vector<syntax::SimpleDeclarator *> Children; in getDeclarators()
361 Children.push_back(cast<syntax::SimpleDeclarator>(C)); in getDeclarators()
414 syntax::SimpleDeclarator *syntax::TrailingReturnType::getDeclarator() { in getDeclarator()
[all …]
H A DSynthesis.cpp169 case syntax::NodeKind::SimpleDeclarator: in allocateTree()
170 return new (A.getAllocator()) syntax::SimpleDeclarator; in allocateTree()
H A DBuildTree.cpp1602 auto *N = new (allocator()) syntax::SimpleDeclarator; in processDeclaratorAndDeclaration()
1632 syntax::SimpleDeclarator *ReturnDeclarator = nullptr; in buildTrailingReturn()
1634 ReturnDeclarator = new (allocator()) syntax::SimpleDeclarator; in buildTrailingReturn()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DNodes.h397 std::vector<SimpleDeclarator *> getDeclarators();
398 std::vector<List::ElementAndDelimiter<syntax::SimpleDeclarator>>
410 std::vector<SimpleDeclarator *> getDeclarators();
494 class SimpleDeclarator final : public Declarator {
496 SimpleDeclarator() : Declarator(NodeKind::SimpleDeclarator) {} in SimpleDeclarator() function
535 SimpleDeclarator *getDeclarator();
H A DNodes.td255 def SimpleDeclarator : External<Declarator> {}