/third_party/rust/crates/clap/clap_lex/tests/ |
H A D | shorts.rs | 7 let shorts = next.to_short().unwrap(); in iter() 9 let actual: String = shorts.map(|s| s.unwrap()).collect(); in iter() 19 let mut shorts = next.to_short().unwrap(); in next_flag() variables 22 actual.push(shorts.next_flag().unwrap().unwrap()); in next_flag() 23 actual.push(shorts.next_flag().unwrap().unwrap()); in next_flag() 24 actual.push(shorts.next_flag().unwrap().unwrap()); in next_flag() 25 actual.push(shorts.next_flag().unwrap().unwrap()); in next_flag() 26 actual.push(shorts.next_flag().unwrap().unwrap()); in next_flag() 27 assert_eq!(shorts.next_flag(), None); in next_flag() 38 let mut shorts in next_value_os() variables 51 let mut shorts = next.to_short().unwrap(); next_flag_with_value() variables 65 let mut shorts = next.to_short().unwrap(); next_flag_with_no_value() variables 82 let mut shorts = next.to_short().unwrap(); advance_by_nothing() variables 96 let mut shorts = next.to_short().unwrap(); advance_by_something() variables 110 let mut shorts = next.to_short().unwrap(); advance_by_out_of_bounds() variables 135 let mut shorts = next.to_short().unwrap(); is_partial_not_empty() variables 147 let mut shorts = next.to_short().unwrap(); is_exhausted_empty() variables [all...] |
H A D | parsed.rs | 114 let shorts = next.to_short().unwrap(); in to_short() 115 let actual: String = shorts.map(|s| s.unwrap()).collect(); in to_short()
|
/third_party/ffmpeg/libavcodec/ppc/ |
H A D | pixblockdsp.c | 52 // Convert the bytes into shorts. in get_pixels_altivec() 53 //vector signed short shorts = (vector signed short) vec_perm(zero, bytes, perm); in get_pixels_altivec() 54 vector signed short shorts = (vector signed short) vec_perm(bytes, zero, perm); in get_pixels_altivec() local 57 vec_vsx_st(shorts, i * 16, (vector signed short *) block); in get_pixels_altivec() 78 // Convert the bytes into shorts. in get_pixels_altivec() 79 vec_s16 shorts = (vec_s16)vec_mergeh(zero, bytes); in get_pixels_altivec() local 82 vec_st(shorts, i * 16, (vec_s16 *)block); in get_pixels_altivec() 105 // Convert the bytes into shorts. in diff_pixels_altivec() 111 // Convert the bytes into shorts. in diff_pixels_altivec() 132 // Convert the bytes into shorts in diff_pixels_altivec() 237 vec_s16 shorts = vsx_ld_u8_s16(0, pixels); get_pixels_vsx() local [all...] |
/third_party/node/deps/npm/node_modules/jackspeak/dist/esm/ |
H A D | index.js | 241 #shorts; 259 this.#shorts = Object.create(null); 542 if (this.#shorts[name]) { 544 `in use for ${this.#shorts[name]}`); 551 if (this.#shorts[field.short]) { 553 `already in use for ${this.#shorts[field.short]}`); 555 this.#shorts[field.short] = name; 556 this.#shorts[name] = name; 585 const shorts = []; 593 shorts [all...] |
/third_party/node/deps/npm/node_modules/jackspeak/dist/commonjs/ |
H A D | index.js | 249 #shorts; 267 this.#shorts = Object.create(null); 550 if (this.#shorts[name]) { 552 `in use for ${this.#shorts[name]}`); 559 if (this.#shorts[field.short]) { 561 `already in use for ${this.#shorts[field.short]}`); 563 this.#shorts[field.short] = name; 564 this.#shorts[name] = name; 593 const shorts = []; 601 shorts [all...] |
/third_party/rust/crates/clap/clap_complete/src/shells/ |
H A D | fish.rs | 88 if let Some(shorts) = option.get_short_and_visible_aliases() { in gen_fish_inner() 89 for short in shorts { in gen_fish_inner() 114 if let Some(shorts) = flag.get_short_and_visible_aliases() { in gen_fish_inner() 115 for short in shorts { in gen_fish_inner()
|
H A D | bash.rs | 180 if let Some(shorts) = o.get_short_and_visible_aliases() { in option_details_for_path() 181 opts.extend(shorts.iter().map(|short| { in option_details_for_path()
|
/third_party/rust/crates/clap/clap_complete_fig/src/ |
H A D | fig.rs | 152 if let Some(shorts) = option.get_short_and_visible_aliases() { in gen_options() 154 shorts in gen_options() 269 if let Some(shorts) = flag.get_short_and_visible_aliases() { in gen_options() 270 flags.extend(shorts.iter().map(|s| format!("-{s}"))); in gen_options()
|
/third_party/ntfs-3g/libntfs-3g/ |
H A D | unistr.c | 830 int shorts, ret = -1; in ntfs_utf8_to_utf16() local 832 shorts = utf8_to_utf16_size(ins); in ntfs_utf8_to_utf16() 833 if (shorts < 0) in ntfs_utf8_to_utf16() 838 *outs = ntfs_malloc((shorts + 1) * sizeof(ntfschar)); in ntfs_utf8_to_utf16()
|
/third_party/rust/crates/clap/src/builder/ |
H A D | arg.rs | 3768 let mut shorts = match self.short { in get_short_and_visible_aliases() variables 3773 shorts.extend(aliases); in get_short_and_visible_aliases() 3775 Some(shorts) in get_short_and_visible_aliases()
|
H A D | command.rs | 4385 "If Command::_build hasn't been called, manually search through Arg shorts"
|