Searched refs:basic_type (Results 1 – 11 of 11) sorted by relevance
/freebsd/contrib/llvm-project/lldb/bindings/python/ |
H A D | python-extensions.swig | 570 def is_numeric_type(basic_type): 571 if basic_type == eBasicTypeInvalid: return (False,False) 572 if basic_type == eBasicTypeVoid: return (False,False) 573 if basic_type == eBasicTypeChar: return (True,False) 574 if basic_type == eBasicTypeSignedChar: return (True,True) 575 if basic_type == eBasicTypeUnsignedChar: return (True,False) 576 if basic_type == eBasicTypeWChar: return (True,False) 577 if basic_type == eBasicTypeSignedWChar: return (True,True) 578 if basic_type == eBasicTypeUnsignedWChar: return (True,False) 579 if basic_type [all...] |
/freebsd/lib/libc/tests/secure/ |
H A D | generate-fortify-tests.lua | 1172 local basic_type = buftype_elem or buftype 1178 basic_type = basic_type .. " *" 1180 vars = vars .. "\t\t" .. basic_type .. " __buf;\n"
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Scalar.h | 194 llvm::APFloat CreateAPFloatFromAPSInt(lldb::BasicType basic_type); 196 llvm::APFloat CreateAPFloatFromAPFloat(lldb::BasicType basic_type);
|
/freebsd/contrib/llvm-project/lldb/source/Utility/ |
H A D | Scalar.cpp | 814 llvm::APFloat Scalar::CreateAPFloatFromAPSInt(lldb::BasicType basic_type) { in CreateAPFloatFromAPSInt() argument 815 switch (basic_type) { in CreateAPFloatFromAPSInt() 834 llvm::APFloat Scalar::CreateAPFloatFromAPFloat(lldb::BasicType basic_type) { in CreateAPFloatFromAPFloat() argument 835 switch (basic_type) { in CreateAPFloatFromAPFloat()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
H A D | SymbolFileCTF.cpp | 334 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 && basic_type != eBasicTypeBool) { in CreateInteger()
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBType.cpp | 453 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 454 LLDB_INSTRUMENT_VA(this, basic_type); in GetBasicType() 458 return SBType(ts->GetBasicTypeFromAST(basic_type)); in GetBasicType()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompilerType.h | 377 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
|
H A D | TypeSystem.h | 457 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompilerType.cpp | 756 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST() 759 return type_system_sp->GetBasicTypeFromAST(basic_type); in GetBasicTypeFromAST()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.h | 823 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override; 1118 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
|
H A D | TypeSystemClang.cpp | 875 CompilerType TypeSystemClang::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 879 GetOpaqueCompilerType(&ast, basic_type); in GetBasicType() 2001 lldb::BasicType basic_type) { in GetOpaqueCompilerType() argument 2002 switch (basic_type) { in GetOpaqueCompilerType() 4691 CompilerType TypeSystemClang::GetBasicTypeFromAST(lldb::BasicType basic_type) { in GetBasicTypeFromAST() argument 4692 return TypeSystemClang::GetBasicType(basic_type); in GetBasicTypeFromAST()
|