Searched refs:IsValid (Results 101 - 125 of 457) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBError.cpp140 bool SBError::IsValid() const { function in class:SBError
141 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBError, IsValid);
165 // Be sure to call "IsValid()" before calling this function or it will crash
206 LLDB_REGISTER_METHOD_CONST(bool, SBError, IsValid, ());
H A DSBProcessInfo.cpp51 bool SBProcessInfo::IsValid() const { function in class:SBProcessInfo
52 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBProcessInfo, IsValid);
192 LLDB_REGISTER_METHOD_CONST(bool, SBProcessInfo, IsValid, ());
H A DSBTrace.cpp117 bool SBTrace::IsValid() { function in class:SBTrace
118 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTrace, IsValid);
142 LLDB_REGISTER_METHOD(bool, SBTrace, IsValid, ());
H A DSBTraceOptions.cpp105 bool SBTraceOptions::IsValid() { function in class:SBTraceOptions
106 LLDB_RECORD_METHOD_NO_ARGS(bool, SBTraceOptions, IsValid);
152 LLDB_REGISTER_METHOD(bool, SBTraceOptions, IsValid, ());
H A DSBUnixSignals.cpp60 bool SBUnixSignals::IsValid() const { function in class:SBUnixSignals
61 LLDB_RECORD_METHOD_CONST_NO_ARGS(bool, SBUnixSignals, IsValid);
186 LLDB_REGISTER_METHOD_CONST(bool, SBUnixSignals, IsValid, ());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTypeSummary.h28 bool IsValid();
86 bool IsValid() const;
H A DSBThreadPlan.h38 bool IsValid() const;
78 bool IsValid();
H A DSBBlock.h33 bool IsValid() const;
H A DSBBroadcaster.h30 bool IsValid() const;
H A DSBCompileUnit.h29 bool IsValid() const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGSDNodes.h148 bool IsValid() const { return Node != nullptr; } function in class:llvm::ScheduleDAGSDNodes::RegDefIter
151 assert(IsValid() && "bad iterator");
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h128 if (type.IsValid()) {
141 if (m_type.m_compiler_type.IsValid())
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DUUID.h61 explicit operator bool() const { return IsValid(); }
62 bool IsValid() const { return !m_bytes.empty(); } function in class:lldb_private::UUID
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBBreakpointLocation.i35 IsValid() const;
H A DSBBreakpointName.i45 bool IsValid() const;
H A DSBCompileUnit.i57 IsValid () const;
H A DSBFile.i77 bool IsValid() const;
H A DSBFileSpec.i49 IsValid() const;
H A DSBModuleSpec.i22 IsValid () const;
H A DSBSymbol.i28 IsValid () const;
H A DSBSymbolContext.i58 IsValid () const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DModuleSpec.h104 return (m_arch.IsValid() ? &m_arch : nullptr);
108 return (m_arch.IsValid() ? &m_arch : nullptr);
115 UUID *GetUUIDPtr() { return (m_uuid.IsValid() ? &m_uuid : nullptr); }
118 return (m_uuid.IsValid() ? &m_uuid : nullptr);
169 if (m_arch.IsValid())
171 if (m_uuid.IsValid())
206 if (m_arch.IsValid()) {
213 if (m_uuid.IsValid()) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupPlatform.cpp26 if (platform_arch.IsValid() &&
35 } else if (arch.IsValid()) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DTargetList.cpp85 if (!arch.IsValid()) {
132 if (platform_arch.IsValid()) {
164 if (arch.IsValid()) {
265 if (!prefer_platform_arch && arch.IsValid()) {
271 } else if (platform_arch.IsValid()) {
284 if (!platform_arch.IsValid())
295 if (!m_dummy_target_sp || !m_dummy_target_sp->IsValid()) {
297 if (!arch.IsValid())
330 if (arch.IsValid()) {
339 if (!arch.IsValid())
[all...]
H A DExecutionContext.cpp177 if (m_target_sp && m_target_sp->GetArchitecture().IsValid())
185 if (m_target_sp && m_target_sp->GetArchitecture().IsValid())
382 return ((bool)m_target_sp && m_target_sp->IsValid());
386 return (HasTargetScope() && ((bool)m_process_sp && m_process_sp->IsValid()));
390 return (HasProcessScope() && ((bool)m_thread_sp && m_thread_sp->IsValid()));
569 if (target_sp && !target_sp->IsValid())
576 if (process_sp && !process_sp->IsValid())
588 if (!thread_sp || !thread_sp->IsValid()) {
590 if (process_sp && process_sp->IsValid()) {
600 if (thread_sp && !thread_sp->IsValid())
[all...]

Completed in 124 milliseconds

1234567891011>>