/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBTypeExtensions.i | 60 is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean value that indicates if this type is a reference type.''') 61 is_reference = property(IsReferenceType, None, doc='''A read only property that returns a boolean value that indicates if this type is a function type.''')
|
H A D | SBTypeDocstrings.i | 140 ) lldb::SBType::IsReferenceType; 295 If this type is a reference as designated by `IsReferenceType`, then the
|
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBType.h | 157 bool IsReferenceType();
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBType.cpp | 173 bool SBType::IsReferenceType() { in IsReferenceType() function in SBType 178 return m_opaque_sp->GetCompilerType(true).IsReferenceType(); in IsReferenceType()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompilerType.h | 185 bool IsReferenceType(CompilerType *pointee_type = nullptr,
|
H A D | TypeSystem.h | 490 virtual bool IsReferenceType(lldb::opaque_compiler_type_t type,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxList.cpp | 179 if (list_type.IsReferenceType()) in Update()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompilerType.cpp | 223 bool CompilerType::IsReferenceType(CompilerType *pointee_type, in IsReferenceType() function in CompilerType 227 return type_system_sp->IsReferenceType(m_type, pointee_type, is_rvalue); in IsReferenceType()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObject.cpp | 1131 !GetCompilerType().IsReferenceType() && !GetCompilerType().IsBoolean()) in GetValueAsAPSInt() 3035 if (!type.IsPointerType() && !type.IsReferenceType()) in CastDerivedToBaseType() 3041 if (start_type.IsReferenceType()) in CastDerivedToBaseType() 3105 if (!type.IsPointerType() && !type.IsReferenceType()) in CastBaseToDerivedType() 3111 if (start_type.IsReferenceType()) in CastBaseToDerivedType()
|
/freebsd/contrib/llvm-project/lldb/source/Expression/ |
H A D | Materializer.cpp | 809 m_variable_sp->GetType()->GetForwardCompilerType().IsReferenceType(); in EntityVariable() 857 m_is_reference = m_valobj_sp->GetCompilerType().IsReferenceType(); in SetupValueObject()
|
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/ |
H A D | FormatManager.cpp | 207 j && compiler_type.IsReferenceType(nullptr, &is_rvalue_ref); j = false) { in GetPossibleMatches()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.h | 718 bool IsReferenceType(lldb::opaque_compiler_type_t type,
|
H A D | TypeSystemClang.cpp | 3368 bool TypeSystemClang::IsReferenceType(lldb::opaque_compiler_type_t type, in IsReferenceType() function in TypeSystemClang
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangExpressionDeclMap.cpp | 1570 bool is_reference = pt.IsReferenceType(); in AddExpressionVariable()
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StackFrame.cpp | 653 if (valobj_sp->GetCompilerType().IsReferenceType()) { in GetValueForVariableExpressionPath()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | ExprConstant.cpp | 2216 bool IsReferenceType = Type->isReferenceType(); in CheckLValueConstantExpression() local 2244 << IsReferenceType << !Designator.Entries.empty() << InvalidBaseKind in CheckLValueConstantExpression() 2264 << IsReferenceType << !Designator.Entries.empty() << !!BaseVD in CheckLValueConstantExpression() 2291 << IsReferenceType << !Designator.Entries.empty(); in CheckLValueConstantExpression() 2360 if (!IsReferenceType) in CheckLValueConstantExpression()
|
/freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
H A D | CGOpenMPRuntime.cpp | 11021 bool IsReferenceType = false; in emitDeclareSimdFunction() local 11042 IsReferenceType = true; in emitDeclareSimdFunction() 11054 else if (IsReferenceType) in emitDeclareSimdFunction()
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 68244 result = (bool)(arg1)->IsReferenceType(); in _wrap_SBType_IsReferenceType()
|