Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-extensions.swig570 def is_numeric_type(basic_type):
572 if basic_type == eBasicTypeVoid: return (False,False)
573 if basic_type == eBasicTypeChar: return (True,False)
576 if basic_type == eBasicTypeWChar: return (True,False)
581 if basic_type == eBasicTypeChar8: return (True,False)
582 if basic_type == eBasicTypeShort: return (True,True)
584 if basic_type == eBasicTypeInt: return (True,True)
586 if basic_type == eBasicTypeLong: return (True,True)
593 if basic_type == eBasicTypeHalf: return (True,True)
594 if basic_type == eBasicTypeFloat: return (True,True)
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBType.cpp362 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument
363 LLDB_INSTRUMENT_VA(this, basic_type); in GetBasicType()
367 return SBType(ts->GetBasicTypeFromAST(basic_type)); in GetBasicType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp334 lldb::BasicType basic_type = in CreateInteger() local
336 if (basic_type == eBasicTypeInvalid) in CreateInteger()
343 CompilerType compiler_type = m_ast->GetBasicType(basic_type); in CreateInteger()
345 if (basic_type != eBasicTypeVoid) { in CreateInteger()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h371 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
H A DTypeSystem.h428 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp728 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST()
731 return type_system_sp->GetBasicTypeFromAST(basic_type); in GetBasicTypeFromAST()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h809 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override;
1097 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
H A DTypeSystemClang.cpp933 CompilerType TypeSystemClang::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument
937 GetOpaqueCompilerType(&ast, basic_type); in GetBasicType()
2049 lldb::BasicType basic_type) { in GetOpaqueCompilerType() argument
2050 switch (basic_type) { in GetOpaqueCompilerType()
4634 CompilerType TypeSystemClang::GetBasicTypeFromAST(lldb::BasicType basic_type) { in GetBasicTypeFromAST() argument
4635 return TypeSystemClang::GetBasicType(basic_type); in GetBasicTypeFromAST()