| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_type.py | 19 obj.IsPointerType(None) 20 lldb.SBType.IsPointerType(None)
|
| /llvm-project-15.0.7/lldb/source/Plugins/Language/ObjC/ |
| H A D | CF.cpp | 81 if (valobj.IsPointerType()) in CFBagSummaryProvider() 140 if (valobj.IsPointerType()) in CFBitVectorSummaryProvider() 268 if (valobj.IsPointerType()) in CFBinaryHeapSummaryProvider()
|
| /llvm-project-15.0.7/clang/utils/ |
| H A D | ClangDataFormat.py | 100 if ty.IsPointerType() or ty.IsReferenceType(): 110 if not (ty.IsPointerType() or
|
| /llvm-project-15.0.7/lldb/test/API/functionalities/data-formatter/varscript_formatting/ |
| H A D | helperfunc.py | 6 0).IsPointerType() else "non-pointer type"
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBType.i | 248 ") IsPointerType; 250 IsPointerType(); 908 …is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean valu…
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/X86/ |
| H A D | ABIMacOSX_i386.cpp | 173 else if (compiler_type.IsPointerType()) in GetArgumentValues() 206 compiler_type.IsPointerType()) { in SetReturnValueObject() 334 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| H A D | ABIWindows_x86_64.cpp | 286 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 320 compiler_type.IsPointerType()) { in SetReturnValueObject() 580 field_compiler_type.IsPointerType() || in FlattenAggregateType() 685 field_compiler_type.IsPointerType() || in GetReturnValueObjectImpl()
|
| H A D | ABISysV_x86_64.cpp | 279 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 313 compiler_type.IsPointerType()) { in SetReturnValueObject() 602 field_compiler_type.IsPointerType() || in FlattenAggregateType() 705 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/test/API/lang/c/unicode/ |
| H A D | TestUnicodeSymbols.py | 19 self.assertTrue(mytype.IsPointerType())
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/complete-type-check/ |
| H A D | TestCppIsTypeComplete.py | 33 self.assertTrue(found_type.IsPointerType())
|
| /llvm-project-15.0.7/lldb/test/API/lang/cpp/global_operators/ |
| H A D | TestCppGlobalOperators.py | 84 self.assertTrue(got_type.IsPointerType())
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 157 bool CompilerType::IsPointerType(CompilerType *pointee_type) const { in IsPointerType() function in CompilerType 159 return m_type_system->IsPointerType(m_type, pointee_type); in IsPointerType() 246 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
|
| /llvm-project-15.0.7/lldb/examples/summaries/cocoa/ |
| H A D | CFBinaryHeap.py | 112 if valobj_type.IsValid() and valobj_type.IsPointerType():
|
| H A D | CFBag.py | 115 if valobj_type.IsValid() and valobj_type.IsPointerType():
|
| H A D | CFBitVector.py | 163 if valobj_type.IsValid() and valobj_type.IsPointerType():
|
| /llvm-project-15.0.7/libc/src/__support/CPP/ |
| H A D | TypeTraits.h | 76 template <typename T> struct IsPointerType {
|
| /llvm-project-15.0.7/lldb/source/DataFormatters/ |
| H A D | FormattersHelpers.cpp | 139 if (valobj.IsPointerType()) in GetArrayAddressOrPointerValue()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc.cpp | 405 else if (compiler_type.IsPointerType()) in GetArgumentValues() 438 compiler_type.IsPointerType()) { in SetReturnValueObject() 721 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBType.h | 118 bool IsPointerType();
|
| /llvm-project-15.0.7/lldb/test/API/python_api/type/ |
| H A D | TestTypeList.py | 114 self.assertTrue(task_head_type.IsPointerType())
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | StackFrame.cpp | 568 if (!compiler_type.IsPointerType()) in GetValueForVariableExpressionPath() 643 if (!valobj_sp->IsPointerType() && valobj_sp->HasSyntheticValue()) { in GetValueForVariableExpressionPath() 679 const bool actual_is_ptr = valobj_sp->IsPointerType(); in GetValueForVariableExpressionPath() 823 if (valobj_sp->IsPointerType()) { in GetValueForVariableExpressionPath() 829 else if (!valobj_sp->GetCompilerType().IsPointerType()) in GetValueForVariableExpressionPath()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/SystemZ/ |
| H A D | ABISysV_s390x.cpp | 368 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 402 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBType.cpp | 131 bool SBType::IsPointerType() { in IsPointerType() function in SBType 136 return m_opaque_sp->GetCompilerType(true).IsPointerType(); in IsPointerType()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/Mips/ |
| H A D | ABISysV_mips.cpp | 686 compiler_type.IsPointerType()) { in SetReturnValueObject() 815 } else if (return_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 134 bool IsPointerType(CompilerType *pointee_type = nullptr) const;
|