HomeSort by relevance Sort by last modified time
    Searched refs:current_char (Results 1 - 5 of 5) sorted by null

  /system/core/toolbox/
readtty.c 71 char current_char = 0; local
122 if(current_char) {
123 write(STDERR_FILENO, &current_char, 1);
124 write(STDOUT_FILENO, &current_char, 1);
125 if(exit_string && current_char == exit_string[exit_match]) {
132 current_char = 0;
152 if(current_char) {
153 current_char = prev_char(last_char_in, current_char);
154 write(STDERR_FILENO, &current_char, 1)
    [all...]
  /external/v8/src/
interpreter-irregexp.cc 88 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
    [all...]
jsregexp.cc 4336 unsigned current_char = j; local
    [all...]
  /external/chromium/net/tools/flip_server/
balsa_frame.h 169 inline bool LineFramingFound(char current_char) {
170 return current_char == '\n';
175 inline bool HeaderFramingFound(char current_char) {
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/
escape.cc 128 char current_char = static_cast<char>(escaped_text[i]); local
129 if (current_char == '%' && i + 2 < max) {

Completed in 205 milliseconds