Home
last modified time | relevance | path

Searched refs:IsActive (Results 1 – 25 of 38) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DDescriptor.cpp85 bool IsMutable, bool IsVolatile, bool IsActive, in ctorArrayDesc() argument
102 Desc->IsActive = IsActive; in ctorArrayDesc()
110 Fn(B, ElemLoc, Desc->IsConst, Desc->IsFieldMutable, IsVolatile, IsActive, in ctorArrayDesc()
153 bool IsVolatile, bool IsActive, bool IsUnionField, in initField() argument
160 Desc->IsActive = IsActive && !IsUnionField; in initField()
168 Desc->IsVolatile, Desc->IsActive, InUnion || D->isUnion(), D); in initField()
172 bool IsVolatile, bool IsActive, bool InUnion, in initBase() argument
185 Desc->IsActive = IsActive && !InUnion; in initBase()
192 initBase(B, Ptr + FieldOffset, IsConst, IsMutable, IsVolatile, IsActive, in initBase()
195 initField(B, Ptr + FieldOffset, IsConst, IsMutable, IsVolatile, IsActive, in initBase()
[all …]
H A DDescriptor.h36 bool IsMutable, bool IsVolatile, bool IsActive,
97 unsigned IsActive : 1;
116 IsBase(false), IsActive(false), IsFieldMutable(false), in InlineDescriptor()
H A DDynamicAllocator.cpp81 ID->IsActive = true; in allocate()
H A DPointer.cpp506 P.getInlineDesc()->IsActive = true; in activate()
511 P.getInlineDesc()->IsActive = false; in activate()
516 if (FieldPtr.getInlineDesc()->IsActive) in activate()
H A DEvalEmitter.cpp107 Desc.IsActive = true; in createLocal()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DInstrumentationRuntime.h62 void SetActive(bool IsActive) { m_is_active = IsActive; } in SetActive() argument
86 bool IsActive() const { return m_is_active; } in IsActive() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64TargetStreamer.cpp179 if (SubSection.IsActive) { in getActiveAttributesSubsection()
211 if (!SubSection.IsActive) { in emitAttribute()
244 SubSection.IsActive = true; in activateAttributesSubsection()
246 SubSection.IsActive = false; in activateAttributesSubsection()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DInstrumentationRuntime.cpp44 if (IsActive()) in ModulesDidLoad()
63 if (!IsActive()) in ModulesDidLoad()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.cpp572 llvm::Value *IsActive in EmitCleanup() local
574 CGF.Builder.CreateCondBr(IsActive, CleanupBB, ContBB); in EmitCleanup()
666 bool IsActive = Scope.isActive(); in PopCleanupBlock() local
693 FallthroughSource != nullptr && (IsActive || HasExistingBranches); in PopCleanupBlock()
722 assert(!IsActive); in PopCleanupBlock()
845 assert(!IsActive && "source without fallthrough for active cleanup"); in PopCleanupBlock()
894 assert(!BranchThroughDest || !IsActive); in PopCleanupBlock()
991 assert(!IsActive); in PopCleanupBlock()
1064 if (EHActiveFlag.isValid() || IsActive) { in PopCleanupBlock()
H A DCGCleanup.h84 unsigned IsActive : 1;
357 CleanupBits.IsActive = true;
386 bool isActive() const { return CleanupBits.IsActive; }
387 void setActive(bool A) { CleanupBits.IsActive = A; }
/freebsd/cddl/usr.sbin/zfsd/
H A Dcallout.h93 bool IsActive() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
H A DInstrumentationRuntimeASanLibsanitizers.cpp86 if (IsActive()) in Activate()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAPINotes.cpp35 unsigned IsActive : 1; member
40 : Version(Version), IsActive(Active == IsActive_t::Active), in VersionedInfoMetadata()
69 if (!metadata.IsActive) in applyAPINotesType()
103 if (!metadata.IsActive) in applyNullability()
144 if (Metadata.IsActive) { in handleAPINotedAttribute()
572 if (Metadata.IsActive && !Info.ResultType.empty() && in ProcessAPINotes()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DBlockFrequencyInfoImpl.h1441 auto IsActive = BitVector(Freq.size(), false);
1446 IsActive[I] = true;
1455 IsActive[I] = false;
1477 IsActive[I] = true;
1479 if (!IsActive[Succ]) {
1481 IsActive[Succ] = true;
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCELFStreamer.h106 bool IsActive; member
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBCommandInterpreter.h277 bool IsActive();
H A DSBDebugger.h41 bool IsActive() const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp80 if (IsActive())
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.cpp188 if (IsActive()) in Activate()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp140 bool SBCommandInterpreter::IsActive() { in IsActive() function in SBCommandInterpreter
143 return (IsValid() ? m_opaque_ptr->IsActive() : false); in IsActive()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DDiagnostic.h1251 mutable bool IsActive = false; variable
1266 IsActive = false; in Clear()
1271 bool isActive() const { return IsActive; } in isActive()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp246 if (IsActive()) in Activate()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp778 DiagLoc(DiagLoc), DiagID(DiagID), IsActive(true) { in DiagnosticBuilder()
791 IsActive = D.IsActive; in DiagnosticBuilder()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h79 bool IsActive() { return m_active && !m_done; } in IsActive() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h564 bool IsActive();

12