Home | History | Annotate | Download | only in src

Lines Matching refs:IsInSet

609 bool IsInSet(char ch, const char* str) {
618 return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
620 bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
621 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
629 return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW"));
702 } else if (IsInSet(ch, "()[]{}|")) {
712 prev_repeatable = !IsInSet(ch, "^$?*+");