Home
last modified time | relevance | path

Searched refs:IsAnonymousType (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/type/
H A DTestTypeList.py66 self.assertFalse(type.IsAnonymousType(), "Task is not anonymous")
75 field.type.IsAnonymousType(),
80 field.type.IsAnonymousType(),
85 field.type.IsAnonymousType(),
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i341 ") IsAnonymousType;
343 IsAnonymousType ();
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h132 bool IsAnonymousType();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp260 bool SBType::IsAnonymousType() { in IsAnonymousType() function in SBType
265 return m_opaque_sp->GetCompilerType(true).IsAnonymousType(); in IsAnonymousType()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp37 bool CompilerType::IsAnonymousType() const { in IsAnonymousType() function in CompilerType
39 return m_type_system->IsAnonymousType(m_type); in IsAnonymousType()
H A DTypeSystem.cpp69 bool TypeSystem::IsAnonymousType(lldb::opaque_compiler_type_t type) { in IsAnonymousType() function in TypeSystem
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h85 bool IsAnonymousType() const;
H A DTypeSystem.h143 virtual bool IsAnonymousType(lldb::opaque_compiler_type_t type);
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h550 bool IsAnonymousType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp2823 bool TypeSystemClang::IsAnonymousType(lldb::opaque_compiler_type_t type) { in IsAnonymousType() function in TypeSystemClang
/llvm-project-15.0.7/lldb/source/Target/
H A DStackFrame.cpp594 if (!var_type->GetForwardCompilerType().IsAnonymousType()) in GetValueForVariableExpressionPath()