Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Symbol/
DCompilerType.cpp217 bool CompilerType::IsScalarType() const { in IsScalarType() function in CompilerType
221 return m_type_system->IsScalarType(m_type); in IsScalarType()
240 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
246 return element_type.IsScalarType(); in IsArrayOfScalarType()
/external/deqp/framework/opengl/
DgluVarTypeUtil.hpp189 struct IsScalarType { bool operator() (const VarType& type) const { return type.isBasicType() && … in operator ()() struct
194 typedef SubTypeIterator<IsScalarType> ScalarTypeIterator;
/external/llvm-project/lldb/include/lldb/Symbol/
DCompilerType.h138 bool IsScalarType() const;
DTypeSystem.h185 virtual bool IsScalarType(lldb::opaque_compiler_type_t type) = 0;
/external/llvm-project/lldb/include/lldb/Core/
DValueObject.h381 virtual bool IsScalarType();
/external/llvm-project/lldb/source/Core/
DValueObject.cpp1636 bool ValueObject::IsScalarType() { return GetCompilerType().IsScalarType(); } in IsScalarType() function in ValueObject
1725 if (IsScalarType()) { in GetSyntheticBitFieldChild()
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.h634 bool IsScalarType(lldb::opaque_compiler_type_t type) override;
DTypeSystemClang.cpp3557 bool TypeSystemClang::IsScalarType(lldb::opaque_compiler_type_t type) { in IsScalarType() function in TypeSystemClang
/external/llvm-project/lldb/source/Target/
DStackFrame.cpp888 } else if (valobj_sp->GetCompilerType().IsScalarType()) { in GetValueForVariableExpressionPath()