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

Method match

json/jsoncpp.cpp:573–582  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

571}
572
573bool Reader::match(Location pattern, int patternLength) {
574 if (end_ - current_ < patternLength)
575 return false;
576 int index = patternLength;
577 while (index--)
578 if (current_[index] != pattern[index])
579 return false;
580 current_ += patternLength;
581 return true;
582}
583
584bool Reader::readComment() {
585 Location commentBegin = current_ - 1;

Callers 15

bitMaskGenCheckMatchFunction · 0.80
measureBitmaskFunction · 0.80
__init__Method · 0.80
genCheckMatchMethod · 0.80
genCheckUnpredictableMethod · 0.80
genExtractGeneralMethod · 0.80
genEncodingBlockFunction · 0.80
gen_nodeFunction · 0.80
generator.pyFile · 0.80
genMethod · 0.80
getWidthMethod · 0.80
sliceableMethod · 0.80

Calls

no outgoing calls

Tested by 2

gather_samplesFunction · 0.64
mainFunction · 0.64