Home | History | Annotate | Download | only in src

Lines Matching defs:IsInSet

586 bool IsInSet(char ch, const char* str) {
595 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
597 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
598 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
606 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW"));
679 } else if (IsInSet(ch, "()[]{}|")) {
689 prev_repeatable = !IsInSet(ch, "^$?*+");