MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / isFunction

Function isFunction

Engine/source/console/console.cpp:1746–1754  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

1744
1745//------------------------------------------------------------------------------
1746bool isFunction(const char *fn)
1747{
1748 if (CInterface::isMethod(NULL, fn)) return true;
1749 const char *string = StringTable->lookup(fn);
1750 if(!string)
1751 return false;
1752 else
1753 return Namespace::global()->lookup(string) != NULL;
1754}
1755
1756//------------------------------------------------------------------------------
1757

Callers 15

unpackUpdateMethod · 0.85
updateProgressMethod · 0.85
_processMethod · 0.85
processMethod · 0.85
submitInputChangesMethod · 0.85
preShutdownMethod · 0.85
_editPostEffectsMethod · 0.85
renderTooltipMethod · 0.85
handleAppEventMethod · 0.85
activateRowMethod · 0.85
changeOptionMethod · 0.85

Calls 2

globalClass · 0.50
lookupMethod · 0.45

Tested by

no test coverage detected