Searched refs:current_char (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/
H A Dinterpreter-irregexp.cc88 uint32_t current_char,
92 bool printable = (current_char < 127 && current_char >= 32);
101 current_char,
102 printable ? current_char : '.',
127 current_char, \
195 uint32_t current_char) {
309 current_char = subject[pos];
316 current_char = subject[pos];
326 current_char
84 TraceInterpreter(const byte* code_base, const byte* pc, int stack_depth, int current_position, uint32_t current_char, int bytecode_length, const char* bytecode_name) argument
190 RawMatch(Isolate* isolate, const byte* code_base, Vector<const Char> subject, int* registers, int current, uint32_t current_char) argument
[all...]
/external/chromium/net/tools/flip_server/
H A Dbalsa_frame.h169 inline bool LineFramingFound(char current_char) { argument
170 return current_char == '\n';
175 inline bool HeaderFramingFound(char current_char) { argument
176 // Note that the 'if (current_char == '\n' ...)' test exists to ensure that
180 if (current_char == '\n' || current_char == '\r') {
184 term_chars_ |= current_char & 0xFF;
/external/chromium/net/base/
H A Descape.cc128 char current_char = static_cast<char>(escaped_text[i]); local
129 if (current_char == '%' && i + 2 < max) {

Completed in 74 milliseconds