MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / FindMember

Function FindMember

rapidjson/document.h:1145–1148  ·  view source on GitHub ↗

Find member by name. ! \param name Member name to be searched. \pre IsObject() == true \return Iterator to member, if it exists. Otherwise returns \ref MemberEnd(). \note Earlier versions of Rapidjson returned a \c NULL pointer, in case the requested member doesn't exist. For consistency with e.g. \c std::map, this has been chang

Source from the content-addressed store, hash-verified

1143 \note Linear time complexity.
1144 */
1145 MemberIterator FindMember(const Ch* name) {
1146 GenericValue n(StringRef(name));
1147 return FindMember(n);
1148 }
1149
1150#ifdef BINARYNINJACORE_LIBRARY
1151 MemberIterator FindMember(const BinaryNinjaCore::string& name) {

Callers 4

document.hFile · 0.85
HasMemberFunction · 0.85
RemoveMemberFunction · 0.85
EraseMemberFunction · 0.85

Calls 9

IsObjectFunction · 0.85
MemberBeginFunction · 0.85
MemberEndFunction · 0.85
FindMemberMethod · 0.80
IsStringMethod · 0.80
StringRefFunction · 0.70
GenericValueFunction · 0.70
dataMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected