| /llvm-project-15.0.7/clang/tools/libclang/ |
| H A D | CIndexCodeCompletion.cpp | 387 unsigned long long contexts = 0; in getContextsForContextKind() local 392 contexts = CXCompletionContext_MacroName; in getContextsForContextKind() 399 contexts = CXCompletionContext_AnyType | in getContextsForContextKind() 411 contexts = CXCompletionContext_AnyType | in getContextsForContextKind() 424 contexts = CXCompletionContext_AnyValue; in getContextsForContextKind() 464 contexts = CXCompletionContext_EnumTag | in getContextsForContextKind() 469 contexts = CXCompletionContext_UnionTag | in getContextsForContextKind() 484 contexts = CXCompletionContext_Namespace; in getContextsForContextKind() 509 contexts = CXCompletionContext_AnyType | in getContextsForContextKind() 554 contexts = CXCompletionContext_Unknown; in getContextsForContextKind() [all …]
|
| /llvm-project-15.0.7/llvm/tools/llvm-diff/lib/ |
| H A D | DiffConsumer.cpp | 71 unsigned N = contexts.size(); in printValue() 74 DiffContext &ctxt = contexts[N]; in printValue() 93 if (contexts.empty()) return; in header() 95 I = contexts.begin(), E = contexts.end(); I != E; ++I) { in header() 138 contexts.clear(); in reset() 148 contexts.push_back(DiffContext(L, R)); in enterContext() 153 Differences |= contexts.back().Differences; in exitContext() 154 contexts.pop_back(); in exitContext()
|
| H A D | DiffConsumer.h | 69 SmallVector<DiffContext, 5> contexts; variable
|
| /llvm-project-15.0.7/clang/test/Index/ |
| H A D | complete-member-access.m | 48 // CHECK-CC1: Completion contexts: 56 // CHECK-CC2: Completion contexts: 66 // CHECK-CC3: Completion contexts:
|
| H A D | complete-natural.m | 14 // CHECK-CC1: Completion contexts:
|
| H A D | complete-objc-message.m | 207 // CHECK-CC1: Completion contexts: 216 // CHECK-CC2: Completion contexts:
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 241 SymbolContextList contexts; in GetPrintForDebuggerAddr() local 245 eSymbolTypeCode, contexts); in GetPrintForDebuggerAddr() 246 if (contexts.IsEmpty()) { in GetPrintForDebuggerAddr() 248 eSymbolTypeCode, contexts); in GetPrintForDebuggerAddr() 249 if (contexts.IsEmpty()) in GetPrintForDebuggerAddr() 253 contexts.GetContextAtIndex(0, context); in GetPrintForDebuggerAddr()
|
| /llvm-project-15.0.7/llvm/test/MC/AsmParser/ |
| H A D | dot-symbol.s | 2 # arbitrary contexts. We don't support this in general.
|
| /llvm-project-15.0.7/clang/tools/c-index-test/ |
| H A D | c-index-test.c | 2594 if (contexts == CXCompletionContext_Unknown) { in print_completion_contexts() 2597 if (contexts & CXCompletionContext_AnyType) { in print_completion_contexts() 2600 if (contexts & CXCompletionContext_AnyValue) { in print_completion_contexts() 2621 if (contexts & CXCompletionContext_EnumTag) { in print_completion_contexts() 2624 if (contexts & CXCompletionContext_UnionTag) { in print_completion_contexts() 2627 if (contexts & CXCompletionContext_StructTag) { in print_completion_contexts() 2630 if (contexts & CXCompletionContext_ClassTag) { in print_completion_contexts() 2633 if (contexts & CXCompletionContext_Namespace) { in print_completion_contexts() 2657 if (contexts & CXCompletionContext_MacroName) { in print_completion_contexts() 2744 unsigned long long contexts; in perform_code_completion() local [all …]
|
| /llvm-project-15.0.7/lldb/test/Shell/Unwind/ |
| H A D | trap_frame_sym_ctx.test | 1 # Test that symbol contexts for trap handler frames are set correctly even when
|
| /llvm-project-15.0.7/clang/test/SemaObjCXX/ |
| H A D | arc-ppe.mm | 3 // Make sure the ARC auto-deduction of id* in unevaluated contexts
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 546 SymbolContextList contexts; in GetExceptionObjectForThread() local 550 ConstString("__cxa_current_exception_type"), eSymbolTypeCode, contexts); in GetExceptionObjectForThread() 551 contexts.GetContextAtIndex(0, context); in GetExceptionObjectForThread()
|
| /llvm-project-15.0.7/mlir/lib/TableGen/ |
| H A D | CMakeLists.txt | 7 # libMLIR.so in some contexts (see unittests/Tablegen, for instance, which
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/bugprone/ |
| H A D | dynamic-static-initializers.rst | 9 This can pose problems in certain multithreaded contexts. For example,
|
| /llvm-project-15.0.7/llvm/docs/ |
| H A D | DirectXUsage.rst | 8 demonstration contexts.
|
| /llvm-project-15.0.7/mlir/docs/Dialects/ |
| H A D | MemRef.md | 36 in affine contexts. This allows powerful static analysis and transformations in
|
| /llvm-project-15.0.7/llvm/test/CodeGen/AMDGPU/ |
| H A D | cross-block-use-is-not-abi-copy.ll | 5 ; split the types for copyToRegs/copyFromRegs in all contexts. This 19 ; contexts.
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | pass-by-value.rst | 124 contexts; templated constructors, constructors in class templates, constructors
|
| /llvm-project-15.0.7/llvm/test/tools/llvm-profgen/ |
| H A D | cs-preinline.test | 28 ; Test preInlined flat is set when converted from a text profile that has "ShouldInline" contexts.
|
| /llvm-project-15.0.7/clang/docs/ |
| H A D | PCHInternals.rst | 285 Declaration contexts provide the mechanism to perform name lookup within a 308 de-serialized. For large declaration contexts (e.g., the translation unit), 309 this operation is expensive; however, large declaration contexts are not 312 traverse declaration contexts for structs, classes, unions, and 313 enumerations, although those contexts contain relatively few declarations in
|
| H A D | InternalsManual.rst | 1288 * Name lookup tables in declaration contexts change after the namespace 1577 Declaration contexts 1613 number of declarations) or hash table (for declaration contexts with more 1677 Each declaration has two potentially different declaration contexts: a 1683 most declarations, the two contexts are identical. For example: 1715 In C and C++, there are several contexts in which names that are logically 1758 *transparent* declaration contexts (see 1765 contexts can be nested). 1854 DeclContext, one can obtain the set of declaration contexts that are 2164 following contexts: [all …]
|
| /llvm-project-15.0.7/llvm/test/TableGen/ |
| H A D | DefaultOpsGlobalISel.td | 176 // Same instruction is used in two different pattern contexts, one
|
| /llvm-project-15.0.7/llvm/test/Transforms/Attributor/ |
| H A D | cb_range_enabled.ll | 65 ; for now, call site contexts are not on by default anyway (yet).
|
| /llvm-project-15.0.7/llvm/test/MC/ARM/ |
| H A D | ldr-pseudo-darwin.s | 130 @ Check for correct usage in other contexts
|
| H A D | ldr-pseudo.s | 130 @ Check for correct usage in other contexts
|