Home | History | Annotate | Download | only in base

Lines Matching refs:CharIsA

1659 static inline bool CharIsA(const char c, const char* chars) {
1667 for (; *it != end && !CharIsA(**it, chars); ++(*it)) {}
1675 for (; *it != end && CharIsA(**it, chars); ++(*it)) {}
1681 for (; *it != end && CharIsA(**it, chars); --(*it)) {}
1791 for (; *it != end && (isInQuotedString || !CharIsA(**it, kValueSeparator)); ++(*it)) {