Searched refs:basic_type (Results 1 – 8 of 8) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-extensions.swig | 557 def is_numeric_type(basic_type): 559 if basic_type == eBasicTypeVoid: return (False,False) 560 if basic_type == eBasicTypeChar: return (True,False) 563 if basic_type == eBasicTypeWChar: return (True,False) 568 if basic_type == eBasicTypeShort: return (True,True) 570 if basic_type == eBasicTypeInt: return (True,True) 572 if basic_type == eBasicTypeLong: return (True,True) 576 if basic_type == eBasicTypeInt128: return (True,True) 579 if basic_type == eBasicTypeHalf: return (True,True) 580 if basic_type == eBasicTypeFloat: return (True,True) [all …]
|
| /freebsd-13.1/contrib/subversion/subversion/libsvn_subr/ |
| H A D | win32_crashrpt.c | 264 write_basic_type(FILE *log_file, DWORD basic_type, DWORD64 length, in write_basic_type() argument 276 switch(basic_type) in write_basic_type() 297 if (basic_type == 8) /* btFloat */ in write_basic_type() 304 basic_type, (UINT_PTR)length); in write_basic_type()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 365 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 367 basic_type); in GetBasicType() 371 m_opaque_sp->GetTypeSystem(false)->GetBasicTypeFromAST(basic_type))); in GetBasicType()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 474 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST() 476 return m_type_system->GetBasicTypeFromAST(basic_type); in GetBasicTypeFromAST()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 261 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
|
| H A D | TypeSystem.h | 419 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 729 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override; 1024 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
|
| H A D | TypeSystemClang.cpp | 940 CompilerType TypeSystemClang::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 944 GetOpaqueCompilerType(&ast, basic_type); in GetBasicType() 2005 lldb::BasicType basic_type) { in GetOpaqueCompilerType() argument 2006 switch (basic_type) { in GetOpaqueCompilerType() 4628 CompilerType TypeSystemClang::GetBasicTypeFromAST(lldb::BasicType basic_type) { in GetBasicTypeFromAST() argument 4629 return TypeSystemClang::GetBasicType(basic_type); in GetBasicTypeFromAST()
|