Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
HDSBSymbol.cpp204 bool SBSymbol::IsSynthetic() { in IsSynthetic() function in SBSymbol
205 LLDB_RECORD_METHOD_NO_ARGS(bool, SBSymbol, IsSynthetic); in IsSynthetic()
208 return m_opaque_ptr->IsSynthetic(); in IsSynthetic()
240 LLDB_REGISTER_METHOD(bool, SBSymbol, IsSynthetic, ()); in RegisterMethods()
HDSBValue.cpp843 bool SBValue::IsSynthetic() { in IsSynthetic() function in SBValue
844 LLDB_RECORD_METHOD_NO_ARGS(bool, SBValue, IsSynthetic); in IsSynthetic()
849 return value_sp->IsSynthetic(); in IsSynthetic()
1614 LLDB_REGISTER_METHOD(bool, SBValue, IsSynthetic, ()); in RegisterMethods()
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
HDSBSymbol.i67 IsSynthetic();
90 …synthetic = property(IsSynthetic, None, doc='''A read only property that returns a boolean value t…
HDSBValue.i157 IsSynthetic ();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/API/
HDSBSymbol.h64 bool IsSynthetic();
HDSBValue.h94 bool IsSynthetic();
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDStackFrameRecognizer.h153 bool IsSynthetic() override { return true; } in IsSynthetic() function
/freebsd-11-stable/contrib/llvm-project/lldb/source/DataFormatters/
HDDumpValueObjectOptions.cpp31 m_use_synthetic = valobj.IsSynthetic(); in DumpValueObjectOptions()
HDValueObjectPrinter.cpp126 if (m_valobj->IsSynthetic()) { in GetMostSpecializedValue()
HDFormatManager.cpp572 use_dynamic, valobj.IsSynthetic()); in GetTypeForCache()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDValueObjectSyntheticFilter.h67 bool IsSynthetic() override { return true; } in IsSynthetic() function
HDValueObject.h584 virtual bool IsSynthetic() { return false; } in IsSynthetic() function
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDValueObject.cpp2325 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2334 if (!root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2343 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2394 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2403 if (!root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2412 if (root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2629 else if (!root->IsSynthetic()) { in GetValueForExpressionPath_Impl()
2804 if (!result_sp->IsSynthetic()) { in GetQualifiedRepresentationIfAvailable()
2809 if (result_sp->IsSynthetic()) { in GetQualifiedRepresentationIfAvailable()
HDModule.cpp502 if (sc.symbol->IsSynthetic()) { in ResolveSymbolContextForAddress()
517 if (symbol && !symbol->IsSynthetic()) { in ResolveSymbolContextForAddress()
HDFormatEntity.cpp711 if (!valobj->IsSynthetic()) { in DumpValue()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Symbol/
HDSymbol.h150 bool IsSynthetic() const { return m_is_synthetic; } in IsSynthetic() function