| /llvm-project-15.0.7/clang-tools-extra/clang-tidy/readability/ |
| H A D | IdentifierNamingCheck.h | 122 FileStyle() : IsActive(false), IgnoreMainLikeFunctions(false) {} in FileStyle() 126 IsActive(true), IgnoreMainLikeFunctions(IgnoreMainLike) {} in FileStyle() 129 assert(IsActive); in getStyles() 134 assert(IsActive); in getHNOption() 138 bool isActive() const { return IsActive; } in isActive() 144 bool IsActive; member
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | InstrumentationRuntime.h | 62 void SetActive(bool IsActive) { m_is_active = IsActive; } in SetActive() argument 86 bool IsActive() const { return m_is_active; } in IsActive() function
|
| /llvm-project-15.0.7/clang/lib/AST/Interp/ |
| H A D | Descriptor.cpp | 57 bool IsActive, Descriptor *D) { in ctorArrayDesc() argument 73 Desc->IsActive = IsActive; in ctorArrayDesc() 77 Fn(B, ElemLoc, Desc->IsConst, Desc->IsMutable, IsActive, D->ElemDesc); in ctorArrayDesc() 118 bool IsActive, Descriptor *D) { in ctorRecord() argument 126 Desc->IsActive = IsActive && !IsUnion; in ctorRecord() 130 Fn(B, Ptr + SubOff, Desc->IsConst, Desc->IsMutable, Desc->IsActive, F); in ctorRecord()
|
| H A D | Descriptor.h | 32 bool IsMutable, bool IsActive, 178 unsigned IsActive : 1; member
|
| H A D | Pointer.cpp | 180 getInlineDesc()->IsActive = true; in activate()
|
| H A D | Pointer.h | 239 bool isActive() const { return Base == 0 || getInlineDesc()->IsActive; } in isActive()
|
| /llvm-project-15.0.7/openmp/libomptarget/DeviceRTL/src/ |
| H A D | Kernel.cpp | 44 bool IsActive = __kmpc_kernel_parallel(&WorkFn); in genericStateMachine() local 51 if (IsActive) { in genericStateMachine()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CGCleanup.h | 73 unsigned IsActive : 1; variable 296 CleanupBits.IsActive = true; in EHCleanupScope() 317 bool isActive() const { return CleanupBits.IsActive; } in isActive() 318 void setActive(bool A) { CleanupBits.IsActive = A; } in setActive()
|
| H A D | CGCleanup.cpp | 580 llvm::Value *IsActive in EmitCleanup() local 582 CGF.Builder.CreateCondBr(IsActive, CleanupBB, ContBB); in EmitCleanup() 666 bool IsActive = Scope.isActive(); in PopCleanupBlock() local 692 bool HasFallthrough = (FallthroughSource != nullptr && IsActive); in PopCleanupBlock() 717 if (Scope.isNormalCleanup() && HasPrebranchedFallthrough && !IsActive) { in PopCleanupBlock() 829 assert(!IsActive && "source without fallthrough for active cleanup"); in PopCleanupBlock() 873 assert(!BranchThroughDest || !IsActive); in PopCleanupBlock() 969 assert(!IsActive); in PopCleanupBlock() 1039 if (EHActiveFlag.isValid() || IsActive) { in PopCleanupBlock()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | InstrumentationRuntime.cpp | 44 if (IsActive()) in ModulesDidLoad()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBCommandInterpreter.i | 170 IsActive ();
|
| /llvm-project-15.0.7/clang/include/clang/Basic/ |
| H A D | Diagnostic.h | 1277 mutable bool IsActive = false; variable 1287 IsActive(true) { in DiagnosticBuilder() 1300 IsActive = false; in Clear() 1305 bool isActive() const { return IsActive; } in isActive() 1334 IsActive = D.IsActive; in DiagnosticBuilder()
|
| /llvm-project-15.0.7/llvm/include/llvm/Analysis/ |
| H A D | BlockFrequencyInfoImpl.h | 1454 auto IsActive = BitVector(Freq.size(), false); 1459 IsActive[I] = true; 1468 IsActive[I] = false; 1490 IsActive[I] = true; 1492 if (!IsActive[Succ]) { 1494 IsActive[Succ] = true;
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBCommandInterpreter.h | 230 bool IsActive();
|
| H A D | SBDebugger.h | 31 bool IsActive() const;
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
| H A D | InstrumentationRuntimeASan.cpp | 279 if (IsActive()) in Activate()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBCommandInterpreter.cpp | 127 bool SBCommandInterpreter::IsActive() { in IsActive() function in SBCommandInterpreter 130 return (IsValid() ? m_opaque_ptr->IsActive() : false); in IsActive()
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
| H A D | InstrumentationRuntimeMainThreadChecker.cpp | 187 if (IsActive()) in Activate()
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
| H A D | InstrumentationRuntimeUBSan.cpp | 248 if (IsActive()) in Activate()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 88 bool IsActive() { return m_active && !m_done; } in IsActive() function
|
| /llvm-project-15.0.7/lldb/include/lldb/Interpreter/ |
| H A D | CommandInterpreter.h | 530 bool IsActive();
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | IOHandler.cpp | 565 while (IsActive()) { in Run()
|
| H A D | IOHandlerCursesGUI.cpp | 755 if (IsActive()) in DrawTitleBox() 882 } else if (IsActive()) { in GetActiveWindow() 913 bool IsActive() const { in IsActive() function in curses::Window 2669 DrawSubmitHint(window, window.IsActive()); in WindowDelegateDraw() 4724 window.IsActive(); in Draw() 5803 bool window_is_active = window.IsActive(); in DisplayRows()
|
| /llvm-project-15.0.7/clang/lib/Driver/ |
| H A D | Driver.cpp | 2763 bool IsActive = false; member in __anon7f4eb1310a11::OffloadingActionBuilder::CudaActionBuilderBase 2802 IsActive = false; in addDeviceDepences() 2807 IsActive = true; in addDeviceDepences() 2872 IsActive = true; in addDeviceDepences() 2876 return IsActive ? ABRT_Success : ABRT_Inactive; in addDeviceDepences() 3062 if (!IsActive) in getDeviceDependences() 3212 if (!IsActive) in getDeviceDependences()
|
| /llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
| H A D | InstrumentationRuntimeTSan.cpp | 892 if (IsActive()) in Activate()
|