Home | History | Annotate | Download | only in src

Lines Matching refs:AtomMatchesChar

652 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
762 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
794 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &&