/external/llvm-project/lldb/source/Symbol/ |
D | Type.cpp | 115 m_type_list.Append(TypeImplSP(new TypeImpl(type))); in operator ()() 808 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp) in TypeImpl() function in TypeImpl 813 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl() function in TypeImpl 818 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic) in TypeImpl() function in TypeImpl 823 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl() function in TypeImpl 829 void TypeImpl::SetType(const lldb::TypeSP &type_sp) { in SetType() 840 void TypeImpl::SetType(const CompilerType &compiler_type) { in SetType() 845 void TypeImpl::SetType(const lldb::TypeSP &type_sp, in SetType() 851 void TypeImpl::SetType(const CompilerType &compiler_type, in SetType() 858 bool TypeImpl::CheckModule(lldb::ModuleSP &module_sp) const { in CheckModule() [all …]
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Type.h | 238 class TypeImpl { 240 TypeImpl() = default; 242 ~TypeImpl() {} in ~TypeImpl() 244 TypeImpl(const lldb::TypeSP &type_sp); 246 TypeImpl(const CompilerType &compiler_type); 248 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic); 250 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic); 260 bool operator==(const TypeImpl &rhs) const; 262 bool operator!=(const TypeImpl &rhs) const; 276 TypeImpl GetPointerType() const; [all …]
|
/external/llvm-project/lldb/source/API/ |
D | SBType.cpp | 32 : m_opaque_sp(new TypeImpl( in SBType() 36 : m_opaque_sp(new TypeImpl(type_sp)) {} in SBType() 95 TypeImpl &SBType::ref() { in ref() 97 m_opaque_sp = std::make_shared<TypeImpl>(); in ref() 101 const TypeImpl &SBType::ref() const { in ref() 172 SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointerType())))); in GetPointerType() 181 SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetPointeeType())))); in GetPointeeType() 190 SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetReferenceType())))); in GetReferenceType() 199 SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetTypedefedType())))); in GetTypedefedType() 208 SBType(TypeImplSP(new TypeImpl(m_opaque_sp->GetDereferencedType())))); in GetDereferencedType() [all …]
|
D | SBValue.cpp | 402 type_sp = std::make_shared<TypeImpl>(value_sp->GetTypeImpl()); in GetType()
|
/external/llvm-project/clang/test/Parser/ |
D | DelayedTemplateParsing.cpp | 118 struct TypeImpl { struct 127 struct TypeImpl<Config>::BitsetType { 134 TypeImpl<HeapTypeConfig>::Any(); in f()
|
/external/clang/test/Parser/ |
D | DelayedTemplateParsing.cpp | 134 struct TypeImpl { struct 143 struct TypeImpl<Config>::BitsetType { 150 TypeImpl<HeapTypeConfig>::Any(); in f()
|
/external/oj-libjdwp/src/share/classes/com/sun/tools/jdi/ |
D | TypeImpl.java | 30 public abstract class TypeImpl extends MirrorImpl implements Type class 34 TypeImpl(VirtualMachine vm) in TypeImpl() method in TypeImpl
|
D | PrimitiveTypeImpl.java | 30 abstract class PrimitiveTypeImpl extends TypeImpl implements PrimitiveType {
|
D | VoidTypeImpl.java | 30 public class VoidTypeImpl extends TypeImpl implements VoidType {
|
D | ReferenceTypeImpl.java | 33 public abstract class ReferenceTypeImpl extends TypeImpl
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | ValueObjectDynamicValue.h | 83 TypeImpl GetTypeImpl() override; 122 TypeImpl m_type_impl;
|
D | ValueObject.h | 356 virtual TypeImpl GetTypeImpl();
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBType.h | 210 lldb_private::TypeImpl &ref(); 212 const lldb_private::TypeImpl &ref() const;
|
/external/llvm-project/lldb/source/Core/ |
D | ValueObjectDynamicValue.cpp | 63 TypeImpl ValueObjectDynamicValue::GetTypeImpl() { in GetTypeImpl() 183 TypeImpl(m_parent->GetCompilerType(), in UpdateValue()
|
D | ValueObject.cpp | 312 TypeImpl ValueObject::GetTypeImpl() { return TypeImpl(GetCompilerType()); } in GetTypeImpl()
|
/external/llvm-project/lldb/include/lldb/ |
D | lldb-forward.h | 241 class TypeImpl; variable 443 typedef std::shared_ptr<lldb_private::TypeImpl> TypeImplSP;
|