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

/external/clang/include/clang/Analysis/
H A DAnalysisContext.h380 llvm::FoldingSet<LocationContext> Contexts; member in class:clang::LocationContextManager
411 ContextMap Contexts; member in class:clang::AnalysisDeclContextManager
/external/clang/lib/Format/
H A DTokenAnnotator.cpp39 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false));
54 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 &&
61 Left->ParentBracket = Contexts.back().ContextKind;
66 bool InExprContext = Contexts.back().IsExpression;
68 Contexts.back().IsExpression = false;
71 Contexts.back().InTemplateArgument =
102 Contexts[Contexts.size() - 2].IsExpression &&
116 Left->ParentBracket = Contexts.back().ContextKind;
120 Contexts
1334 SmallVector<Context, 8> Contexts; member in class:clang::format::__anon1674::AnnotatingParser
[all...]
/external/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp296 unsigned long long Contexts; member in struct:__anon3670::AllocatedCXCodeCompleteResults
329 Contexts(CXCompletionContext_Unknown),
558 AllocatedResults.Contexts = getContextsForContextKind(contextKind, S);
882 return Results->Contexts;
/external/clang/lib/AST/
H A DDeclBase.cpp1056 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ argument
1057 Contexts.clear();
1060 Contexts.push_back(this);
1067 Contexts.push_back(N);
1069 std::reverse(Contexts.begin(), Contexts.end());
1351 SmallVector<DeclContext *, 2> Contexts;
1352 collectAllContexts(Contexts);
1356 for (auto *DC : Contexts) {
1366 for (auto *DC : Contexts)
1481 SmallVector<DeclContext *, 2> Contexts; local
[all...]
H A DDecl.cpp1419 ContextsTy Contexts; local
1423 Contexts.push_back(Ctx);
1427 for (const DeclContext *DC : reverse(Contexts)) {
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp163 DeclContext::Map Contexts; member in class:llvm::dsymutil::__anon14845::DeclContextTree
1413 /// ODR Contexts for that link.
1685 auto ContextIter = Contexts.find(&Key);
1687 if (ContextIter == Contexts.end()) {
1693 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext);
1703 assert(ContextIter != Contexts.end());
1766 DeclContextTree &Contexts,
1793 auto PtrInvalidPair = Contexts.getChildDeclContext(
1807 StringPool, Contexts, InImportedModule);
1762 analyzeContextInfo(const DWARFDebugInfoEntryMinimal *DIE, unsigned ParentIdx, CompileUnit &CU, DeclContext *CurrentDeclContext, NonRelocatableStringpool &StringPool, DeclContextTree &Contexts, bool InImportedModule = false) argument

Completed in 310 milliseconds