MCPcopy Create free account
hub / github.com/cinder/Cinder / match

Method match

src/jsoncpp/jsoncpp.cpp:484–493  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

482}
483
484bool Reader::match(Location pattern, int patternLength) {
485 if (end_ - current_ < patternLength)
486 return false;
487 int index = patternLength;
488 while (index--)
489 if (current_[index] != pattern[index])
490 return false;
491 current_ += patternLength;
492 return true;
493}
494
495bool Reader::readComment() {
496 Location commentBegin = current_ - 1;

Callers 10

chktrcmp.pyFile · 0.45
make_html_wordMethod · 0.45
html_source_quoteMethod · 0.45
__init__Method · 0.45
parse_fileMethod · 0.45
process_normal_lineMethod · 0.45
__init__Method · 0.45
__init__Method · 0.45
process_contentMethod · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected