Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp277 bool CompilerType::IsScalarType() const { in IsScalarType() function in CompilerType
280 return type_system_sp->IsScalarType(m_type); in IsScalarType()
309 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
315 return element_type.IsScalarType(); in IsArrayOfScalarType()
371 return IsScalarType() || IsUnscopedEnumerationType(); in IsScalarOrUnscopedEnumerationType()
451 return IsScalarType() || IsUnscopedEnumerationType() || IsPointerType() || in IsContextuallyConvertibleToBool()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h386 bool IsScalarType() { return GetCompilerType().IsScalarType(); } in IsScalarType() function
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h190 bool IsScalarType() const;
H A DTypeSystem.h203 virtual bool IsScalarType(lldb::opaque_compiler_type_t type) = 0;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp1187 !val_type.IsScalarType()) { in SetValueFromInteger()
1224 !val_type.IsScalarType()) { in SetValueFromInteger()
1814 if (IsScalarType()) { in GetSyntheticBitFieldChild()
3166 bool is_scalar = GetCompilerType().IsScalarType(); in CastToBasicType()
3173 if (!type.IsScalarType()) { in CastToBasicType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h721 bool IsScalarType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp3666 bool TypeSystemClang::IsScalarType(lldb::opaque_compiler_type_t type) { in IsScalarType() function in TypeSystemClang
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp909 } else if (valobj_sp->GetCompilerType().IsScalarType()) { in GetValueForVariableExpressionPath()