Searched defs:Contexts (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Analysis/
H A DAnalysisContext.h376 llvm::FoldingSet<LocationContext> Contexts; member in class:clang::LocationContextManager
407 ContextMap Contexts; member in class:clang::AnalysisDeclContextManager
/external/clang/lib/Format/
H A DTokenAnnotator.cpp38 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false));
48 Contexts.back().IsExpression = false;
51 Contexts.back().InTemplateArgument =
82 Contexts[Contexts.size() - 2].IsExpression &&
98 Contexts.back().ColonIsForRangeExpr =
99 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr;
119 Contexts.back().IsExpression = true;
124 Contexts
1127 SmallVector<Context, 8> Contexts; member in class:clang::format::__anon1026::AnnotatingParser
[all...]
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp296 unsigned long long Contexts; member in struct:__anon2780::AllocatedCXCodeCompleteResults
329 Contexts(CXCompletionContext_Unknown),
558 AllocatedResults.Contexts = getContextsForContextKind(contextKind, S);
892 return Results->Contexts;
/external/clang/lib/AST/
H A DDeclBase.cpp972 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ argument
973 Contexts.clear();
976 Contexts.push_back(this);
983 Contexts.push_back(N);
985 std::reverse(Contexts.begin(), Contexts.end());
1271 SmallVector<DeclContext *, 2> Contexts;
1272 collectAllContexts(Contexts);
1276 for (auto *DC : Contexts) {
1286 for (auto *DC : Contexts)
1401 SmallVector<DeclContext *, 2> Contexts; local
[all...]
H A DDecl.cpp1375 ContextsTy Contexts; local
1379 Contexts.push_back(Ctx);
1383 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend();
/external/clang/lib/Serialization/
H A DASTReader.cpp6588 ArrayRef<const DeclContext *> Contexts; member in class:__anon1254::DeclContextNameLookupVisitor
6595 ArrayRef<const DeclContext *> Contexts,
6599 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls),
6610 for (auto *DC : This->Contexts) {
6696 SmallVector<const DeclContext *, 2> Contexts; local
6697 Contexts.push_back(DC);
6703 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I])));
6707 auto LookUpInContexts = [&](ArrayRef<const DeclContext*> Contexts) {
6708 DeclContextNameLookupVisitor Visitor(*this, Contexts, Nam
6594 DeclContextNameLookupVisitor(ASTReader &Reader, ArrayRef<const DeclContext *> Contexts, DeclarationName Name, SmallVectorImpl<NamedDecl *> &Decls, llvm::SmallPtrSetImpl<NamedDecl *> &DeclSet) argument
6750 SmallVectorImpl<const DeclContext *> &Contexts; member in class:__anon1255::DeclContextAllNamesVisitor
6756 DeclContextAllNamesVisitor(ASTReader &Reader, SmallVectorImpl<const DeclContext *> &Contexts, DeclsMap &Decls, bool VisitAll) argument
6816 SmallVector<const DeclContext *, 2> Contexts; local
[all...]

Completed in 363 milliseconds