Home
last modified time | relevance | path

Searched refs:Contexts (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp132 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); in AnnotatingParser()
163 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 && in parseAngle()
176 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle()
178 Contexts.back().IsExpression = false; in parseAngle()
185 Contexts.back().ContextType = Context::TemplateArgument; in parseAngle()
193 const bool InExpr = Contexts[Contexts.size() - 2].IsExpression; in parseAngle()
314 OpeningParen.ParentBracket = Contexts.back().ContextKind; in parseParens()
318 Contexts.back().ColonIsForRangeExpr = in parseParens()
319 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; in parseParens()
351 Contexts.back().IsExpression = OperatorCalledAsMemberFunction; in parseParens()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp
H A DDWARFLinker.cpp
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp91 void AnalysisDeclContextManager::clear() { Contexts.clear(); } in clear()
302 std::unique_ptr<AnalysisDeclContext> &AC = Contexts[D]; in getContext()
434 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getStackFrame()
437 Contexts.InsertNode(L, InsertPos); in getStackFrame()
449 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, in getBlockInvocationContext()
453 Contexts.InsertNode(L, InsertPos); in getBlockInvocationContext()
698 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), in clear()
699 E = Contexts.end(); I != E; ) { in clear()
704 Contexts.clear(); in clear()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp1498 void collectAllContextsImpl(T *Self, SmallVectorImpl<DeclContext *> &Contexts) { in collectAllContextsImpl() argument
1500 Contexts.push_back(D); in collectAllContextsImpl()
1502 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContextsImpl()
1505 void DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts) { in collectAllContexts() argument
1506 Contexts.clear(); in collectAllContexts()
1511 collectAllContextsImpl(static_cast<TranslationUnitDecl *>(this), Contexts); in collectAllContexts()
1513 collectAllContextsImpl(static_cast<NamespaceDecl *>(this), Contexts); in collectAllContexts()
1515 Contexts.push_back(this); in collectAllContexts()
1792 SmallVector<DeclContext *, 2> Contexts; in buildLookup() local
1793 collectAllContexts(Contexts); in buildLookup()
[all …]
H A DDecl.cpp1728 ContextsTy Contexts; in printNestedNameSpecifier() local
1748 Contexts.push_back(Ctx); in printNestedNameSpecifier()
1752 for (const DeclContext *DC : llvm::reverse(Contexts)) { in printNestedNameSpecifier()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesWriter.cpp46 Contexts; member in clang::api_notes::APINotesWriter::Implementation
605 if (Contexts.empty()) in writeContextBlock()
613 for (auto &OC : Contexts) in writeContextBlock()
632 for (auto &OC : Contexts) in writeContextBlock()
1335 auto Known = Implementation->Contexts.find(Key); in addContext()
1336 if (Known == Implementation->Contexts.end()) { in addContext()
1337 unsigned NextID = Implementation->Contexts.size() + 1; in addContext()
1340 Known = Implementation->Contexts in addContext()
1393 assert(Implementation->Contexts.contains(CtxKey)); in addObjCMethod()
1394 auto &VersionedVec = Implementation->Contexts[CtxKey].second; in addObjCMethod()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp296 uint64_t Contexts = 0; in getDeclShowContexts() local
302 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel) in getDeclShowContexts()
311 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); in getDeclShowContexts()
316 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver); in getDeclShowContexts()
322 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); in getDeclShowContexts()
323 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName); in getDeclShowContexts()
324 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCClassForwardDecl); in getDeclShowContexts()
329 Contexts |= (1LL << CodeCompletionContext::CCC_EnumTag); in getDeclShowContexts()
336 Contexts |= (1LL << CodeCompletionContext::CCC_UnionTag); in getDeclShowContexts()
338 Contexts |= (1LL << CodeCompletionContext::CCC_ClassOrStructTag); in getDeclShowContexts()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h388 llvm::FoldingSet<LocationContext> Contexts; variable
429 ContextMap Contexts; variable
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp391 SmallVector<const DeclContext *, 2> Contexts; in getParentName() local
395 Contexts.push_back(DC); in getParentName()
405 for (const DeclContext *CurDC : llvm::reverse(Contexts)) { in getParentName()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp948 SmallVector<std::unique_ptr<WriterContext>, 4> Contexts; in mergeInstrProfile() local
950 Contexts.emplace_back(std::make_unique<WriterContext>( in mergeInstrProfile()
957 Contexts[0].get()); in mergeInstrProfile()
965 Contexts[Ctx].get()); in mergeInstrProfile()
971 unsigned Mid = Contexts.size() / 2; in mergeInstrProfile()
972 unsigned End = Contexts.size(); in mergeInstrProfile()
976 Pool.async(mergeWriterContexts, Contexts[I].get(), in mergeInstrProfile()
977 Contexts[I + Mid].get()); in mergeInstrProfile()
980 Pool.async(mergeWriterContexts, Contexts[0].get(), in mergeInstrProfile()
981 Contexts[End - 1].get()); in mergeInstrProfile()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h
/freebsd/crypto/openssl/doc/man3/
H A DEVP_PKEY_CTX_new.pod65 by the OpenSSL high-level public key API. Contexts B<MUST NOT> be shared between
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Classic/
H A DDWARFLinker.cpp306 DeclContext *CurrentDeclContext, DeclContextTree &Contexts, in analyzeContextInfo() argument
357 auto PtrInvalidPair = Contexts.getChildDeclContext( in analyzeContextInfo()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclBase.h2302 void collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts);
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64Features.td429 "Enable Memory Encryption Contexts Extension", [FeatureRME]>;
H A DAArch64SystemOperands.td866 // v9a Memory Encryption Contexts Extension registers
/freebsd/sys/contrib/zstd/
H A DCHANGELOG2 perf: Regain Minimal memset()-ing During Reuse of Compression Contexts (@Cyan4973, #2969)