| /llvm-project-15.0.7/flang/lib/Common/ |
| H A D | Fortran-features.cpp | 19 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 D | CheckerRegistry.cpp | 198 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 D | TestContinueToBkpts.py | 43 … 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 D | LanguageCategory.cpp | 39 if (!IsEnabled()) in Get() 93 if (!IsEnabled()) in GetHardcoded() 136 bool LanguageCategory::IsEnabled() { return m_enabled; } in IsEnabled() function in LanguageCategory
|
| H A D | DataVisualization.cpp | 111 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 D | TypeCategory.cpp | 88 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 D | BreakpointLocation.cpp | 69 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 D | Watchpoint.cpp | 142 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 D | TestHelloWorld.py | 41 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 D | TestWatchpointDisable.py | 53 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 D | StopInfoMachException.cpp | 493 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 D | TestWatchpointIter.py | 72 self.assertTrue(watchpoint.IsEnabled()) 106 self.assertFalse(watchpoint.IsEnabled())
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/breakpoint/breakpoint_names/ |
| H A D | TestBreakpointNames.py | 179 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 D | breakwin.py | 50 bp.SetEnabled(not bp.IsEnabled()) 79 if bp.IsEnabled():
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/ |
| H A D | DNBBreakpoint.h | 35 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 D | TestBreakpointHitCount.py | 66 location1.IsEnabled(), 71 location2.IsEnabled(),
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_watchpoint.py | 15 obj.IsEnabled()
|
| H A D | sb_breakpointlocation.py | 12 obj.IsEnabled()
|
| H A D | sb_breakpoint.py | 17 obj.IsEnabled()
|
| H A D | sb_breakpointname.py | 12 obj.IsEnabled()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBBreakpoint.i | 122 IsEnabled (); 305 …enabled = property(IsEnabled, SetEnabled, doc='''A read/write property that configures whether thi…
|
| H A D | SBWatchpoint.i | 60 IsEnabled ();
|
| /llvm-project-15.0.7/lldb/include/lldb/Breakpoint/ |
| H A D | Stoppoint.h | 27 virtual bool IsEnabled() = 0;
|
| /llvm-project-15.0.7/lldb/include/lldb/DataFormatters/ |
| H A D | LanguageCategory.h | 41 bool IsEnabled();
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/gdb_remote_client/ |
| H A D | TestWriteMemory.py | 23 self.assertTrue(bp.IsEnabled())
|