HomeSort by relevance Sort by last modified time
    Searched refs:current_char (Results 1 - 11 of 11) 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/chromium_org/v8/src/
interpreter-irregexp.cc 73 uint32_t current_char,
77 bool printable = (current_char < 127 && current_char >= 32);
86 current_char,
87 printable ? current_char : '.',
112 current_char, \
164 uint32_t current_char) {
278 current_char = subject[pos];
285 current_char = subject[pos];
295 current_char
    [all...]
  /external/chromium_org/net/tools/balsa/
balsa_frame.h 167 inline bool LineFramingFound(char current_char) {
168 return current_char == '\n';
173 inline bool HeaderFramingFound(char current_char) {
174 // Note that the 'if (current_char == '\n' ...)' test exists to ensure that
178 if (current_char == '\n' || current_char == '\r') {
182 term_chars_ |= current_char & 0xFF;
  /external/chromium_org/sandbox/win/src/
policy_low_level.cc 225 const wchar_t* current_char = string; local
231 while (L'\0' != *current_char) {
232 switch (*current_char) {
260 if (L'?' == current_char[1]) {
261 ++current_char;
264 fragment += *current_char;
267 ++current_char;
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
asyoutypeformatter.cc 77 const char current_char = *it; local
79 if (isdigit(current_char)) {
81 new_pattern += current_char;
86 new_pattern += current_char;
87 if (current_char == '{') {
89 } else if (current_char == '}') {
phonenumberutil.cc 769 char current_char[5]; local
1960 char current_char[5]; local
    [all...]
stringutil.cc 146 const char current_char = *it; local
147 if (chars.find(current_char) != string::npos) {
  /external/chromium_org/ui/gfx/
render_text_harfbuzz.cc 328 const UChar32 current_char = iter.get(); local
329 const UBlockCode current_block = ublock_getCode(current_char);
332 if (block_break || first_bracket != IsBracket(current_char))
    [all...]
render_text_win.cc 408 const size_t current_char = next_char; local
409 const bool skip_line = BreakRunAtWidth(text_, *run, *words_, current_char,
411 AddSegment(run_index, Range(current_char, next_char), width);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
android.py     [all...]
  /external/chromium_org/pdf/pdfium/
pdfium_engine.cc 480 const base::char16& current_char = (*text)[i]; local
481 if (current_char == kPdfiumHyphenEOL) {
487 } else if (IsWhitespace(current_char)) {
489 if (current_char != L'\r' && current_char != L'\n')
    [all...]

Completed in 330 milliseconds