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

Method FindFunctionByValue

src/IFaceTableMixer.cpp:46–52  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

44}
45
46const IFaceFunction *IFaceTableMixer::FindFunctionByValue(int value) const {
47 for (auto const &iface : ifaces) {
48 const IFaceFunction *ret = iface->FindFunctionByValue(value);
49 if (ret != nullptr) return ret;
50 }
51 return nullptr;
52}
53
54const IFaceProperty *IFaceTableMixer::FindProperty(const char *name) const {
55 for (auto const &iface : ifaces) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected