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

Method getFunctionName

lib/rootdefanalysis/RDBasicTypes.cpp:25–35  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23bool RDArgIndex::isNone() const { return !!CB; }
24
25std::string RDArgIndex::getFunctionName() const {
26
27 if (!CB)
28 return "";
29
30 auto *F = CB->getCalledFunction();
31 if (!F)
32 return "";
33
34 return F->getName().str();
35}
36
37bool RDArgIndex::operator<(const RDArgIndex &RHS) const {
38

Callers

nothing calls this directly

Calls 2

getCalledFunctionMethod · 0.80
getNameMethod · 0.45

Tested by

no test coverage detected