MCPcopy Create free account
hub / github.com/Kitware/CMake / isMember

Method isMember

Utilities/cmjsoncpp/src/lib_json/json_value.cpp:1225–1228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1223}
1224
1225bool Value::isMember(char const* begin, char const* end) const {
1226 Value const* value = find(begin, end);
1227 return nullptr != value;
1228}
1229bool Value::isMember(char const* key) const {
1230 return isMember(key, key + strlen(key));
1231}

Callers 15

readObjectMethod · 0.80
ConditionHelperFunction · 0.80
ReadJSONFileMethod · 0.80
cmLoadFlagTableStringFunction · 0.80
cmLoadFlagTableSpecialFunction · 0.80
operator()Method · 0.80
getPresetNameFunction · 0.80
ParsePreprocessorDefineFunction · 0.80
ParseLocalArgumentsFunction · 0.80
ParseModuleFunction · 0.80

Calls 4

lengthMethod · 0.80
findFunction · 0.50
strlenFunction · 0.50
dataMethod · 0.45