MCPcopy Create free account
hub / github.com/WizTeam/WizQTClient / 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

wizEditorForMac.jsFile · 0.80
vFunction · 0.80
tFunction · 0.80
DFunction · 0.80
lFunction · 0.80
iFunction · 0.80
RFunction · 0.80
jquery-3.3.1.jsFile · 0.80
vtFunction · 0.80
xtFunction · 0.80
FtFunction · 0.80
rFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected