Home | History | Annotate | Download | only in src

Lines Matching refs:IsAsciiWhiteSpace

621 bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
642 case 's': return IsAsciiWhiteSpace(ch);
643 case 'S': return !IsAsciiWhiteSpace(ch);