Lines Matching defs:isAscii
595 bool JsonParser<T>::ParseStringLength(size_t &length, bool &isAscii, bool inObjOrArrOrMap)
604 if (UNLIKELY(!CheckBackslash(current, last, isAscii))) {
611 isAscii = false;
619 bool JsonParser<T>::CheckBackslash(Text &text, Text last, bool &isAscii)
645 isAscii = false; // >= \u1000
654 isAscii = false; // >= \u0100
666 isAscii = false; // >= \u0080
672 isAscii = false; // \uxx00
767 bool isAscii = true;
768 if (UNLIKELY(!ParseStringLength(length, isAscii, inObjOrArrOrMap))) {
773 if (isAscii) {
1235 bool isAscii = true;
1237 if (UNLIKELY(!ReadJsonStringRange(isFastString, isAscii))) {
1242 if (isAscii) {
1256 if (UNLIKELY(*end_ != '"' || current_ == end_ || !IsFastParseJsonString(isFastString, isAscii))) {
1261 if (isAscii) {
1278 bool Utf16JsonParser::ReadJsonStringRange(bool &isFastString, bool &isAscii)
1291 if (!IsLegalAsciiCharacter(c, isAscii)) {
1298 bool Utf16JsonParser::IsFastParseJsonString(bool &isFastString, bool &isAscii)
1302 if (!IsLegalAsciiCharacter(*current, isAscii)) {
1314 bool Utf16JsonParser::IsLegalAsciiCharacter(uint16_t c, bool &isAscii)
1319 isAscii = false;