Home | History | Annotate | Download | only in src

Lines Matching defs:IsInSet

627 bool IsInSet(char ch, const char* str) {
636 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
638 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
639 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
647 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW"));
720 } else if (IsInSet(ch, "()[]{}|")) {
730 prev_repeatable = !IsInSet(ch, "^$?*+");