| /third_party/libunwind/libunwind/doc/ |
| H A D | unw_regname.tex | 15 \Type{const char~*}\Func{unw\_regname}(\Type{unw\_regnum\_t} \Var{regnum});\\
|
| /third_party/python/Lib/ |
| H A D | crypt.py | 70 s += ''.join(_sr.choice(_saltchars) for char in range(method.salt_chars))
|
| /third_party/python/Lib/ctypes/test/ |
| H A D | test_struct_fields.py | 51 _fields_ = (("char", c_char * 5),) 54 x.char = b'a\0b\0'
|
| /third_party/rust/crates/regex/examples/ |
| H A D | shootout-regex-dna-single-cheat.rs | 62 alternates.push((re as char).to_string()); in replace_all()
|
| H A D | shootout-regex-dna-cheat.rs | 77 alternates.push((re as char).to_string()); in replace_all()
|
| /third_party/rust/crates/nom/examples/ |
| H A D | json.rs | 6 character::complete::{alphanumeric1 as alphanumeric, char, one_of}, 99 preceded(char('\"'), cut(terminated(parse_str, char('\"')))), in string() 113 char('['), in array() 115 separated_list0(preceded(sp, char(',')), json_value), in array() 116 preceded(sp, char(']')), in array() 127 cut(preceded(sp, char(':'))), in array() 138 char('{'), in hash() 141 separated_list0(preceded(sp, char(',')), key_value), in hash() 149 preceded(sp, char('}')), [all...] |
| /third_party/rust/crates/shlex/src/ |
| H A D | lib.rs | 57 match ch as char { in parse_word() 83 match ch2 as char { in parse_double() 86 match ch3 as char { in parse_double() 110 match ch2 as char { in parse_single() 133 match ch as char { in next() 137 if ch2 as char == '\n' { break; } in next() 164 } else if in_str.bytes().any(|c| match c as char { in quote() 172 match c as char { in quote()
|
| /third_party/node/deps/npm/node_modules/eastasianwidth/ |
| H A D | eastasianwidth.js | 299 var char = chars[i]; 300 var charLen = eaw.length(char); 303 result += char;
|
| /third_party/rust/crates/nom/src/ |
| H A D | error.rs | 26 fn from_char(input: I, _: char) -> Self { in from_char() 164 /// Indicates which character was expected by the `char` function 165 Char(char), 184 fn from_char(input: I, c: char) -> Self { in from_char() 611 use crate::character::complete::char; 617 let _result: IResult<_, _, VerboseError<&str>> = char('x')(input); in convert_error_panic()
|
| /third_party/rust/crates/nix/test/sys/ |
| H A D | test_uio.rs | 23 .map(char::from) in test_writev() 67 .map(char::from) in test_readv()
|
| /third_party/rust/crates/clap/src/builder/ |
| H A D | command.rs | 74 short_flag: Option<char>, 87 short_flag_aliases: Vec<(char, bool)>, // (name, visible) 2198 pub fn short_flag(mut self, short: impl IntoResettable<char>) -> Self { in short_flag() 2293 pub fn short_flag_alias(mut self, name: impl IntoResettable<char>) -> Self { in short_flag_alias() 2384 pub fn short_flag_aliases(mut self, names: impl IntoIterator<Item = char>) -> Self { in short_flag_aliases() 2476 pub fn visible_short_flag_alias(mut self, name: impl IntoResettable<char>) -> Self { in visible_short_flag_alias() 2565 pub fn visible_short_flag_aliases(mut self, names: impl IntoIterator<Item = char>) -> Self { in visible_short_flag_aliases() 3266 pub fn get_short_flag(&self) -> Option<char> { in get_short_flag() 3311 pub fn get_visible_short_flag_aliases(&self) -> impl Iterator<Item = char> + '_ { in get_visible_aliases() 3335 pub fn get_all_short_flag_aliases(&self) -> impl Iterator<Item = char> in get_visible_aliases() [all...] |
| /third_party/node/test/parallel/ |
| H A D | test-icu-transcode.js | 25 assert.strictEqual(dest[n], tests[test][n], `utf8->${test} char ${n}`);
|
| /third_party/musl/dist/ |
| H A D | config.mak | 33 #CFLAGS += -Werror -Wall -Wpointer-arith -Wcast-align -Wno-parentheses -Wno-char-subscripts -Wno-uninitialized -Wno-sequence-point -Wno-missing-braces -Wno-unused-value -Wno-overflow -Wno-int-to-pointer-cast
|
| /third_party/rust/crates/codespan/codespan/src/ |
| H A D | index.rs | 246 pub fn from_char_len(ch: char) -> ByteOffset { in from_char_len()
|
| /third_party/rust/crates/cxx/gen/build/src/ |
| H A D | deps.rs | 78 let without_counter = k.trim_end_matches(|ch: char| ch.is_ascii_digit()); in direct_dependencies()
|
| /third_party/rust/crates/serde/test_suite/tests/ |
| H A D | test_ignored_any.rs | 32 bool i8 i16 i32 i64 i128 u8 u16 u32 u64 u128 f32 f64 char str string
|
| /third_party/rust/crates/quote/src/ |
| H A D | to_tokens.rs | 158 impl ToTokens for char {
|
| /third_party/rust/crates/serde/serde/src/ser/ |
| H A D | fmt.rs | 63 serialize_char: char,
|
| /third_party/node/lib/internal/readline/ |
| H A D | interface.js | 993 for (const char of new SafeStringIterator(str)) { 994 if (char === '\n') { 1001 if (char === '\t') { 1005 const width = getStringWidth(char, false /* stripVTControlCharacters */);
|
| /third_party/rust/crates/glob/src/ |
| H A D | lib.rs | 515 Char(char), 525 SingleChar(char), 526 CharRange(char, char), 907 fn parse_char_specifiers(s: &[char]) -> Vec<CharSpecifier> { in parse_char_specifiers() 922 fn in_char_specifiers(specifiers: &[CharSpecifier], c: char, options: MatchOptions) -> bool { in in_char_specifiers() 960 fn chars_eq(a: char, b: char, case_sensitive: bool) -> bool { in chars_eq()
|
| /third_party/rust/crates/proc-macro2/src/ |
| H A D | lib.rs | 778 ch: char, 804 pub fn new(ch: char, spacing: Spacing) -> Self { in new() 812 /// Returns the value of this punctuation character as `char`. 813 pub fn as_char(&self) -> char { in as_char() 848 debug.field("char", &self.ch); in fmt() 1215 pub fn character(ch: char) -> Literal { in character()
|
| /third_party/node/lib/internal/repl/ |
| H A D | utils.js | 428 for (const char of new SafeStringIterator(inspected)) { 429 maxColumns -= getStringWidth(char); 432 res += char;
|
| /third_party/rust/crates/codespan/codespan-reporting/src/term/ |
| H A D | renderer.rs | 668 char_indices: impl Iterator<Item = (usize, char)>, in char_metrics() 669 ) -> impl Iterator<Item = (Metrics, char)> { in char_metrics() 749 char_indices: impl Iterator<Item = (usize, char)>, in caret_pointers()
|
| /third_party/python/Lib/idlelib/ |
| H A D | autocomplete_w.py | 425 elif event.char and event.char >= ' ': 427 self._change_start(self.start + event.char)
|
| /third_party/node/deps/undici/ |
| H A D | undici.js | 3690 const char = str[i]; 3691 if (char === "\\" && inquote) { 3698 } else if (char === '"') { 3715 if ((state === STATE_CHARSET || state === STATE_LANG) && char === "'") { 3724 } else if (state === STATE_KEY && (char === "*" || char === "=") && res.length) { 3725 state = char === "*" ? STATE_CHARSET : STATE_VALUE; 3729 } else if (!inquote && char === ";") { 3751 } else if (!inquote && (char === " " || char [all...] |