Home
last modified time | relevance | path

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

1234567

/external/clang/lib/Format/
DTokenAnnotator.cpp39 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); in AnnotatingParser()
54 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 && in parseAngle()
61 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle()
66 bool InExprContext = Contexts.back().IsExpression; in parseAngle()
68 Contexts.back().IsExpression = false; in parseAngle()
71 Contexts.back().InTemplateArgument = in parseAngle()
102 Contexts[Contexts.size() - 2].IsExpression && in parseAngle()
116 Left->ParentBracket = Contexts.back().ContextKind; in parseParens()
120 Contexts.back().ColonIsForRangeExpr = in parseParens()
121 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; in parseParens()
[all …]
/external/clang/lib/Analysis/
DAnalysisDeclContext.cpp85 llvm::DeleteContainerSeconds(Contexts); in clear()
310 AnalysisDeclContext *&AC = Contexts[D]; in getContext()
391 LOC *L = cast_or_null<LOC>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getLocationContext()
395 Contexts.InsertNode(L, InsertPos); in getLocationContext()
409 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getStackFrame()
412 Contexts.InsertNode(L, InsertPos); in getStackFrame()
433 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, in getBlockInvocationContext()
437 Contexts.InsertNode(L, InsertPos); in getBlockInvocationContext()
610 llvm::DeleteContainerSeconds(Contexts); in ~AnalysisDeclContextManager()
620 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), in clear()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDeclContext.cpp181 auto ContextIter = Contexts.find(&Key); in getChildDeclContext()
183 if (ContextIter == Contexts.end()) { in getChildDeclContext()
189 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
199 assert(ContextIter != Contexts.end()); in getChildDeclContext()
DDeclContext.h143 DeclContext::Map Contexts; variable
DDwarfLinker.cpp224 DeclContextTree &Contexts, in analyzeContextInfo() argument
251 auto PtrInvalidPair = Contexts.getChildDeclContext( in analyzeContextInfo()
266 StringPool, Contexts, InImportedModule); in analyzeContextInfo()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp263 SmallVector<std::unique_ptr<WriterContext>, 4> Contexts; in mergeInstrProfile() local
265 Contexts.emplace_back(llvm::make_unique<WriterContext>( in mergeInstrProfile()
270 loadInput(Input, Contexts[0].get()); in mergeInstrProfile()
277 Pool.async(loadInput, Input, Contexts[Ctx].get()); in mergeInstrProfile()
283 unsigned Mid = Contexts.size() / 2; in mergeInstrProfile()
284 unsigned End = Contexts.size(); in mergeInstrProfile()
288 Pool.async(mergeWriterContexts, Contexts[I].get(), in mergeInstrProfile()
289 Contexts[I + Mid].get()); in mergeInstrProfile()
292 Pool.async(mergeWriterContexts, Contexts[0].get(), in mergeInstrProfile()
293 Contexts[End - 1].get()); in mergeInstrProfile()
[all …]
/external/clang/lib/AST/
DDeclBase.cpp1056 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ in collectAllContexts() argument
1057 Contexts.clear(); in collectAllContexts()
1060 Contexts.push_back(this); in collectAllContexts()
1067 Contexts.push_back(N); in collectAllContexts()
1069 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContexts()
1351 SmallVector<DeclContext *, 2> Contexts; in buildLookup() local
1352 collectAllContexts(Contexts); in buildLookup()
1356 for (auto *DC : Contexts) { in buildLookup()
1366 for (auto *DC : Contexts) in buildLookup()
1481 SmallVector<DeclContext *, 2> Contexts; in noload_lookup() local
[all …]
/external/grpc-grpc-java/core/src/main/java/io/grpc/
DContexts.java25 public final class Contexts { class
27 private Contexts() { in Contexts() method in Contexts
/external/mesa3d/docs/specs/
DMESA_multithread_makecurrent.spec66 Replace the following sentence from section 2.2 Rendering Contexts:
78 Replace the following sentence from section 3.3.7 Rendering Contexts:
85 Replace the following sentence from section 3.5 Rendering Contexts:
/external/clang/lib/Sema/
DCodeCompleteConsumer.cpp282 SmallVector<const DeclContext *, 2> Contexts; in getParentName() local
286 Contexts.push_back(DC); in getParentName()
296 for (unsigned I = Contexts.size(); I != 0; --I) { in getParentName()
303 const DeclContext *CurDC = Contexts[I-1]; in getParentName()
/external/tensorflow/tensorflow/core/protobuf/
Dcontrol_flow.proto47 // Contexts contained inside this context (e.g. nested conds).
86 // Contexts contained inside this context (e.g. nested whiles).
Deager_service.proto79 // service. Contexts are not persisted through server restarts.
184 // Contexts are always created with a deadline and no RPCs within a deadline
/external/libvpx/libvpx/vp8/common/
Dcontext.c16 int Contexts[vp8_coef_counter_dimen];
/external/clang/lib/Frontend/
DASTUnit.cpp275 uint64_t Contexts = 0; in getDeclShowContexts() local
280 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel) in getDeclShowContexts()
289 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); in getDeclShowContexts()
294 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver); in getDeclShowContexts()
298 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName); in getDeclShowContexts()
302 Contexts |= (1LL << CodeCompletionContext::CCC_EnumTag); in getDeclShowContexts()
309 Contexts |= (1LL << CodeCompletionContext::CCC_UnionTag); in getDeclShowContexts()
311 Contexts |= (1LL << CodeCompletionContext::CCC_ClassOrStructTag); in getDeclShowContexts()
319 Contexts = (1LL << CodeCompletionContext::CCC_Statement) in getDeclShowContexts()
324 Contexts = (1LL << CodeCompletionContext::CCC_ObjCProtocolName); in getDeclShowContexts()
[all …]
/external/clang/tools/libclang/
DCIndexCodeCompletion.cpp296 unsigned long long Contexts; member
329 Contexts(CXCompletionContext_Unknown), in AllocatedCXCodeCompleteResults()
558 AllocatedResults.Contexts = getContextsForContextKind(contextKind, S); in ProcessCodeCompleteResults()
882 return Results->Contexts; in clang_codeCompleteGetContexts()
/external/grpc-grpc-java/core/src/test/java/io/grpc/
DContextsTest.java19 import static io.grpc.Contexts.interceptCall;
20 import static io.grpc.Contexts.statusFromCancelled;
/external/clang/include/clang/Analysis/
DAnalysisContext.h380 llvm::FoldingSet<LocationContext> Contexts; variable
411 ContextMap Contexts; variable
/external/mesa3d/src/glx/apple/
DRELEASE_NOTES49 o Shared Contexts
/external/selinux/secilc/docs/
Dcil_context_statement.md4 Contexts are formed using previously declared parameters and may be named or anonymous where:
/external/skia/modules/canvaskit/
DCHANGELOG.md20 - More public APIs for working with Surfaces/Contexts `GetWebGLContext`,
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp163 DeclContext::Map Contexts; member in llvm::dsymutil::__anon5c7ea04f0111::DeclContextTree
1685 auto ContextIter = Contexts.find(&Key); in getChildDeclContext()
1687 if (ContextIter == Contexts.end()) { in getChildDeclContext()
1693 std::tie(ContextIter, Inserted) = Contexts.insert(NewContext); in getChildDeclContext()
1703 assert(ContextIter != Contexts.end()); in getChildDeclContext()
1766 DeclContextTree &Contexts, in analyzeContextInfo() argument
1793 auto PtrInvalidPair = Contexts.getChildDeclContext( in analyzeContextInfo()
1807 StringPool, Contexts, InImportedModule); in analyzeContextInfo()
/external/libaom/libaom/
Dusage.dox27 \subsection usage_ctxs Contexts
/external/libvpx/libvpx/
Dusage.dox27 \subsection usage_ctxs Contexts
/external/grpc-grpc-java/core/src/main/java/io/grpc/internal/
DClientCallImpl.java23 import static io.grpc.Contexts.statusFromCancelled;
DServerImpl.java21 import static io.grpc.Contexts.statusFromCancelled;

1234567