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

  /cts/tools/dasm/src/java_cup/
lexer.java 55 protected static int next_char; field in class:lexer
135 next_char = System.in.read();
136 if (next_char == EOF_CHAR)
145 * next_char2 to next_char and then reads a new next_char2.
151 old_char = next_char;
152 next_char = next_char2;
153 if (next_char == EOF_CHAR)
241 /* next_char == '/' at this point */
253 if (next_char == EOF_CHAR)
260 if (next_char == '*' && next_char2 == '/'
    [all...]
  /external/chromium_org/tools/gn/
tokenizer.cc 171 char next_char = cur_char();
172 if (IsAsciiDigit(next_char))
174 if (next_char == '"')
178 if (next_char != '-' && CouldBeOperator(next_char))
181 if (IsIdentifierFirstChar(next_char))
184 if (next_char == '[')
186 if (next_char == ']')
188 if (next_char == '(')
190 if (next_char == ')'
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
asyoutypeformatter.h 59 // next_char is the most recently entered digit of a phone number. Formatting
65 const string& InputDigit(char32 next_char, string* result);
67 // Same as InputDigit, but remembers the position where next_char is inserted,
70 // characters are later inserted/removed in front of next_char.
73 const string& InputDigitAndRememberPosition(char32 next_char, string* result);
112 void InputDigitWithOptionToRememberPosition(char32 next_char,
162 // later use. If next_char contains a digit in non-ASCII format (e.g the
164 // version. The return value is next_char itself, or its normalized version,
165 // if next_char is a digit in non-ASCII format.
166 char NormalizeAndAccrueDigitsAndPlusSign(char32 next_char,
    [all...]
asyoutypeformatter.cc 332 const string& AsYouTypeFormatter::InputDigit(char32 next_char, string* result) {
335 InputDigitWithOptionToRememberPosition(next_char, false, &current_output_);
341 char32 next_char,
345 InputDigitWithOptionToRememberPosition(next_char, true, &current_output_);
351 char32 next_char,
356 accrued_input_.append(next_char);
363 UnicodeString(next_char).toUTF8String(next_char_string);
367 (accrued_input_.length() == 1 && next_char == kPlusSign))) {
372 NormalizeAndAccrueDigitsAndPlusSign(next_char, remember_position);
706 char32 next_char,
    [all...]
phonenumbermatcher.cc 94 char next_char = candidate[found + 1]; local
95 if (next_char == 'x' || next_char == 'X') {
439 char32 next_char; local
443 EncodingUtils::DecodeUTF8Char(next_char_ptr, &next_char);
444 if (IsInvalidPunctuationSymbol(next_char) || IsLatinLetter(next_char)) {
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_suppressions.cc 107 const char *next_char = StripPrefix(line, kTypeStrings[type]); local
108 if (next_char && *next_char == ':') {
109 line = ++next_char;
  /external/chromium_org/base/json/
json_parser.cc 427 char next_char = *NextChar(); local
428 if (next_char == '/') {
431 char next_char = *NextChar(); local
432 if (next_char == '\n' || next_char == '\r')
435 } else if (next_char == '*') {
439 next_char = *NextChar();
440 if (previous_char == '*' && next_char == '/') {
447 previous_char = next_char;
615 int32 next_char = 0 local
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/
video.py 145 next_char = ''
146 while next_char != '\n':
147 next_char = stderr.read(1)
148 line += next_char
  /external/chromium_org/third_party/libjingle/source/talk/base/
base64_unittest.cc 1009 char next_char; local
    [all...]
  /external/chromium_org/third_party/webrtc/base/
base64_unittest.cc 992 char next_char; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
yuvframegenerator.cc 167 char next_char; local
168 result->get(next_char);
169 uint8 digit = next_char - '0';
202 char next_char; local
203 value_str_stream.get(next_char);
210 uint8 digit = next_char - '0';
  /ndk/sources/host-tools/sed-4.2.1/sed/
fmt.c 198 static int next_char; variable
219 next_char = GETC();
240 c = next_char;
249 next_char = EOF;
269 next_char = c;
  /system/core/toolbox/
readtty.c 26 char next_char(char key, char current) function
172 current_char = next_char(last_char_in, current_char);
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-normalize.cc 118 next_char (hb_buffer_t *buffer, hb_codepoint_t glyph) function
204 next_char (buffer, glyph);
208 next_char (buffer, glyph);
212 next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
  /external/harfbuzz_ng/src/
hb-ot-shape-normalize.cc 118 next_char (hb_buffer_t *buffer, hb_codepoint_t glyph) function
204 next_char (buffer, glyph);
208 next_char (buffer, glyph);
212 next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
  /external/chromium_org/ui/gfx/
render_text_win.cc 162 // true, this function will not roll back to |start_char| and |*next_char| will
164 // whether to skip the line before |*next_char|.
177 size_t* next_char) {
187 *next_char = i + 1;
211 *next_char = std::max(word->first, start_char);
215 *next_char = i;
218 *next_char = i + 1;
225 *next_char = run.range.end();
403 size_t next_char = run->range.start(); local
406 while (next_char < run->range.end())
    [all...]
  /external/chromium_org/third_party/handlebar/
handlebar.py 880 next_char = self.NextCharacter()
881 if next_char != char:
882 parse_error = 'Expected \'%s\'. got \'%s\'' % (char, next_char)
    [all...]
  /cts/tools/dasm/etc/
java_cup-new.jar 
java_cup.jar 
java_cup.jar.old 
  /dalvik/dx/etc/
jasmin.jar 

Completed in 2022 milliseconds