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

Method MatchUnchecked

lib/yamlcpp/src/regeximpl.h:73–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71
72template <typename Source>
73inline int RegEx::MatchUnchecked(const Source& source) const {
74 switch (m_op) {
75 case REGEX_EMPTY:
76 return MatchOpEmpty(source);
77 case REGEX_MATCH:
78 return MatchOpMatch(source);
79 case REGEX_RANGE:
80 return MatchOpRange(source);
81 case REGEX_OR:
82 return MatchOpOr(source);
83 case REGEX_AND:
84 return MatchOpAnd(source);
85 case REGEX_NOT:
86 return MatchOpNot(source);
87 case REGEX_SEQ:
88 return MatchOpSeq(source);
89 }
90
91 return -1;
92}
93
94//////////////////////////////////////////////////////////////////////////////
95// Operators

Callers 3

MatchOpOrMethod · 0.80
MatchOpAndMethod · 0.80
MatchOpNotMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected