next_char 427 base/json/json_parser.cc char next_char = *NextChar(); next_char 428 base/json/json_parser.cc if (next_char == '/') { next_char 431 base/json/json_parser.cc char next_char = *NextChar(); next_char 432 base/json/json_parser.cc if (next_char == '\n' || next_char == '\r') next_char 435 base/json/json_parser.cc } else if (next_char == '*') { next_char 439 base/json/json_parser.cc next_char = *NextChar(); next_char 440 base/json/json_parser.cc if (previous_char == '*' && next_char == '/') { next_char 447 base/json/json_parser.cc previous_char = next_char; next_char 615 base/json/json_parser.cc int32 next_char = 0; next_char 619 base/json/json_parser.cc CBU8_NEXT(start_pos_, index_, length, next_char); next_char 620 base/json/json_parser.cc if (next_char < 0 || !IsValidCharacter(next_char)) { next_char 626 base/json/json_parser.cc if (next_char == '\\') { next_char 711 base/json/json_parser.cc } else if (next_char == '"') { next_char 716 base/json/json_parser.cc if (next_char < kExtendedASCIIStart) next_char 717 base/json/json_parser.cc string.Append(next_char); next_char 719 base/json/json_parser.cc DecodeUTF8(next_char, &string); next_char 204 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc next_char (buffer, glyph); next_char 208 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc next_char (buffer, glyph); next_char 212 third_party/harfbuzz-ng/src/hb-ot-shape-normalize.cc next_char (buffer, glyph); /* glyph is initialized in earlier branches. */ next_char 175 tools/gn/tokenizer.cc char next_char = cur_char(); next_char 176 tools/gn/tokenizer.cc if (next_char >= '0' && next_char <= '9') next_char 178 tools/gn/tokenizer.cc if (next_char == '"') next_char 182 tools/gn/tokenizer.cc if (next_char != '-' && CouldBeOperator(next_char)) next_char 185 tools/gn/tokenizer.cc if (IsIdentifierFirstChar(next_char)) next_char 188 tools/gn/tokenizer.cc if (next_char == '[') next_char 190 tools/gn/tokenizer.cc if (next_char == ']') next_char 192 tools/gn/tokenizer.cc if (next_char == '(') next_char 194 tools/gn/tokenizer.cc if (next_char == ')') next_char 196 tools/gn/tokenizer.cc if (next_char == '{') next_char 198 tools/gn/tokenizer.cc if (next_char == '}') next_char 201 tools/gn/tokenizer.cc if (next_char == '.') next_char 203 tools/gn/tokenizer.cc if (next_char == ',') next_char 206 tools/gn/tokenizer.cc if (next_char == '#') next_char 211 tools/gn/tokenizer.cc if (next_char == '-') { next_char 177 ui/gfx/render_text_win.cc size_t* next_char) { next_char 187 ui/gfx/render_text_win.cc *next_char = i + 1; next_char 211 ui/gfx/render_text_win.cc *next_char = std::max(word->first, start_char); next_char 215 ui/gfx/render_text_win.cc *next_char = i; next_char 218 ui/gfx/render_text_win.cc *next_char = i + 1; next_char 225 ui/gfx/render_text_win.cc *next_char = run.range.end(); next_char 383 ui/gfx/render_text_win.cc size_t next_char = run->range.start(); next_char 386 ui/gfx/render_text_win.cc while (next_char < run->range.end()) { next_char 387 ui/gfx/render_text_win.cc const size_t current_char = next_char; next_char 389 ui/gfx/render_text_win.cc max_width_ - line_x_, line_x_ == 0, &width, &next_char); next_char 390 ui/gfx/render_text_win.cc AddSegment(run_index, Range(current_char, next_char), width);