MCPcopy Create free account
hub / github.com/apache/trafficserver / Matches

Method Matches

lib/yamlcpp/src/regeximpl.h:16–20  ·  view source on GitHub ↗

query matches

Source from the content-addressed store, hash-verified

14namespace YAML {
15// query matches
16inline bool RegEx::Matches(char ch) const {
17 std::string str;
18 str += ch;
19 return Matches(str);
20}
21
22inline bool RegEx::Matches(const std::string& str) const {
23 return Match(str) >= 0;

Callers 9

TESTFunction · 0.80
ScanNextTokenMethod · 0.80
ScanToNextTokenMethod · 0.80
PopIndentToHereMethod · 0.80
ScanDirectiveMethod · 0.80
ScanAnchorOrAliasMethod · 0.80
ScanBlockScalarMethod · 0.80
IsValidPlainScalarFunction · 0.80
ScanScalarFunction · 0.80

Calls 1

MatchesFunction · 0.85

Tested by 1

TESTFunction · 0.64