Home
last modified time | relevance | path

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

123456

/external/clang/lib/Format/
DTokenAnnotator.cpp38 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); in AnnotatingParser()
48 Contexts.back().IsExpression = false; in parseAngle()
51 Contexts.back().InTemplateArgument = in parseAngle()
82 Contexts[Contexts.size() - 2].IsExpression && in parseAngle()
98 Contexts.back().ColonIsForRangeExpr = in parseParens()
99 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; in parseParens()
119 Contexts.back().IsExpression = true; in parseParens()
124 Contexts.back().IsExpression = true; in parseParens()
129 Contexts.back().IsExpression = false; in parseParens()
130 } else if (Contexts[Contexts.size() - 2].CaretFound) { in parseParens()
[all …]
/external/clang/lib/Analysis/
DAnalysisDeclContext.cpp85 llvm::DeleteContainerSeconds(Contexts); in clear()
283 AnalysisDeclContext *&AC = Contexts[D]; in getContext()
349 LOC *L = cast_or_null<LOC>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getLocationContext()
353 Contexts.InsertNode(L, InsertPos); in getLocationContext()
367 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getStackFrame()
370 Contexts.InsertNode(L, InsertPos); in getStackFrame()
391 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, in getBlockInvocationContext()
395 Contexts.InsertNode(L, InsertPos); in getBlockInvocationContext()
568 llvm::DeleteContainerSeconds(Contexts); in ~AnalysisDeclContextManager()
578 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), in clear()
[all …]
/external/clang/lib/AST/
DDeclBase.cpp972 DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ in collectAllContexts() argument
973 Contexts.clear(); in collectAllContexts()
976 Contexts.push_back(this); in collectAllContexts()
983 Contexts.push_back(N); in collectAllContexts()
985 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContexts()
1271 SmallVector<DeclContext *, 2> Contexts; in buildLookup() local
1272 collectAllContexts(Contexts); in buildLookup()
1276 for (auto *DC : Contexts) { in buildLookup()
1286 for (auto *DC : Contexts) in buildLookup()
1401 SmallVector<DeclContext *, 2> Contexts; in noload_lookup() local
[all …]
DDecl.cpp1375 ContextsTy Contexts; in printQualifiedName() local
1379 Contexts.push_back(Ctx); in printQualifiedName()
1383 for (ContextsTy::reverse_iterator I = Contexts.rbegin(), E = Contexts.rend(); in printQualifiedName()
/external/libvpx/libvpx/vp8/common/
Dcontext.c17 int Contexts[vp8_coef_counter_dimen];
/external/mesa3d/docs/
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/clang/lib/Frontend/
DASTUnit.cpp274 uint64_t Contexts = 0; in getDeclShowContexts() local
279 Contexts |= (1LL << CodeCompletionContext::CCC_TopLevel) in getDeclShowContexts()
288 Contexts |= (1LL << CodeCompletionContext::CCC_Expression); in getDeclShowContexts()
293 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCMessageReceiver); in getDeclShowContexts()
297 Contexts |= (1LL << CodeCompletionContext::CCC_ObjCInterfaceName); in getDeclShowContexts()
301 Contexts |= (1LL << CodeCompletionContext::CCC_EnumTag); in getDeclShowContexts()
308 Contexts |= (1LL << CodeCompletionContext::CCC_UnionTag); in getDeclShowContexts()
310 Contexts |= (1LL << CodeCompletionContext::CCC_ClassOrStructTag); in getDeclShowContexts()
318 Contexts = (1LL << CodeCompletionContext::CCC_Statement) in getDeclShowContexts()
323 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()
892 return Results->Contexts; in clang_codeCompleteGetContexts()
/external/clang/include/clang/Analysis/
DAnalysisContext.h376 llvm::FoldingSet<LocationContext> Contexts; variable
407 ContextMap Contexts; variable
/external/mesa3d/src/glx/apple/
DRELEASE_NOTES49 o Shared Contexts
/external/clang/lib/Serialization/
DASTReader.cpp6588 ArrayRef<const DeclContext *> Contexts; member in __anon546a9c040b11::DeclContextNameLookupVisitor
6595 ArrayRef<const DeclContext *> Contexts, in DeclContextNameLookupVisitor() argument
6599 : Reader(Reader), Contexts(Contexts), Name(Name), Decls(Decls), in DeclContextNameLookupVisitor()
6610 for (auto *DC : This->Contexts) { in visit()
6696 SmallVector<const DeclContext *, 2> Contexts; in FindExternalVisibleDeclsByName() local
6697 Contexts.push_back(DC); in FindExternalVisibleDeclsByName()
6703 Contexts.push_back(cast<DeclContext>(GetDecl(Merged->second[I]))); in FindExternalVisibleDeclsByName()
6707 auto LookUpInContexts = [&](ArrayRef<const DeclContext*> Contexts) { in FindExternalVisibleDeclsByName() argument
6708 DeclContextNameLookupVisitor Visitor(*this, Contexts, Name, Decls, DeclSet); in FindExternalVisibleDeclsByName()
6713 if (Contexts.size() == 1 && in FindExternalVisibleDeclsByName()
[all …]
/external/libvpx/libvpx/
Dusage.dox27 \subsection usage_ctxs Contexts
/external/clang/include/clang/AST/
DDeclBase.h1346 void collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts);
/external/libxml2/os400/libxmlrpg/
Dvalid.rpgle353 * Allocate/Release Validation Contexts
/external/srtp/doc/
Drfc3711.txt47 3.2. SRTP Cryptographic Contexts. . . . . . . . . . . . . . . 7
50 3.2.3. Mapping SRTP Packets to Cryptographic Contexts . 10
378 3.2. SRTP Cryptographic Contexts
534 3.2.3. Mapping SRTP Packets to Cryptographic Contexts
/external/llvm/bindings/ocaml/llvm/
Dllvm.ml307 (*===-- Contexts ----------------------------------------------------------===*)
Dllvm.mli401 (** {6 Contexts} *)
/external/clang/docs/
DInternalsManual.rst1147 Lexical and Semantic Contexts
1185 Transparent Declaration Contexts
1291 Multiply-Defined Declaration Contexts
/external/selinux/policycoreutils/po/
Dcs.po3790 msgid "File Contexts file"
Dsi_LK.po3786 msgid "File Contexts file"
Dlo.po3786 msgid "File Contexts file"
Dtl.po3786 msgid "File Contexts file"
Dms_MY.po3786 msgid "File Contexts file"
Daln.po3786 msgid "File Contexts file"

123456