Home | History | Annotate | Download | only in common

Lines Matching refs:match

16 //! The glob pattern must match the \e entire test value argument in order
17 //! for the match to be considered successful. Thus, even if, for example,
20 //! \retval true The test value does match the glob pattern.
21 //! \retval false The test value does not match the glob pattern.
22 bool GlobMatcher::match(const std::string & testValue)
32 int match;
75 match = false;
77 while (!match && (c = *p++)) {
86 match = true;
90 match = true;
96 match = true;
99 match = true;
106 if (negate == match)
108 // if there is a match, skip past the cset and continue on