Home
last modified time | relevance | path

Searched refs:IsSynthetic (Results 1 – 18 of 18) sorted by relevance

/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBSymbol.i69 IsSynthetic();
92 …synthetic = property(IsSynthetic, None, doc='''A read only property that returns a boolean value t…
DSBValue.i157 IsSynthetic ();
/openbsd/src/gnu/llvm/lldb/source/API/
DSBSymbol.cpp203 bool SBSymbol::IsSynthetic() { in IsSynthetic() function in SBSymbol
207 return m_opaque_ptr->IsSynthetic(); in IsSynthetic()
DSBValue.cpp815 bool SBValue::IsSynthetic() { in IsSynthetic() function in SBValue
821 return value_sp->IsSynthetic(); in IsSynthetic()
/openbsd/src/gnu/llvm/lldb/include/lldb/API/
DSBSymbol.h100 bool IsSynthetic();
DSBValue.h94 bool IsSynthetic();
/openbsd/src/gnu/llvm/lldb/source/Core/
DValueObject.cpp2164 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2173 if (!root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2182 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2233 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2242 if (!root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2251 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2468 else if (!root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2628 if (!result_sp->IsSynthetic()) { in GetQualifiedRepresentationIfAvailable()
2633 if (result_sp->IsSynthetic()) { in GetQualifiedRepresentationIfAvailable()
2710 } else if (IsSynthetic()) { in Dereference()
DModule.cpp513 if (sc.symbol->IsSynthetic()) { in ResolveSymbolContextForAddress()
528 if (symbol && !symbol->IsSynthetic()) { in ResolveSymbolContextForAddress()
DFormatEntity.cpp699 if (!valobj->IsSynthetic()) { in DumpValue()
/openbsd/src/gnu/llvm/lldb/include/lldb/Core/
DValueObjectSyntheticFilter.h68 bool IsSynthetic() override { return true; } in IsSynthetic() function
DValueObject.h598 virtual bool IsSynthetic() { return false; } in IsSynthetic() function
/openbsd/src/gnu/llvm/lldb/source/DataFormatters/
DDumpValueObjectOptions.cpp30 m_use_synthetic = valobj.IsSynthetic(); in DumpValueObjectOptions()
DValueObjectPrinter.cpp126 if (m_valobj->IsSynthetic()) { in GetMostSpecializedValue()
DFormatManager.cpp548 use_dynamic, valobj.IsSynthetic()); in GetTypeForCache()
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DStackFrameRecognizer.h173 bool IsSynthetic() override { return true; } in IsSynthetic() function
/openbsd/src/gnu/llvm/lldb/include/lldb/Symbol/
DSymbol.h166 bool IsSynthetic() const { return m_is_synthetic; } in IsSynthetic() function
/openbsd/src/gnu/llvm/lldb/source/Symbol/
DSymbol.cpp573 if (!IsSynthetic()) in IsSyntheticWithAutoGeneratedName()
/openbsd/src/gnu/llvm/lldb/tools/lldb-vscode/
DJSONUtils.cpp1062 const bool is_synthetic = v.IsSynthetic(); in CreateVariable()