MCPcopy Create free account
hub / github.com/Samsung/UTopia / isNormalPtr

Method isNormalPtr

lib/type/Type.cpp:141–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

139bool Type::isPointerType() const { return ID == Type::TypeID_Pointer; }
140
141bool Type::isNormalPtr() const {
142 return PtrInfo && PtrInfo->getPtrKind() == Type::PtrKind_Normal;
143}
144
145bool Type::isArrayPtr() const {
146 return PtrInfo && PtrInfo->getPtrKind() == Type::PtrKind_Array;

Callers 3

generateMethod · 0.80
getRealTypeMethod · 0.80
TEST_FFunction · 0.80

Calls 1

getPtrKindMethod · 0.80

Tested by 1

TEST_FFunction · 0.64