Lines Matching defs:text
619 bool JsonParser<T>::CheckBackslash(Text &text, Text last, bool &isAscii)
621 ASSERT(*text == '\\');
622 ++text;
623 if (text >= last) {
626 switch (*text) {
637 if (text + UNICODE_DIGIT_LENGTH >= last) {
640 T ucharFirst = *++text;
649 T ucharSecond = *++text;
659 T ucharThird = *++text;
670 T ucharFourth = *++text;