MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / match

Method match

src/share/jsoncpp/jsoncpp.cpp:556–565  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

554}
555
556bool Reader::match(Location pattern, int patternLength) {
557 if (end_ - current_ < patternLength)
558 return false;
559 int index = patternLength;
560 while (index--)
561 if (current_[index] != pattern[index])
562 return false;
563 current_ += patternLength;
564 return true;
565}
566
567bool Reader::readComment() {
568 Location commentBegin = current_ - 1;

Callers 15

compareTagNameMethod · 0.80
wizEditorForMac.jsFile · 0.80
vFunction · 0.80
tFunction · 0.80
MFunction · 0.80
lFunction · 0.80
iFunction · 0.80
oFunction · 0.80
PFunction · 0.80
jquery-1.11.3.jsFile · 0.80
RFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected