Searched refs:next_char (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dasyoutypeformatter.h59 // 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...]
H A Dasyoutypeformatter.cc332 const string& AsYouTypeFormatter::InputDigit(char32 next_char, string* result) { argument
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,
340 InputDigitAndRememberPosition( char32 next_char, string* result) argument
350 InputDigitWithOptionToRememberPosition( char32 next_char, bool remember_position, string* phone_number) argument
705 NormalizeAndAccrueDigitsAndPlusSign( char32 next_char, bool remember_position) argument
726 InputDigitHelper(char next_char, string* number) argument
[all...]
H A Dphonenumbermatcher.cc94 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)) {
/external/chromium_org/tools/gn/
H A Dtokenizer.cc190 char next_char = cur_char();
191 if (IsAsciiDigit(next_char))
193 if (next_char == '"')
197 if (next_char != '-' && CouldBeOperator(next_char))
200 if (IsIdentifierFirstChar(next_char))
203 if (next_char == '[')
205 if (next_char == ']')
207 if (next_char == '(')
209 if (next_char
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dvideo.py147 next_char = ''
148 while next_char != '\n':
149 next_char = stderr.read(1)
150 line += next_char
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_suppressions.cc107 const char *next_char = StripPrefix(line, kTypeStrings[type]); local
108 if (next_char && *next_char == ':') {
109 line = ++next_char;
/external/chromium_org/base/json/
H A Djson_parser.cc427 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 local
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dbase64_unittest.cc992 char next_char; local
993 EXPECT_TRUE(Base64::GetNextBase64Char('A', &next_char));
994 EXPECT_EQ('B', next_char);
995 EXPECT_TRUE(Base64::GetNextBase64Char('Z', &next_char));
996 EXPECT_EQ('a', next_char);
997 EXPECT_TRUE(Base64::GetNextBase64Char('/', &next_char));
998 EXPECT_EQ('A', next_char);
999 EXPECT_FALSE(Base64::GetNextBase64Char('&', &next_char));
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dyuvframegenerator.cc167 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';
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DScanners.pxd30 cdef next_char(self) member in class:Scanner
H A DScanners.py149 self.next_char()
191 # Begin inlined: self.next_char()
235 # End inlined self.next_char()
260 def next_char(self): member in class:Scanner
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-normalize.cc118 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/
H A Dhb-ot-shape-normalize.cc118 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/
H A Drender_text_win.cc104 // true, this function will not roll back to |start_char| and |*next_char| will
106 // whether to skip the line before |*next_char|.
119 size_t* next_char) {
129 *next_char = i + 1;
153 *next_char = std::max(word->first, start_char);
157 *next_char = i;
160 *next_char = i + 1;
167 *next_char = run.range.end();
404 size_t next_char = run->range.start(); local
407 while (next_char < ru
112 BreakRunAtWidth(const wchar_t* text, const internal::TextRun& run, const BreakList<size_t>& breaks, size_t start_char, int available_width, bool empty_line, int* width, size_t* next_char) argument
[all...]
/external/chromium_org/third_party/motemplate/
H A Dmotemplate.py877 next_char = self.NextCharacter()
878 if next_char != char:
879 parse_error = 'Expected \'%s\'. got \'%s\'' % (char, next_char)
/external/chromium_org/v8/src/
H A Dscanner.cc1051 uc32 next_char = c0_; local
1053 AddLiteralChar(next_char);

Completed in 488 milliseconds