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

Method FindFunction

src/IFaceTableMixer.cpp:30–36  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28}
29
30const IFaceFunction *IFaceTableMixer::FindFunction(const char *name) const {
31 for (auto const &iface : ifaces) {
32 const IFaceFunction *ret = iface->FindFunction(name);
33 if (ret != nullptr) return ret;
34 }
35 return nullptr;
36}
37
38const IFaceFunction *IFaceTableMixer::FindFunctionByConstantName(const char *name) const {
39 for (auto const &iface : ifaces) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected