Home
last modified time | relevance | path

Searched refs:IsEnabled (Results 1 – 25 of 56) sorted by relevance

123

/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DLanguageCategory.cpp39 if (!IsEnabled()) in Get()
93 if (!IsEnabled()) in GetHardcoded()
136 bool LanguageCategory::IsEnabled() { return m_enabled; } in IsEnabled() function in LanguageCategory
H A DTypeCategory.cpp88 if (!IsEnabled() || !IsApplicable(lang)) in Get()
96 if (!IsEnabled() || !IsApplicable(lang)) in Get()
104 if (!IsEnabled() || !IsApplicable(lang)) in Get()
191 if (!IsEnabled() && only_enabled) in AnyMatches()
319 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled")); in GetDescription()
H A DDataVisualization.cpp111 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Enable()
123 if (GetFormatManager().GetCategory(category)->IsEnabled()) in Disable()
136 if (category->IsEnabled()) in Enable()
144 if (category.get() && category->IsEnabled()) in Disable()
H A DTypeCategoryMap.cpp111 if (iter->second->IsEnabled()) in EnableAllCategories()
243 if (pos->second->IsEnabled()) in ForEach()
H A DFormatManager.cpp308 if (!category_sp->IsEnabled()) in GetFormatForType()
332 if (!category_sp->IsEnabled()) in GetSummaryForType()
356 if (!category_sp->IsEnabled()) in GetFilterForType()
380 if (!category_sp->IsEnabled()) in GetSyntheticForType()
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp68 bool BreakpointLocation::IsEnabled() const { in IsEnabled() function in BreakpointLocation
69 if (!m_owner.IsEnabled()) in IsEnabled()
72 return m_options_up->IsEnabled(); in IsEnabled()
393 if (!IsEnabled()) in ShouldStop()
411 if (IsEnabled()) { in BumpHitCount()
419 if (IsEnabled()) { in UndoBumpHitCount()
637 (m_options_up ? m_options_up->IsEnabled() : m_owner.IsEnabled()) in Dump()
H A DWatchpoint.cpp262 return IsEnabled(); in ShouldStop()
355 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel()
363 if (IsEnabled()) { in DumpWithLevel()
392 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled() function in Watchpoint
/freebsd/usr.sbin/ppp/
H A Dlcp.c306 lcp->want_shortseq = IsEnabled(lcp->fsm.bundle->ncp.mp.cfg.shortseq) ? 1 : 0; in lcp_Setup()
307 lcp->want_acfcomp = IsEnabled(lcp->cfg.acfcomp) ? 1 : 0; in lcp_Setup()
313 lcp->want_protocomp = IsEnabled(lcp->cfg.protocomp) ? 1 : 0; in lcp_Setup()
316 if (IsEnabled(lcp->cfg.chap05)) { in lcp_Setup()
320 } else if (IsEnabled(lcp->cfg.chap80nt) || in lcp_Setup()
321 IsEnabled(lcp->cfg.chap80lm)) { in lcp_Setup()
324 } else if (IsEnabled(lcp->cfg.chap81)) { in lcp_Setup()
328 } else if (IsEnabled(lcp->cfg.pap)) { in lcp_Setup()
341 lcp->want_lqrperiod = IsEnabled(lcp->cfg.lqr) ? in lcp_Setup()
480 if (mp->cfg.enddisc.class != 0 && IsEnabled(mp->cfg.negenddisc) && in LcpSendConfigReq()
[all …]
H A Dccp.c186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in ccp_ReportStatus()
303 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in ccp_Required()
359 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpSendConfigReq()
506 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpLayerUp()
540 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in CcpLayerUp()
800 if (IsEnabled(ccp->cfg.neg[f])) { in ccp_SetOpenMode()
H A Dcommand.h60 #define IsEnabled(x) ((x) & NEG_ENABLED) macro
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp514 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
684 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
741 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
769 if (bp_site_sp && bp_site_sp->IsEnabled()) { in CreateStopReasonWithMachException()
853 if (site->IsHardware() && site->IsEnabled()) { in WasContinueInterrupted()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DStoppoint.h27 virtual bool IsEnabled() = 0;
H A DBreakpointSite.h86 bool IsEnabled() const;
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DLanguageCategory.h41 bool IsEnabled();
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaAttr.cpp1285 PragmaFPKind Kind, bool IsEnabled) { in ActOnPragmaFPValueChangingOption() argument
1286 if (IsEnabled) { in ActOnPragmaFPValueChangingOption()
1307 NewFPFeatures.setAllowFPReassociateOverride(IsEnabled); in ActOnPragmaFPValueChangingOption()
1310 NewFPFeatures.setAllowReciprocalOverride(IsEnabled); in ActOnPragmaFPValueChangingOption()
1335 void Sema::ActOnPragmaFEnvAccess(SourceLocation Loc, bool IsEnabled) { in ActOnPragmaFEnvAccess() argument
1337 if (IsEnabled) { in ActOnPragmaFEnvAccess()
1345 NewFPFeatures.setAllowFEnvAccessOverride(IsEnabled); in ActOnPragmaFEnvAccess()
1346 NewFPFeatures.setRoundingMathOverride(IsEnabled); in ActOnPragmaFEnvAccess()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpointExtensions.i50 …enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether thi…
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp154 bool SBWatchpoint::IsEnabled() { in SetEnabled()
161 return watchpoint_sp->IsEnabled(); in IsEnabled()
160 bool SBWatchpoint::IsEnabled() { IsEnabled() function in SBWatchpoint
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBWatchpoint.h57 bool IsEnabled();
H A DSBBreakpointName.h50 bool IsEnabled();
H A DSBBreakpointLocation.h49 bool IsEnabled();
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h45 static bool IsEnabled();
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCommandFlags.cpp628 for (const auto &[Feature, IsEnabled] : sys::getHostCPUFeatures()) in getFeaturesStr()
629 Features.AddFeature(Feature, IsEnabled); in getFeaturesStr()
645 for (const auto &[Feature, IsEnabled] : sys::getHostCPUFeatures()) in getFeatureList()
646 Features.AddFeature(Feature, IsEnabled); in getFeatureList()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCSubtargetInfo.cpp342 auto IsEnabled = [&](const SubtargetFeatureKV &FeatureKV) { in getEnabledProcessorFeatures() local
345 llvm::copy_if(ProcFeatures, std::back_inserter(EnabledFeatures), IsEnabled); in getEnabledProcessorFeatures()
/freebsd/contrib/llvm-project/llvm/lib/Target/
H A DTargetMachineC.cpp366 for (const auto &[Feature, IsEnabled] : sys::getHostCPUFeatures()) in LLVMGetHostCPUFeatures()
367 Features.AddFeature(Feature, IsEnabled); in LLVMGetHostCPUFeatures()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOverBreakpoint.cpp115 if (bp_site_sp && bp_site_sp->IsEnabled()) { in DoWillResume()

123