/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 | 173 char next_char = cur_char(); 174 if (next_char >= '0' && next_char <= '9') 176 if (next_char == '"') 180 if (next_char != '-' && CouldBeOperator(next_char)) 183 if (IsIdentifierFirstChar(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, ¤t_output_); 341 char32 next_char, 345 InputDigitWithOptionToRememberPosition(next_char, true, ¤t_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...] |
/frameworks/base/core/jni/ |
Time.cpp | 106 next_char(int *m, int k) function in namespace:android 119 buf[0] = next_char(&n, 1000); 120 buf[1] = next_char(&n, 100); 121 buf[2] = next_char(&n, 10); 125 buf[4] = next_char(&n, 10); 129 buf[6] = next_char(&n, 10); 136 buf[9] = next_char(&n, 10); 140 buf[11] = next_char(&n, 10); 144 buf[13] = next_char(&n, 10);
|
/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/third_party/libjingle/source/talk/base/ |
base64_unittest.cc | 1009 char next_char; local [all...] |
/external/v8/preparser/ |
preparser-process.cc | 85 uint8_t next_char = buffer_[offset_]; local 87 if (next_char > 0x7fu) { 88 fprintf(stderr, "Non-ASCII character in input: '%c'.", next_char); 93 return static_cast<int32_t>(next_char);
|
/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/chromium_org/tools/telemetry/telemetry/core/platform/ |
android_platform_backend.py | 233 next_char = '' 234 while next_char != '\n': 235 next_char = stderr.read(1) 236 line += next_char
|
/external/harfbuzz_ng/src/ |
hb-ot-shape-normalize.cc | 118 next_char (hb_buffer_t *buffer, hb_codepoint_t glyph) function 203 next_char (buffer, glyph); 207 next_char (buffer, glyph); 211 next_char (buffer, glyph); /* glyph is initialized in earlier branches. */
|
/external/chromium_org/ui/gfx/ |
render_text_win.cc | 161 // true, this function will not roll back to |start_char| and |*next_char| will 163 // whether to skip the line before |*next_char|. 176 size_t* next_char) { 186 *next_char = i + 1; 210 *next_char = std::max(word->first, start_char); 214 *next_char = i; 217 *next_char = i + 1; 224 *next_char = run.range.end(); 382 size_t next_char = run->range.start(); local 385 while (next_char < run->range.end()) [all...] |
/external/chromium/base/json/ |
json_reader.cc | 608 wchar_t next_char = *(json_pos_ + 1); local 609 if ('/' == next_char) { 622 } else if ('*' == next_char) {
|
/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 | |