MCPcopy Create free account
hub / github.com/dail8859/NotepadNext / FindFunctionByConstantName

Method FindFunctionByConstantName

src/IFaceTableMixer.cpp:38–44  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

36}
37
38const IFaceFunction *IFaceTableMixer::FindFunctionByConstantName(const char *name) const {
39 for (auto const &iface : ifaces) {
40 const IFaceFunction *ret = iface->FindFunctionByConstantName(name);
41 if (ret != nullptr) return ret;
42 }
43 return nullptr;
44}
45
46const IFaceFunction *IFaceTableMixer::FindFunctionByValue(int value) const {
47 for (auto const &iface : ifaces) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected