HomeSort by: relevance | last modified time | path
    Searched refs:getParents (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ParentMapContext.h 53 template <typename NodeT> DynTypedNodeList getParents(const NodeT &Node);
55 DynTypedNodeList getParents(const DynTypedNode &Node);
128 inline DynTypedNodeList ParentMapContext::getParents(const NodeT &Node) {
129 return getParents(DynTypedNode::create(Node));
133 inline DynTypedNodeList ASTContext::getParents(const NodeT &Node) {
134 return getParentMapContext().getParents(Node);
138 inline DynTypedNodeList ASTContext::getParents(const DynTypedNode &Node) {
139 return getParentMapContext().getParents(Node);
ASTContext.h 627 // getParents() will only observe reachable parent edges.
636 /// use ParentMapContext::getParents() directly.
637 template <typename NodeT> DynTypedNodeList getParents(const NodeT &Node);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/WebKit/
UncountedLocalVarsChecker.cpp 36 auto parent = ASTCtx.getParents(*Var);
40 DynTypedNodeList grandParent = ASTCtx.getParents(*DS);
85 for (DynTypedNodeList guardianAncestors = ctx.getParents(*MaybeGuardian);
87 guardianAncestors = ctx.getParents(
107 for (DynTypedNodeList guardedVarAncestors = ctx.getParents(*Guarded);
109 guardedVarAncestors = ctx.getParents(
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/Refactoring/
ASTSelection.h 101 ArrayRef<SelectedASTNode::ReferenceType> getParents() { return Parents; }
  /src/external/apache2/llvm/dist/clang/lib/AST/
ParentMapContext.cpp 126 DynTypedNodeList getParents(TraversalKind TK, const DynTypedNode &Node) {
452 DynTypedNodeList ParentMapContext::getParents(const DynTypedNode &Node) {
457 return Parents->getParents(getTraversalKind(), Node);
  /src/external/apache2/llvm/dist/clang/lib/Tooling/Refactoring/Rename/
USRLocFinder.cpp 372 auto Parents = Context.getParents(Loc);
483 auto Parents = Context.getParents(Node);
495 auto Parents = Context.getParents(Loc);
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
ClangDiagnosticsEmitter.cpp 56 const std::vector<Record*> &getParents(const Record *Group) {
71 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
302 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
347 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
406 const std::vector<Record*> &Parents = DiagGroupParents.getParents(Group);
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 904 for (const auto &Parent : ActiveASTContext->getParents(Node)) {
969 Parents = ActiveASTContext->getParents(Node);
1016 for (const auto &Parent : ActiveASTContext->getParents(Queue.front())) {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 7565 const auto &Parents = Finder->getASTContext().getParents(Node);
7581 for (const auto &Parent : Finder->getASTContext().getParents(CurNode))
7616 const auto &Parents = Finder->getASTContext().getParents(Node);
7640 for (const auto &Parent : Finder->getASTContext().getParents(CurNode))
  /src/external/apache2/llvm/dist/clang/lib/Tooling/ASTDiff/
ASTDiff.cpp 387 const auto &Parents = AST.getParents(*S);

Completed in 100 milliseconds