Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/bindings/python/
H A Dpython-extensions.swig557 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 Dwin32_crashrpt.c264 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 DSBType.cpp365 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 DCompilerType.cpp474 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 DCompilerType.h261 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
H A DTypeSystem.h419 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h729 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override;
1024 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
H A DTypeSystemClang.cpp940 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()