MCPcopy Create free account
hub / github.com/beefytech/Beef / IsPointerOrRef

Method IsPointerOrRef

IDEHelper/DbgModule.cpp:1470–1477  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1468}
1469
1470bool DbgType::IsPointerOrRef(bool includeBfObjectPointer)
1471{
1472 if ((mTypeCode != DbgType_Ptr) && (mTypeCode != DbgType_Ref) && (mTypeCode != DbgType_RValueReference))
1473 return false;
1474 if ((!includeBfObjectPointer) && (mTypeParam != NULL) && (mTypeParam->IsBfObject()))
1475 return false;
1476 return true;
1477}
1478
1479bool DbgType::IsSizedArray()
1480{

Callers 5

DoLookupIdentifierMethod · 0.80
EvaluateContinueMethod · 0.80
WinDebugger.cppFile · 0.80
EvaluateToAddressMethod · 0.80

Calls 1

IsBfObjectMethod · 0.80

Tested by

no test coverage detected