Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/API/
DSBStructuredData.cpp191 bool SBStructuredData::GetBooleanValue(bool fail_value) const { in GetBooleanValue() function in SBStructuredData
192 LLDB_RECORD_METHOD_CONST(bool, SBStructuredData, GetBooleanValue, (bool), in GetBooleanValue()
195 return (m_impl_up ? m_impl_up->GetBooleanValue(fail_value) : fail_value); in GetBooleanValue()
238 LLDB_REGISTER_METHOD_CONST(bool, SBStructuredData, GetBooleanValue, (bool)); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/Core/
DStructuredDataImpl.h136 bool GetBooleanValue(bool fail_value = false) const {
137 return (m_data_sp ? m_data_sp->GetBooleanValue(fail_value) : fail_value);
/external/llvm-project/lldb/bindings/interface/
DSBStructuredData.i50 bool GetBooleanValue(bool fail_value = false) const;
/external/llvm-project/lldb/include/lldb/API/
DSBStructuredData.h71 bool GetBooleanValue(bool fail_value = false) const;
/external/llvm-project/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
DDynamicLoaderMacOS.cpp489 if (!info_dict->GetValueForKey("no_shared_cache")->GetBooleanValue()) in GetSharedCacheInformation()
494 ->GetBooleanValue()) in GetSharedCacheInformation()
/external/llvm-project/lldb/source/Plugins/Platform/gdb-server/
DPlatformRemoteGDBServer.cpp783 suppress = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
788 stop = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
793 notify = object_sp->GetBooleanValue(); in GetRemoteUnixSignals()
/external/llvm-project/lldb/test/API/python_api/sbstructureddata/
DTestStructuredDataAPI.py168 output = bool_struct.GetBooleanValue()
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
DInstrumentationRuntimeTSan.cpp951 o->GetObjectForDotSeparatedPath("is_write")->GetBooleanValue(); in GenerateThreadName()
953 o->GetObjectForDotSeparatedPath("is_atomic")->GetBooleanValue(); in GenerateThreadName()
959 ->GetBooleanValue()) { in GenerateThreadName()
/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValue.h252 bool GetBooleanValue(bool fail_value = false) const;
/external/llvm-project/lldb/source/Interpreter/
DOptionValue.cpp274 bool OptionValue::GetBooleanValue(bool fail_value) const { in GetBooleanValue() function in OptionValue
DOptionValueProperties.cpp294 return value->GetBooleanValue(fail_value); in GetPropertyAtIndexAsBoolean()
/external/llvm-project/lldb/include/lldb/Utility/
DStructuredData.h125 bool GetBooleanValue(bool fail_value = false) {
/external/llvm-project/lldb/packages/Python/lldbsuite/test/
Ddecorators.py837 have = value_node.GetValueForKey("value").GetBooleanValue(fail_value)
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp2059 bool associated = object->GetBooleanValue(); in SetThreadStopInfo()