Home
last modified time | relevance | path

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

1234

/llvm-project-15.0.7/flang/lib/Common/
H A DFortran-features.cpp19 if (opr == LogicalOperator::Neqv && IsEnabled(LanguageFeature::XOROperator)) { in GetNames()
22 if (IsEnabled(LanguageFeature::LogicalAbbreviations)) { in GetNames()
35 if (IsEnabled(LanguageFeature::XOROperator)) { in GetNames()
61 if (IsEnabled(LanguageFeature::AlternativeNE)) { in GetNames()
/llvm-project-15.0.7/clang/lib/StaticAnalyzer/Frontend/
H A DCheckerRegistry.cpp198 IsEnabledFn IsEnabled);
204 CheckerInfoSet &Ret, IsEnabledFn IsEnabled);
236 auto IsEnabled = [&](const CheckerInfo *Checker) { in initializeRegistry() local
245 collectWeakDependencies(Checker.WeakDependencies, Mgr, Deps, IsEnabled); in initializeRegistry()
264 IsEnabledFn IsEnabled) { in collectStrongDependencies() argument
267 if (!IsEnabled(Dependency)) in collectStrongDependencies()
272 IsEnabled)) in collectStrongDependencies()
284 IsEnabledFn IsEnabled) { in collectWeakDependencies() argument
289 collectWeakDependencies(Dependency->WeakDependencies, Mgr, Ret, IsEnabled); in collectWeakDependencies()
291 if (IsEnabled(Dependency) && in collectWeakDependencies()
[all …]
/llvm-project-15.0.7/lldb/test/API/commands/process/continue_to_bkpt/
H A DTestContinueToBkpts.py43 … self.assertFalse(bkpt.IsEnabled(), "Disabled breakpoints stay disabled: {0}".format(bkpt.GetID()))
45 … self.assertTrue(bkpt.IsEnabled(), "Enabled breakpoints stay enabled: {0}".format(bkpt.GetID()))
53 self.assertTrue(loc.IsEnabled(), "Locations that were enabled stay enabled")
55 self.assertFalse(loc.IsEnabled(), "Locations that were disabled stay disabled")
87 self.assertFalse(loc.IsEnabled(), "Loc {0} wasn't disabled".format(i))
/llvm-project-15.0.7/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 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 DTypeCategory.cpp88 if (!IsEnabled() || !IsApplicable(lang)) in Get()
99 if (!IsEnabled() || !IsApplicable(lang)) in Get()
110 if (!IsEnabled() || !IsApplicable(lang)) in Get()
228 if (!IsEnabled() && only_enabled) in AnyMatches()
465 stream.Printf("%s (%s", GetName(), (IsEnabled() ? "enabled" : "disabled")); in GetDescription()
/llvm-project-15.0.7/lldb/source/Breakpoint/
H A DBreakpointLocation.cpp69 bool BreakpointLocation::IsEnabled() const { in IsEnabled() function in BreakpointLocation
70 if (!m_owner.IsEnabled()) in IsEnabled()
73 return m_options_up->IsEnabled(); in IsEnabled()
400 if (!IsEnabled()) in ShouldStop()
418 if (IsEnabled()) { in BumpHitCount()
426 if (IsEnabled()) { in UndoBumpHitCount()
640 (m_options_up ? m_options_up->IsEnabled() : m_owner.IsEnabled()) in Dump()
H A DWatchpoint.cpp142 return IsEnabled(); in ShouldStop()
195 IsEnabled() ? "enabled" : "disabled", m_watch_read ? "r" : "", in DumpWithLevel()
218 bool Watchpoint::IsEnabled() const { return m_enabled; } in IsEnabled() function in Watchpoint
/llvm-project-15.0.7/lldb/test/API/python_api/hello_world/
H A DTestHelloWorld.py41 self.assertTrue(breakpoint.IsEnabled(),
45 self.assertTrue(not breakpoint.IsEnabled(),
49 self.assertTrue(breakpoint.IsEnabled(),
/llvm-project-15.0.7/lldb/test/API/commands/watchpoints/watchpoint_disable/
H A DTestWatchpointDisable.py53 self.assertTrue(not wp.IsEnabled(), "The watchpoint thinks it is still enabled")
63 self.assertTrue(wp.IsEnabled(), "The watchpoint thinks it is still disabled.")
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp493 if (wp_sp && wp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
509 if (bp_sp && bp_sp->IsEnabled()) { in GetStopInfoForHardwareBP()
607 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
650 if (wp_sp && wp_sp->IsEnabled()) { in CreateStopReasonWithMachException()
683 if (bp_site_sp && bp_site_sp->IsEnabled()) { in CreateStopReasonWithMachException()
/llvm-project-15.0.7/lldb/test/API/python_api/watchpoint/
H A DTestWatchpointIter.py72 self.assertTrue(watchpoint.IsEnabled())
106 self.assertFalse(watchpoint.IsEnabled())
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/
H A DTestBreakpointNames.py179 self.assertTrue(not bkpt.IsEnabled(), "We didn't disable the breakpoint.")
322 … self.assertEqual(protected_bkpt.IsEnabled(), True, "Didnt' keep breakpoint from being disabled")
323 …self.assertEqual(unprotected_bkpt.IsEnabled(), False, "Protected too many breakpoints from disabli…
330 … self.assertEqual(protected_bkpt.IsEnabled(), True, "Didnt' keep breakpoint from being disabled")
331 …self.assertEqual(unprotected_bkpt.IsEnabled(), False, "Protected too many breakpoints from disabli…
/llvm-project-15.0.7/lldb/utils/lui/
H A Dbreakwin.py50 bp.SetEnabled(not bp.IsEnabled())
79 if bp.IsEnabled():
/llvm-project-15.0.7/lldb/tools/debugserver/source/
H A DDNBBreakpoint.h35 bool IsEnabled() const { return m_enabled; } in IsEnabled() function
40 if (IsBreakpoint() && IsEnabled() && !IsHardware()) { in IntersectsRange()
/llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_hit_count/
H A DTestBreakpointHitCount.py66 location1.IsEnabled(),
71 location2.IsEnabled(),
/llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/
H A Dsb_watchpoint.py15 obj.IsEnabled()
H A Dsb_breakpointlocation.py12 obj.IsEnabled()
H A Dsb_breakpoint.py17 obj.IsEnabled()
H A Dsb_breakpointname.py12 obj.IsEnabled()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBBreakpoint.i122 IsEnabled ();
305 …enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether thi…
H A DSBWatchpoint.i60 IsEnabled ();
/llvm-project-15.0.7/lldb/include/lldb/Breakpoint/
H A DStoppoint.h27 virtual bool IsEnabled() = 0;
/llvm-project-15.0.7/lldb/include/lldb/DataFormatters/
H A DLanguageCategory.h41 bool IsEnabled();
/llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/
H A DTestWriteMemory.py23 self.assertTrue(bp.IsEnabled())

1234