Home
last modified time | relevance | path

Searched refs:CreateType (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDebugInfo.h150 llvm::DIType *CreateType(const BuiltinType *Ty);
151 llvm::DIType *CreateType(const ComplexType *Ty);
153 llvm::DIType *CreateType(const TypedefType *Ty, llvm::DIFile *Fg);
154 llvm::DIType *CreateType(const TemplateSpecializationType *Ty,
157 llvm::DIType *CreateType(const PointerType *Ty, llvm::DIFile *F);
159 llvm::DIType *CreateType(const FunctionType *Ty, llvm::DIFile *F);
161 llvm::DIType *CreateType(const RecordType *Tyg);
174 llvm::DIType *CreateType(const VectorType *Ty, llvm::DIFile *F);
175 llvm::DIType *CreateType(const ArrayType *Ty, llvm::DIFile *F);
179 llvm::DIType *CreateType(const AtomicType *Ty, llvm::DIFile *F);
[all …]
H A DCGDebugInfo.cpp2887 return CreateType(cast<VectorType>(Ty), Unit); in CreateTypeNode()
2891 return CreateType(cast<ObjCObjectType>(Ty), Unit); in CreateTypeNode()
2897 return CreateType(cast<BuiltinType>(Ty)); in CreateTypeNode()
2899 return CreateType(cast<ComplexType>(Ty)); in CreateTypeNode()
2901 return CreateType(cast<PointerType>(Ty), Unit); in CreateTypeNode()
2905 return CreateType(cast<TypedefType>(Ty), Unit); in CreateTypeNode()
2907 return CreateType(cast<RecordType>(Ty)); in CreateTypeNode()
2912 return CreateType(cast<FunctionType>(Ty), Unit); in CreateTypeNode()
2916 return CreateType(cast<ArrayType>(Ty), Unit); in CreateTypeNode()
2927 return CreateType(cast<AtomicType>(Ty), Unit); in CreateTypeNode()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbAstBuilder.h107 clang::QualType CreateType(PdbTypeSymId type);
H A DSymbolFileNativePDB.h216 lldb::TypeSP CreateType(PdbTypeSymId type_id, CompilerType ct);
H A DPdbAstBuilder.cpp898 clang::QualType PdbAstBuilder::CreateType(PdbTypeSymId type) { in CreateType() function in PdbAstBuilder
961 qt = CreateType(type); in GetOrCreateType()
H A DSymbolFileNativePDB.cpp607 TypeSP SymbolFileNativePDB::CreateType(PdbTypeSymId type_id, CompilerType ct) { in CreateType() function in SymbolFileNativePDB
692 TypeSP result = CreateType(best_decl_id, m_ast->ToCompilerType(qt)); in CreateAndCacheType()