Home
last modified time | relevance | path

Searched refs:next_char (Results 1 – 14 of 14) sorted by relevance

/external/libchrome/build/
Dgn_helpers.py138 next_char = value[i + 1]
139 if next_char in ('$', '"', '\\'):
141 result += next_char
225 next_char = self.input[self.cur]
226 if next_char == '[':
228 elif _IsDigitOrMinus(next_char):
230 elif next_char == '"':
242 next_char = self.input[self.cur]
243 if not next_char.isalpha() and not next_char=='_':
246 ident += next_char
[all …]
/external/deqp-deps/glslang/SPIRV/
Dhex_float.h746 auto next_char = is.peek();
747 if (next_char == '-' || next_char == '+') {
862 auto next_char = is.peek();
865 if (next_char != '-' && next_char != '0') {
869 if (next_char == '-') {
872 next_char = is.peek();
875 if (next_char == '0') {
897 while ((next_char = is.peek()) == '0') {
908 if (next_char == '.') {
910 } else if (next_char == 'p') {
[all …]
/external/deqp-deps/SPIRV-Tools/source/util/
Dhex_float.h816 auto next_char = is.peek();
817 if (next_char == '-' || next_char == '+') {
932 auto next_char = is.peek();
935 if (next_char != '-' && next_char != '0') {
939 if (next_char == '-') {
942 next_char = is.peek();
945 if (next_char == '0') {
967 while ((next_char = is.peek()) == '0') {
978 if (next_char == '.') {
980 } else if (next_char == 'p') {
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/util/
Dhex_float.h816 auto next_char = is.peek();
817 if (next_char == '-' || next_char == '+') {
932 auto next_char = is.peek();
935 if (next_char != '-' && next_char != '0') {
939 if (next_char == '-') {
942 next_char = is.peek();
945 if (next_char == '0') {
967 while ((next_char = is.peek()) == '0') {
978 if (next_char == '.') {
980 } else if (next_char == 'p') {
[all …]
/external/webrtc/webrtc/base/
Dbase64_unittest.cc992 char next_char; in TEST() local
993 EXPECT_TRUE(Base64::GetNextBase64Char('A', &next_char)); in TEST()
994 EXPECT_EQ('B', next_char); in TEST()
995 EXPECT_TRUE(Base64::GetNextBase64Char('Z', &next_char)); in TEST()
996 EXPECT_EQ('a', next_char); in TEST()
997 EXPECT_TRUE(Base64::GetNextBase64Char('/', &next_char)); in TEST()
998 EXPECT_EQ('A', next_char); in TEST()
999 EXPECT_FALSE(Base64::GetNextBase64Char('&', &next_char)); in TEST()
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_suppressions.cc120 const char *next_char = StripPrefix(line, suppression_types_[type]); in Parse() local
121 if (next_char && *next_char == ':') { in Parse()
122 line = ++next_char; in Parse()
/external/webrtc/talk/media/base/
Dyuvframegenerator.cc194 char next_char; in ComputeBarcodeDigits() local
195 result->get(next_char); in ComputeBarcodeDigits()
196 uint8_t digit = next_char - '0'; in ComputeBarcodeDigits()
229 char next_char; in DrawBarcode() local
230 value_str_stream.get(next_char); in DrawBarcode()
237 uint8_t digit = next_char - '0'; in DrawBarcode()
/external/harfbuzz_ng/src/
Dhb-ot-shape-normalize.cc106 next_char (hb_buffer_t *buffer, hb_codepoint_t glyph) in next_char() function
171 next_char (buffer, glyph); in decompose_current_character()
183 next_char (buffer, glyph); in decompose_current_character()
194 next_char (buffer, space_glyph); in decompose_current_character()
207 next_char (buffer, other_glyph); in decompose_current_character()
212 next_char (buffer, glyph); /* glyph is initialized in earlier branches. */ in decompose_current_character()
/external/fonttools/Lib/fontTools/voltLib/
Dlexer.py52 next_char = text[start + 1] if start + 1 < limit else None
60 self.pos_ += (2 if next_char == "\n" else 1)
81 if cur_char == "-" and next_char in Lexer.CHAR_DIGIT_:
/external/fonttools/Lib/fontTools/feaLib/
Dlexer.py70 next_char = text[start + 1] if start + 1 < limit else None
78 self.pos_ += (2 if next_char == "\n" else 1)
99 if cur_char == "\\" and next_char in Lexer.CHAR_DIGIT_:
125 if cur_char == "0" and next_char in "xX":
136 if cur_char == "-" and next_char in Lexer.CHAR_DIGIT_:
/external/libchrome/base/json/
Djson_parser.cc455 uint32_t next_char = 0; in ConsumeStringRaw() local
459 &next_char) || in ConsumeStringRaw()
460 !IsValidCharacter(next_char)) { in ConsumeStringRaw()
470 if (next_char == '"') { in ConsumeStringRaw()
474 } else if (next_char != '\\') { in ConsumeStringRaw()
477 string.Append(next_char); in ConsumeStringRaw()
/external/chromium-trace/catapult/devil/devil/android/tools/
Dkeyboard.py102 def next_char(): function
117 Keyboard(devices[0], next_char())
/external/tensorflow/tensorflow/core/kernels/
Dunicode_ops.cc142 UChar32 next_char = ucnv_getNextUChar(converter, &source, limit, &status); in IterateUnicodeString() local
147 callback(next_char, bytes_consumed, format_error); in IterateUnicodeString()
/external/python/cpython3/Lib/
Ddatetime.py289 next_char = tstr[pos:pos+1]
291 if not next_char or comp >= 2:
294 if next_char != ':':
295 raise ValueError('Invalid time separator: %c' % next_char)