| /third_party/skia/third_party/externals/angle2/src/libANGLE/ |
| H A D | gen_overlay_fonts.py | 194 char = chars[charIndex] 199 face.load_char(char)
|
| /third_party/typescript/tests/baselines/reference/ |
| H A D | constructorWithIncompleteTypeAnnotation.js | 81 var char = 'c', \u0066 = '\u0066', hexchar = '\x42' != 87 var con = char + f + hexchar + float.toString() + float2.toString() + reg.toString() + objLit + weekday; 373 var char = 'c', \u0066 = '\u0066', hexchar = '\x42' !=
379 var con = char + f + hexchar + float.toString() + float2.toString() + reg.toString() + objLit + weekday;
|
| /third_party/rust/crates/serde/serde/src/private/ |
| H A D | doc.rs | 101 (char) => { 102 __serialize_unimplemented_method!(serialize_char(char) -> Ok);
|
| /third_party/rust/crates/unicode-ident/generate/src/ |
| H A D | main.rs | 63 for i in 0..(u32::from(char::MAX) + 1) / CHUNK as u32 / 8 { in main() 72 if let Some(ch) = char::from_u32(code) { in main()
|
| /third_party/python/Lib/json/ |
| H A D | decoder.py | 34 errmsg = '%s: line %d column %d (char %d)' % (msg, lineno, colno, pos) 111 char = _b[esc] 124 char = chr(uni) 125 _append(char)
|
| /third_party/rust/crates/nom/examples/ |
| H A D | s_expression.rs | 10 character::complete::{alpha1, char, digit1, multispace0, multispace1, one_of}, 160 char('('), in s_exp() 162 context("closing paren", cut(preceded(multispace0, char(')')))), in s_exp()
|
| /third_party/rust/crates/rust-cexpr/tests/ |
| H A D | clang.rs | 14 use std::{char, ffi, mem, ptr, slice}; 71 write!(s, "{}", char::from_u32(chr).unwrap()).unwrap(); in test_definition() 93 .and_then(char::from_u32) in test_definition()
|
| /third_party/rust/crates/aho-corasick/src/ |
| H A D | tests.rs | 597 "libcore/char/methods.rs", 603 "libcore/char/methods.rs", 1115 for c1 in (b'a'..b'z').map(|b| b as char) { in state_id_too_small() 1116 for c2 in (b'a'..b'z').map(|b| b as char) { in state_id_too_small() 1117 for c3 in (b'a'..b'z').map(|b| b as char) { in state_id_too_small() 1158 let c = c as char; in regression_case_insensitive_prefilter() 1159 let c2 = c2 as char; in regression_case_insensitive_prefilter()
|
| /third_party/python/Lib/test/ |
| H A D | test_multibytecodec.py | 384 encoder.encode(char) 385 for char in self.text) 394 encoder.encode(char, index == last_index) 395 for index, char in enumerate(self.text))
|
| /third_party/rust/crates/regex/regex-syntax/src/hir/ |
| H A D | interval.rs | 1 use std::char; 494 impl Bound for char { 508 c => char::from_u32((c as u32).checked_add(1).unwrap()).unwrap(), in increment() 515 c => char::from_u32((c as u32).checked_sub(1).unwrap()).unwrap(), in decrement()
|
| /third_party/rust/crates/regex/src/ |
| H A D | compile.rs | 288 let (s, e) = (r.start() as char, r.end() as char); in c() 440 fn c_char(&mut self, c: char) -> ResultOrEmpty { in c_char() 464 let ranges: Vec<(char, char)> = in c_class() 470 ranges.len() * (size_of::<char>() * 2); in c_class() 954 Char { c: char }, 955 Ranges { ranges: Vec<(char, char)> },
|
| H A D | backtrack.rs | 235 if inst.c == at.char() { in step() 243 if inst.matches(at.char()) { in step()
|
| H A D | pikevm.rs | 246 if inst.c == at.char() { in step() 252 if inst.matches(at.char()) { in step()
|
| /third_party/node/test/parallel/ |
| H A D | test-fs-sir-writes-alot.js | 61 throw new Error(`invalid char ${i},${b[i]}`);
|
| /third_party/rust/crates/nom/benchmarks/benches/ |
| H A D | http.rs | 7 use nom::{IResult, bytes::complete::{tag, take_while1}, character::complete::{line_ending, char}, multi::many1}; 98 let (input, _) = char(':')(input)?;
|
| /third_party/rust/crates/unicode-ident/tests/ |
| H A D | compare.rs | 12 for ch in '\0'..=char::MAX { in compare_all_implementations()
|
| /third_party/rust/crates/os_str_bytes/src/ |
| H A D | pattern.rs | 44 impl Pattern for char {
|
| /third_party/rust/crates/clap/clap_lex/src/ |
| H A D | lib.rs | 443 pub fn next_flag(&mut self) -> Option<Result<char, &'s RawOsStr>> { in display() 474 type Item = Result<char, &'s RawOsStr>;
|
| /third_party/python/Lib/test/test_email/ |
| H A D | test__encoded_words.py | 65 res, char, l, d = _ew.decode(source) 67 self.assertEqual(char, charset)
|
| /third_party/rust/crates/memchr/src/tests/memchr/ |
| H A D | testdata.rs | 170 needles[0] as char, in one() 194 needles[0] as char, in two() 195 needles[1] as char, in two() 219 needles[0] as char, in three() 220 needles[1] as char, in three() 221 needles[2] as char, in three() 267 self.needles.iter().map(|&b| b as char).collect::<Vec<char>>(), in iter()
|
| /third_party/rust/crates/unicode-width/src/ |
| H A D | tests.rs | 71 fn simple_width_if(c: char) -> Option<usize> { in simple_width_if() 88 fn simple_width_match(c: char) -> Option<usize> { in simple_width_match()
|
| H A D | lib.rs | 11 //! Determine displayed width of `char` and `str` types according to 90 impl UnicodeWidthChar for char {
|
| /third_party/rust/crates/syn/src/ |
| H A D | bigint.rs | 20 repr.push((*digit + b'0') as char);
|
| /third_party/rust/crates/nom/tests/ |
| H A D | css.rs | 17 fn is_hex_digit(c: char) -> bool { in is_hex_digit()
|
| /third_party/littlefs/scripts/ |
| H A D | plot.py | 320 char=True): 326 self.grid[x + y*self.width] = (color, char) 330 char=True): 344 self.grid[x1 + y1*self.width] = (color, char) 362 self.grid[x2 + y2*self.width] = (color, char) 366 char=True, 374 char=line_char) 377 if char and (not line_char or char is not True): 382 char [all...] |