reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Symbol/CompilerType.h
  123   bool IsPointerType(CompilerType *pointee_type = nullptr) const;

References

tools/lldb/source/API/SBType.cpp
  136   return m_opaque_sp->GetCompilerType(true).IsPointerType();
tools/lldb/source/Commands/CommandObjectExpression.cpp
  361   if (!type.IsPointerType(&pointee))
tools/lldb/source/Core/ValueObject.cpp
 1692 bool ValueObject::IsPointerType() { return GetCompilerType().IsPointerType(); }
tools/lldb/source/DataFormatters/FormatManager.cpp
  223   if (compiler_type.IsPointerType()) {
tools/lldb/source/Expression/FunctionCaller.cpp
  196         arg_value->GetCompilerType().IsPointerType())
tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
 1683   } else if (compiler_type.IsPointerType()) {
 1724       compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
  831       else if (compiler_type.IsPointerType())
  864       compiler_type.IsPointerType()) {
  992   } else if (compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-arc/ABISysV_arc.cpp
  327       !compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
 1628   } else if (compiler_type.IsPointerType()) {
 1867       compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
  315       } else if (compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-mips/ABISysV_mips.cpp
  721       compiler_type.IsPointerType()) {
  850   } else if (return_compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-mips64/ABISysV_mips64.cpp
 1045             field_compiler_type.IsPointerType() ||
tools/lldb/source/Plugins/ABI/SysV-ppc/ABISysV_ppc.cpp
  403     else if (compiler_type.IsPointerType())
  436       compiler_type.IsPointerType()) {
  721             field_compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-ppc64/ABISysV_ppc64.cpp
  280     } else if (compiler_type.IsPointerType()) {
  314       compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  380     } else if (compiler_type.IsPointerType()) {
  414       compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  430     } else if (compiler_type.IsPointerType()) {
  464       compiler_type.IsPointerType()) {
  753         field_compiler_type.IsPointerType() ||
  856             field_compiler_type.IsPointerType()) {
tools/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
 1263     } else if (compiler_type.IsPointerType()) {
 1297       compiler_type.IsPointerType()) {
 1557         field_compiler_type.IsPointerType() ||
 1662           field_compiler_type.IsPointerType() ||
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntime.cpp
   63   if (!compiler_type.IsIntegerType(is_signed) && !compiler_type.IsPointerType())
tools/lldb/source/Symbol/CompilerType.cpp
  246   return IsPointerType() && GetPointeeType().IsScalarType();
tools/lldb/source/Target/StackFrame.cpp
  822           else if (!valobj_sp->GetCompilerType().IsPointerType())