Home
last modified time | relevance | path

Searched refs:GetBooleanValue (Results 1 – 17 of 17) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/API/
H A DSBStructuredDataTest.cpp31 EXPECT_TRUE(data.GetBooleanValue(true)); in TEST_F()
32 EXPECT_FALSE(data.GetBooleanValue(false)); in TEST_F()
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DStructuredDataImpl.h139 bool GetBooleanValue(bool fail_value = false) const {
140 return (m_data_sp ? m_data_sp->GetBooleanValue(fail_value) : fail_value);
/llvm-project-15.0.7/lldb/source/API/
H A DSBStructuredData.cpp177 bool SBStructuredData::GetBooleanValue(bool fail_value) const { in GetBooleanValue() function in SBStructuredData
180 return m_impl_up->GetBooleanValue(fail_value); in GetBooleanValue()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptedProcessPythonInterface.cpp70 return obj->GetBooleanValue(); in ShouldStop()
161 return obj->GetBooleanValue(); in IsAlive()
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBStructuredData.i49 bool GetBooleanValue(bool fail_value = false) const;
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBStructuredData.h73 bool GetBooleanValue(bool fail_value = false) const;
/llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/
H A DPlatformRemoteGDBServer.cpp740 suppress = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
745 stop = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
750 notify = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOS.cpp549 if (!info_dict->GetValueForKey("no_shared_cache")->GetBooleanValue()) in GetSharedCacheInformation()
554 ->GetBooleanValue()) in GetSharedCacheInformation()
/llvm-project-15.0.7/lldb/test/API/python_api/sbstructureddata/
H A DTestStructuredDataAPI.py165 output = bool_struct.GetBooleanValue()
/llvm-project-15.0.7/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp949 o->GetObjectForDotSeparatedPath("is_write")->GetBooleanValue(); in GenerateThreadName()
951 o->GetObjectForDotSeparatedPath("is_atomic")->GetBooleanValue(); in GenerateThreadName()
957 ->GetBooleanValue()) { in GenerateThreadName()
/llvm-project-15.0.7/lldb/examples/python/scripted_process/
H A Dcrashlog_scripted_process.py62 self.load_all_images = load_all_images.GetBooleanValue()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValue.h254 bool GetBooleanValue(bool fail_value = false) const;
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValue.cpp274 bool OptionValue::GetBooleanValue(bool fail_value) const { in GetBooleanValue() function in OptionValue
H A DOptionValueProperties.cpp296 return value->GetBooleanValue(fail_value); in GetPropertyAtIndexAsBoolean()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DStructuredData.h125 bool GetBooleanValue(bool fail_value = false) {
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Ddecorators.py874 return value_node.GetValueForKey("value").GetBooleanValue(fail_value)
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2026 bool associated = object->GetBooleanValue(); in SetThreadStopInfo()