Home
last modified time | relevance | path

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

/ohos5.0/build/
H A Dgn_helpers.py155 next_char = value[i + 1]
337 next_char = self.input[self.cur]
338 if next_char == '[':
340 elif _is_digit_or_minus(next_char):
342 elif next_char == '"':
354 next_char = self.input[self.cur]
355 if not next_char.isalpha() and not next_char == '_':
358 ident += next_char
361 next_char = self.input[self.cur]
362 while next_char.isalpha() or next_char.isdigit() or next_char == '_':
[all …]
/ohos5.0/commonlibrary/rust/ylong_json/src/
H A Ddeserializer.rs190 fn next_char(&mut self) -> Result<Option<u8>, Error> { in next_char() function
604 if self.next_char()? == Some(b'{') { in deserialize_enum()
609 if self.next_char()? == Some(b'}') { in deserialize_enum()