Home
last modified time | relevance | path

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

/external/rust/crates/bindgen/src/ir/
Dfunction.rs479 Item::builtin_type(TypeKind::Pointer(class), false, ctx); in from_ty()
482 let void = Item::builtin_type(TypeKind::Void, false, ctx); in from_ty()
484 Item::builtin_type(TypeKind::Pointer(void), false, ctx); in from_ty()
502 let void = Item::builtin_type(TypeKind::Void, false, ctx); in from_ty()
503 Item::builtin_type(TypeKind::Pointer(void), false, ctx) in from_ty()
Dvar.rs270 let char_ty = Item::builtin_type( in parse()
292 let ty = Item::builtin_type(type_kind, true, ctx); in parse()
Ditem.rs1269 fn builtin_type( in builtin_type() method
/external/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
DPDBASTParser.cpp489 CompilerType builtin_type; in CreateLLDBTypeFromPDBType() local
491 builtin_type = GetBuiltinTypeForPDBEncodingAndBitSize( in CreateLLDBTypeFromPDBType()
494 builtin_type = m_ast.GetBasicType(eBasicTypeInt); in CreateLLDBTypeFromPDBType()
502 builtin_type, isScoped); in CreateLLDBTypeFromPDBType()
685 auto *builtin_type = llvm::dyn_cast<PDBSymbolTypeBuiltin>(&type); in CreateLLDBTypeFromPDBType() local
686 assert(builtin_type); in CreateLLDBTypeFromPDBType()
687 PDB_BuiltinType builtin_kind = builtin_type->getBuiltinType(); in CreateLLDBTypeFromPDBType()
692 if (uint64_t size = builtin_type->getLength()) in CreateLLDBTypeFromPDBType()
696 m_ast, *builtin_type, encoding, bytes.getValueOr(0) * 8); in CreateLLDBTypeFromPDBType()
698 if (builtin_type->isConstType()) in CreateLLDBTypeFromPDBType()
[all …]
/external/rust/crates/bindgen/src/
Dparse.rs97 fn builtin_type( in builtin_type() method
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp3121 const clang::BuiltinType *builtin_type = in IsIntegerType() local
3124 if (builtin_type) { in IsIntegerType()
3125 if (builtin_type->isInteger()) { in IsIntegerType()
3126 is_signed = builtin_type->isSignedInteger(); in IsIntegerType()
3720 const clang::BuiltinType *builtin_type = llvm::dyn_cast<clang::BuiltinType>( in GetTypeInfo() local
3724 switch (builtin_type->getKind()) { in GetTypeInfo()
3763 if (builtin_type->isInteger()) { in GetTypeInfo()
3765 if (builtin_type->isSignedInteger()) in GetTypeInfo()
3767 } else if (builtin_type->isFloatingPoint()) in GetTypeInfo()