Searched refs:current_char (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/v8/src/regexp/ |
H A D | regexp-interpreter.cc | 79 uint32_t current_char, int bytecode_length, in MaybeTraceInterpreter() 82 const bool printable = std::isprint(current_char); in MaybeTraceInterpreter() 87 PrintF(format, pc - code_base, stack_depth, current_position, current_char, in MaybeTraceInterpreter() 88 printable ? current_char : '.'); in MaybeTraceInterpreter() 312 bool CheckBitInTable(const uint32_t current_char, const byte* const table) { in CheckBitInTable() argument 314 int b = table[(current_char & mask) >> kBitsPerByteLog2]; in CheckBitInTable() 315 int bit = (current_char & (kBitsPerByte - 1)); in CheckBitInTable() 378 current_char, RegExpBytecodeLength(BC_##name), #name); 388 uint32_t current_char, RegExp::CallOrigin call_origin, in RawMatch() 584 current_char in RawMatch() 77 MaybeTraceInterpreter(const byte* code_base, const byte* pc, int stack_depth, int current_position, uint32_t current_char, int bytecode_length, const char* bytecode_name) MaybeTraceInterpreter() argument 384 RawMatch( Isolate* isolate, ByteArray code_array, String subject_string, base::Vector<const Char> subject, int* output_registers, int output_register_count, int total_register_count, int current, uint32_t current_char, RegExp::CallOrigin call_origin, const uint32_t backtrack_limit) RawMatch() argument [all...] |
H A D | regexp-macro-assembler.cc | 184 uint32_t RegExpMacroAssembler::IsCharacterInRangeArray(uint32_t current_char, in IsCharacterInRangeArray() argument 199 if (current_char < ranges.get_uint16(0)) return kFalse; in IsCharacterInRangeArray() 200 if (current_char >= ranges.get_uint16(length - 1)) { in IsCharacterInRangeArray() 213 if (current_char < elem) { in IsCharacterInRangeArray() 215 } else if (current_char > elem) { in IsCharacterInRangeArray() 218 DCHECK_EQ(current_char, elem); in IsCharacterInRangeArray() 223 const bool current_char_ge_last_elem = current_char >= ranges.get_uint16(mid); in IsCharacterInRangeArray()
|
H A D | regexp-macro-assembler.h | 214 static uint32_t IsCharacterInRangeArray(uint32_t current_char,
|
/third_party/jerryscript/jerry-core/ecma/base/ |
H A D | ecma-helpers-number.c | 818 ecma_char_t current_char = *string_curr_p++; in ecma_number_parse_int() local 821 if ((current_char >= LIT_CHAR_LOWERCASE_A && current_char <= LIT_CHAR_LOWERCASE_Z)) in ecma_number_parse_int() 823 current_number = current_char - LIT_CHAR_LOWERCASE_A + 10; in ecma_number_parse_int() 825 else if ((current_char >= LIT_CHAR_UPPERCASE_A && current_char <= LIT_CHAR_UPPERCASE_Z)) in ecma_number_parse_int() 827 current_number = current_char - LIT_CHAR_UPPERCASE_A + 10; in ecma_number_parse_int() 829 else if (lit_char_is_decimal_digit (current_char)) in ecma_number_parse_int() 831 current_number = current_char - LIT_CHAR_0; in ecma_number_parse_int() 860 ecma_char_t current_char in ecma_number_parse_int() local [all...] |
/third_party/libphonenumber/cpp/src/phonenumbers/ |
H A D | stringutil.cc | 109 const char current_char = *it; in strrmm() local 110 if (chars.find(current_char) != string::npos) { in strrmm()
|
H A D | phonenumberutil.cc | 1020 char current_char[5]; in TrimUnwantedEndChars() local 1024 len = reverse_it.get_utf8(current_char); in TrimUnwantedEndChars() 1025 current_char[len] = '\0'; in TrimUnwantedEndChars() 1026 if (!reg_exps_->unwanted_end_char_pattern_->FullMatch(current_char)) { in TrimUnwantedEndChars() 2359 char current_char[5]; in ExtractPossibleNumber() local 2363 len = it.get_utf8(current_char); in ExtractPossibleNumber() 2364 current_char[len] = '\0'; in ExtractPossibleNumber() 2365 if (reg_exps_->valid_start_char_pattern_->FullMatch(current_char)) { in ExtractPossibleNumber()
|
Completed in 11 milliseconds