IsInSet          1354 modules/ts/src/ts_gtest.cpp GTEST_API_ bool IsInSet(char ch, const char* str);
IsInSet          8463 modules/ts/src/ts_gtest.cpp   return IsInSet(ch, "^-!\"#$%&'()*+,./:;<=>?@[\\]_`{|}~");
IsInSet          8465 modules/ts/src/ts_gtest.cpp bool IsRepeat(char ch) { return IsInSet(ch, "?*+"); }
IsInSet          8466 modules/ts/src/ts_gtest.cpp bool IsAsciiWhiteSpace(char ch) { return IsInSet(ch, " \f\n\r\t\v"); }
IsInSet          8474 modules/ts/src/ts_gtest.cpp   return (IsAsciiPunct(c) || IsInSet(c, "dDfnrsStvwW"));
IsInSet          8547 modules/ts/src/ts_gtest.cpp       } else if (IsInSet(ch, "()[]{}|")) {
IsInSet          8557 modules/ts/src/ts_gtest.cpp       prev_repeatable = !IsInSet(ch, "^$?*+");