Home
last modified time | relevance | path

Searched refs:typedef_type (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/lang/cpp/typedef/
H A DTestCppTypedef.py33 typedef_type = expr_result.GetType()
34 self.assertTrue(typedef_type.IsValid())
35 self.assertTrue(typedef_type.IsTypedefType())
38 typedefed_type = typedef_type.GetTypedefedType()
50 typedef_type = expr_result.GetType()
51 self.assertTrue(typedef_type.IsValid())
52 self.assertTrue(typedef_type.IsTypedefType())
55 typedefed_type = typedef_type.GetTypedefedType()
/llvm-project-15.0.7/clang/test/CXX/module/module.interface/
H A Dp7.cpp19 typedef int typedef_type; typedef
51 typename decltype(reachable)::typedef_type g; in test()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DNameSearchContext.cpp150 if (const TypedefType *typedef_type = in AddTypeDecl() local
152 TypedefNameDecl *typedef_name_decl = typedef_type->getDecl(); in AddTypeDecl()
/llvm-project-15.0.7/lldb/unittests/SymbolFile/PDB/
H A DSymbolFilePDBTests.cpp540 lldb::TypeSP typedef_type = results.GetTypeAtIndex(0); in TEST_F() local
541 EXPECT_EQ(ConstString(Typedef), typedef_type->GetName()); in TEST_F()
542 CompilerType compiler_type = typedef_type->GetFullCompilerType(); in TEST_F()
551 typedef_type->GetByteSize(nullptr)); in TEST_F()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DType.cpp395 Type *typedef_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetTypedefType() local
396 if (typedef_type) in GetTypedefType()
397 type_sp = typedef_type->shared_from_this(); in GetTypedefType()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp488 CompilerType typedef_type = type.CreateTypedef( in TEST_F() local
494 .getAutoType(ClangUtil::GetCanonicalQualType(typedef_type), in TEST_F()
500 for (CompilerType t : {type, typedef_type, auto_type}) { in TEST_F()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3785 if (const auto *typedef_type = qual_type->getAs<clang::TypedefType>()) { in GetTypeName() local
3786 const clang::TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in GetTypeName()
4650 const clang::TypedefType *typedef_type = llvm::dyn_cast<clang::TypedefType>( in GetTypedefedType() local
4652 if (typedef_type) in GetTypedefedType()
4653 return GetType(typedef_type->getDecl()->getUnderlyingType()); in GetTypedefedType()
7295 const clang::TypedefType *typedef_type = in GetAsTypedefDecl() local
7297 if (typedef_type) in GetAsTypedefDecl()
7298 return typedef_type->getDecl(); in GetAsTypedefDecl()
9186 auto *typedef_type = qual_type->getAs<clang::TypedefType>(); in DumpTypeDescription() local
9187 if (!typedef_type) in DumpTypeDescription()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1496 else if (auto typedef_type = in FindTypesByRegex() local
1498 type_name = typedef_type->getName(); in FindTypesByRegex()