OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:new_char
(Results
1 - 1
of
1
) sorted by null
/external/v8/src/
interpreter-irregexp.cc
52
unibrow::uchar
new_char
= subject[current++];
local
53
if (old_char ==
new_char
) continue;
55
unibrow::uchar new_string[1] = {
new_char
};
57
interp_canonicalize->get(
new_char
, '\0', new_string);
73
unsigned int
new_char
= subject[current++];
local
74
if (old_char ==
new_char
) continue;
76
if (
new_char
- 'A' <= 'Z' - 'A')
new_char
|= 0x20;
77
if (old_char !=
new_char
) return false;
Completed in 32 milliseconds