Lines Matching defs:current_char
79 uint32_t current_char, int bytecode_length,
82 const bool printable = std::isprint(current_char);
87 PrintF(format, pc - code_base, stack_depth, current_position, current_char,
88 printable ? current_char : '.');
312 bool CheckBitInTable(const uint32_t current_char, const byte* const table) {
314 int b = table[(current_char & mask) >> kBitsPerByteLog2];
315 int bit = (current_char & (kBitsPerByte - 1));
378 current_char, RegExpBytecodeLength(BC_##name), #name);
388 uint32_t current_char, RegExp::CallOrigin call_origin,
584 current_char = subject[pos];
591 current_char = subject[pos];
601 current_char = (subject[pos] | (next << (kBitsPerByte * sizeof(Char))));
609 current_char = (subject[pos] | (next << (kBitsPerByte * sizeof(Char))));
622 current_char =
634 current_char =
640 if (c == current_char) {
649 if (c == current_char) {
658 if (c != current_char) {
667 if (c != current_char) {
676 if (c == (current_char & Load32Aligned(pc + 8))) {
685 if (c == (current_char & Load32Aligned(pc + 4))) {
694 if (c != (current_char & Load32Aligned(pc + 8))) {
703 if (c != (current_char & Load32Aligned(pc + 4))) {
714 if (c != ((current_char - minus) & mask)) {
724 if (from <= current_char && current_char <= to) {
734 if (from > current_char || current_char > to) {
742 if (CheckBitInTable(current_char, pc + 8)) {
751 if (current_char < limit) {
760 if (current_char > limit) {
908 current_char = subject[current - 1];
926 current_char = subject[current + load_offset];
927 if (c == current_char) {
944 current_char = subject[current + load_offset];
945 if (c == (current_char & mask)) {
961 current_char = subject[current + load_offset];
962 if (c == current_char) {
976 current_char = subject[current + load_offset];
977 if (CheckBitInTable(current_char, table)) {
992 current_char = subject[current + load_offset];
993 if (current_char > limit) {
997 if (!CheckBitInTable(current_char, table)) {
1012 current_char = subject[current + load_offset];
1016 if (c == current_char) {
1020 if (c2 == current_char) {