Home
last modified time | relevance | path

Searched refs:m_compiler_type (Results 1 – 15 of 15) sorted by relevance

/llvm-project/lldb/source/Symbol/
H A DType.cpp284 m_decl(decl), m_compiler_type(compiler_type), in Type()
326 if (m_compiler_type.IsValid()) { in GetDescription()
391 if (m_compiler_type.IsValid()) { in Dump()
392 *s << ", compiler_type = " << m_compiler_type.GetOpaqueQualType() << ' '; in Dump()
581 if (!m_compiler_type.IsValid()) { in ResolveCompilerType()
589 m_compiler_type = encoding_compiler_type; in ResolveCompilerType()
596 m_compiler_type = in ResolveCompilerType()
601 m_compiler_type = in ResolveCompilerType()
606 m_compiler_type = in ResolveCompilerType()
611 m_compiler_type in ResolveCompilerType()
[all...]
/llvm-project/lldb/source/Core/
H A DValueObjectMemory.cpp
H A DValue.cpp42 Value::Value() : m_value(), m_compiler_type(), m_data_buffer() {} in Value()
45 : m_value(scalar), m_compiler_type(), m_data_buffer() {} in Value()
48 : m_value(), m_compiler_type(), m_value_type(ValueType::HostAddress), in Value()
54 : m_value(v.m_value), m_compiler_type(v.m_compiler_type), in Value()
71 m_compiler_type = rhs.m_compiler_type; in operator =()
240 if (!m_compiler_type.IsValid()) { in GetCompilerType()
251 m_compiler_type = lldb_type->GetForwardCompilerType(); in GetCompilerType()
259 m_compiler_type in GetCompilerType()
[all...]
H A DValueObjectRegister.cpp
H A DValueObjectChild.cpp
/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h161 m_type.m_compiler_type = type->GetForwardCompilerType(); in TypeNameSpecifierImpl()
169 m_type.m_compiler_type = type; in TypeNameSpecifierImpl()
180 if (m_type.m_compiler_type.IsValid()) in GetCompilerType()
181 return m_type.m_compiler_type; in GetCompilerType()
194 CompilerType m_compiler_type; member
H A DValueObjectPrinter.h152 CompilerType m_compiler_type; variable
/llvm-project/lldb/include/lldb/Target/
H A DLanguage.h69 Result(CompilerType type) : m_compiler_type(type) {} in Result()
71 bool IsValid() override { return m_compiler_type.IsValid(); } in IsValid()
75 m_compiler_type.DumpTypeDescription(&stream); in DumpToStream()
85 CompilerType m_compiler_type;
/llvm-project/lldb/include/lldb/Core/
H A DValueObjectChild.h
H A DValueObjectMemory.h
H A DValue.h152 CompilerType m_compiler_type; variable
H A DValueObjectRegister.h
/llvm-project/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp141 m_compiler_type = m_cached_valobj->GetCompilerType(); in SetupMostSpecializedValue()
142 m_type_flags = m_compiler_type.GetTypeInfo(); in SetupMostSpecializedValue()
258 if (m_compiler_type.IsValid()) { in PrintDecl()
428 if (!m_compiler_type.IsValid()) { in PrintValueAndSummaryIfNeeded()
/llvm-project/lldb/include/lldb/Symbol/
H A DType.h587 CompilerType m_compiler_type;
793 CompilerType GetCompilerType() const { return m_compiler_type; } in TypeMemberFunctionImpl()
818 CompilerType m_compiler_type;
551 CompilerType m_compiler_type; global() variable
/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DObjCLanguage.cpp909 : Language::TypeScavenger::Result(), m_compiler_type(type) {} in GetTypeScavenger()
911 bool IsValid() override { return m_compiler_type.IsValid(); } in GetTypeScavenger()
915 m_compiler_type.DumpTypeDescription(&stream); in GetTypeScavenger()
923 CompilerType m_compiler_type; in GetTypeScavenger() member in ObjCLanguage::GetTypeScavenger::ObjCScavengerResult