Home
last modified time | relevance | path

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

12

/netbsd-src/external/apache2/llvm/dist/clang/lib/Format/
H A DTokenAnnotator.cpp77 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); in AnnotatingParser()
92 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 && in parseAngle()
99 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle()
104 bool InExprContext = Contexts.back().IsExpression; in parseAngle()
106 Contexts.back().IsExpression = false; in parseAngle()
109 Contexts.back().InTemplateArgument = in parseAngle()
165 Contexts[Contexts.size() - 2].IsExpression && in parseAngle()
210 Left->ParentBracket = Contexts.back().ContextKind; in parseParens()
214 Contexts.back().ColonIsForRangeExpr = in parseParens()
215 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; in parseParens()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Analysis/
H A DAnalysisDeclContext.cpp91 void AnalysisDeclContextManager::clear() { Contexts.clear(); } in clear()
303 std::unique_ptr<AnalysisDeclContext> &AC = Contexts[D]; in getContext()
382 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getStackFrame()
385 Contexts.InsertNode(L, InsertPos); in getStackFrame()
397 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, in getBlockInvocationContext()
401 Contexts.InsertNode(L, InsertPos); in getBlockInvocationContext()
646 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), in clear()
647 E = Contexts.end(); I != E; ) { in clear()
652 Contexts.clear(); in clear()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
H A DDWARFLinkerDeclContext.cpp161 auto ContextIter = Contexts.find(&Key); in getChildDeclContext()
163 if (ContextIter == Contexts.end()) { in getChildDeclContext()
169 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
179 assert(ContextIter != Contexts.end()); in getChildDeclContext()
H A DDWARFLinker.cpp315 DeclContext *CurrentDeclContext, DeclContextTree &Contexts, in analyzeContextInfo() argument
366 auto PtrInvalidPair = Contexts.getChildDeclContext( in analyzeContextInfo()
/netbsd-src/external/bsd/openldap/dist/tests/data/
H A Dtest-emptydn1.ldif8 dn: cn=Geographical Naming Contexts,dc=example,dc=com
10 cn: Geographical Naming Contexts
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclBase.cpp1285 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ in collectAllContexts() argument
1286 Contexts.clear(); in collectAllContexts()
1289 Contexts.push_back(this); in collectAllContexts()
1296 Contexts.push_back(N); in collectAllContexts()
1298 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContexts()
1571 SmallVector<DeclContext *, 2> Contexts; in buildLookup() local
1572 collectAllContexts(Contexts); in buildLookup()
1576 for (auto *DC : Contexts) { in buildLookup()
1588 for (auto *DC : Contexts) in buildLookup()
1716 SmallVector<DeclContext *, 2> Contexts; in loadLazyLocalLexicalLookups() local
[all …]
H A DDecl.cpp1626 ContextsTy Contexts; in printNestedNameSpecifier() local
1646 Contexts.push_back(Ctx); in printNestedNameSpecifier()
1650 for (unsigned I = Contexts.size(); I != 0; --I) { in printNestedNameSpecifier()
1651 const DeclContext *DC = Contexts[I - 1]; in printNestedNameSpecifier()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DCodeCompleteConsumer.cpp373 SmallVector<const DeclContext *, 2> Contexts; in getParentName() local
377 Contexts.push_back(DC); in getParentName()
387 for (unsigned I = Contexts.size(); I != 0; --I) { in getParentName()
394 const DeclContext *CurDC = Contexts[I - 1]; in getParentName()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DASTUnit.cpp297 uint64_t Contexts = 0; in getDeclShowContexts() local
303 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel) in getDeclShowContexts()
312 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); in getDeclShowContexts()
317 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver); in getDeclShowContexts()
323 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); in getDeclShowContexts()
324 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName); 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()
346 Contexts = (1LL << CodeCompletionContext::CCC_Statement) in getDeclShowContexts()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp347 SmallVector<std::unique_ptr<WriterContext>, 4> Contexts; in mergeInstrProfile() local
349 Contexts.emplace_back(std::make_unique<WriterContext>( in mergeInstrProfile()
354 loadInput(Input, Remapper, Contexts[0].get()); in mergeInstrProfile()
361 Pool.async(loadInput, Input, Remapper, Contexts[Ctx].get()); in mergeInstrProfile()
367 unsigned Mid = Contexts.size() / 2; in mergeInstrProfile()
368 unsigned End = Contexts.size(); in mergeInstrProfile()
372 Pool.async(mergeWriterContexts, Contexts[I].get(), in mergeInstrProfile()
373 Contexts[I + Mid].get()); in mergeInstrProfile()
376 Pool.async(mergeWriterContexts, Contexts[0].get(), in mergeInstrProfile()
377 Contexts[End - 1].get()); in mergeInstrProfile()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCIndexCodeCompletion.cpp289 unsigned long long Contexts; member
366 Contexts(CXCompletionContext_Unknown), in AllocatedCXCodeCompleteResults()
598 AllocatedResults.Contexts = getContextsForContextKind(contextKind, S); in ProcessCodeCompleteResults()
932 return Results->Contexts; in clang_codeCompleteGetContexts()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Analysis/
H A DAnalysisDeclContext.h382 llvm::FoldingSet<LocationContext> Contexts; variable
423 ContextMap Contexts; variable
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/cp/topics/
H A Dcontexts.rst38 Contexts are the unit of lifetime-management within the API: objects
88 Contexts can be arbitrarily nested, provided the above rules are
100 Contexts created via :func:`gccjit::context::new_child_context` are
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/docs/cp/topics/
H A Dcontexts.rst38 Contexts are the unit of lifetime-management within the API: objects
88 Contexts can be arbitrarily nested, provided the above rules are
100 Contexts created via :func:`gccjit::context::new_child_context` are
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/
H A DEVP_PKEY_CTX_new.pod34 by the OpenSSL high-level public key API. Contexts B<MUST NOT> be shared between
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerDeclContext.h144 DeclContext::Map Contexts; variable
/netbsd-src/crypto/external/bsd/openssl/dist/doc/man3/
H A DEVP_PKEY_CTX_new.pod65 by the OpenSSL high-level public key API. Contexts B<MUST NOT> be shared between
/netbsd-src/external/gpl3/gcc/dist/gcc/jit/docs/topics/
H A Dcontexts.rst36 Contexts are the unit of lifetime-management within the API: objects
85 Contexts can be arbitrarily nested, provided the above rules are
97 Contexts created via :c:func:`gcc_jit_context_new_child_context` are
/netbsd-src/external/gpl3/gcc.old/dist/gcc/jit/docs/topics/
H A Dcontexts.rst36 Contexts are the unit of lifetime-management within the API: objects
85 Contexts can be arbitrarily nested, provided the above rules are
97 Contexts created via :c:func:`gcc_jit_context_new_child_context` are
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/doc/
H A DChangeLog200 * gettext.texi (Contexts): Document the macros pgettext_expr,
288 * gettext.texi (PO Files, Preparing Strings, Contexts): Small fixes.
296 (Contexts): New subsection.
/netbsd-src/external/bsd/openldap/dist/doc/rfc/
H A Drfc3928.txt121 5.4. Continuation References to Other LCUP Contexts . . . . . 21
308 Context. A server may support one or more LCUP Contexts. For
1140 5.4. Continuation References to Other LCUP Contexts
1241 Contexts in the search scope first, in order to allow the clients to
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclBase.h2062 void collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts);
/netbsd-src/external/gpl2/gettext/dist/
H A DNEWS69 For more information, see the node "Contexts" in the manual.
/netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man7/
H A Dssl.pod220 =head2 Dealing with Protocol Contexts
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm.ml381 (*===-- Contexts ----------------------------------------------------------===*)

12