/foundation/arkui/ace_engine/test/unittest/core/pattern/image/ |
H A D | image_base.h | 124 const std::string& src, const std::string& alt, RefPtr<PixelMap> pixMap = nullptr); 126 const std::string& src, const std::string& alt, RefPtr<PixelMap> pixMap = nullptr);
|
/kernel/linux/linux-5.10/include/linux/usb/ |
H A D | typec.h | 140 struct typec_port *typec_altmode2port(struct typec_altmode *alt); 142 void typec_altmode_update_active(struct typec_altmode *alt, bool active);
|
/third_party/curl/src/ |
H A D | tool_operhlp.c | 240 char *alt = aprintf("%s/%s", tdir, *filename); in get_url_file_name() local 242 *filename = alt; in get_url_file_name()
|
/third_party/rust/crates/rust-cexpr/src/ |
H A D | literal.rs | 42 use nom::branch::alt; 185 alt(( in escaped_char() 205 alt((tag("u8"), tag("u"), tag("U"), tag("L")))(i) in c_width_prefix() 211 alt(( in c_char() 221 alt((preceded(c_width_prefix, char('"')), char('"'))), in c_string() 223 alt(( in c_string() 258 alt(( in c_int() 300 alt(( in c_float() 346 alt(( in one_literal()
|
/kernel/linux/linux-5.10/drivers/usb/gadget/function/ |
H A D | f_uac1.c | 437 static int f_audio_set_alt(struct usb_function *f, unsigned intf, unsigned alt) in f_audio_set_alt() argument 445 /* No i/f has more than 2 alt settings */ in f_audio_set_alt() 446 if (alt > 1) { in f_audio_set_alt() 453 if (alt) { in f_audio_set_alt() 461 uac1->as_out_alt = alt; in f_audio_set_alt() 463 if (alt) in f_audio_set_alt() 468 uac1->as_in_alt = alt; in f_audio_set_alt() 470 if (alt) in f_audio_set_alt()
|
/third_party/python/Lib/test/ |
H A D | test_wsgiref.py | 299 def checkDefault(self, key, value, alt=None): 311 env = {key:alt} 313 self.assertIs(env[key], alt) 441 for alt in hop, hop.title(), hop.upper(), hop.lower(): 442 self.assertTrue(util.is_hop_by_hop(alt)) 448 for alt in hop, hop.title(), hop.upper(), hop.lower(): 449 self.assertFalse(util.is_hop_by_hop(alt))
|
/third_party/rust/crates/regex/regex-syntax/src/ast/ |
H A D | parse.rs | 724 let (mut prior_concat, mut group, ignore_whitespace, alt) = match stack in pop_group() 730 Some(Alternation(alt)) => match stack.pop() { in pop_group() 732 (concat, group, ignore_whitespace, Some(alt)) in pop_group() 750 match alt { in pop_group() 751 Some(mut alt) => { in pop_group() 752 alt.span.end = group_concat.span.end; in pop_group() 753 alt.asts.push(group_concat.into_ast()); in pop_group() 754 group.ast = Box::new(alt.into_ast()); in pop_group() 776 Some(GroupState::Alternation(mut alt)) => { in pop_group_end() 777 alt in pop_group_end() 2446 fn alt(range: Range<usize>, asts: Vec<Ast>) -> Ast { alt() functions [all...] |
/kernel/linux/linux-5.10/arch/powerpc/perf/ |
H A D | mpc7450-pmu.c | 222 static int mpc7450_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in mpc7450_get_alternatives() argument 227 alt[0] = event; in mpc7450_get_alternatives() 234 alt[nalt++] = ae; in mpc7450_get_alternatives()
|
H A D | ppc970-pmu.c | 244 static int p970_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in p970_get_alternatives() argument 246 alt[0] = event; in p970_get_alternatives() 250 alt[1] = event ^ 0x1000; in p970_get_alternatives()
|
/kernel/linux/linux-5.10/drivers/ata/ |
H A D | pata_artop.c | 280 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no]; in artop6210_qc_defer() local 290 if (alt && alt->qc_active) in artop6210_qc_defer()
|
/kernel/linux/linux-6.6/arch/arm64/include/asm/ |
H A D | kvm_asm.h | 287 void kvm_patch_vector_branch(struct alt_instr *alt, 289 void kvm_get_kimage_voffset(struct alt_instr *alt, 291 void kvm_compute_final_ctr_el0(struct alt_instr *alt,
|
/kernel/linux/linux-6.6/arch/powerpc/perf/ |
H A D | mpc7450-pmu.c | 222 static int mpc7450_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in mpc7450_get_alternatives() argument 227 alt[0] = event; in mpc7450_get_alternatives() 234 alt[nalt++] = ae; in mpc7450_get_alternatives()
|
H A D | ppc970-pmu.c | 244 static int p970_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in p970_get_alternatives() argument 246 alt[0] = event; in p970_get_alternatives() 250 alt[1] = event ^ 0x1000; in p970_get_alternatives()
|
/kernel/linux/linux-6.6/drivers/ata/ |
H A D | pata_artop.c | 280 struct ata_port *alt = host->ports[1 ^ qc->ap->port_no]; in artop6210_qc_defer() local 290 if (alt && alt->qc_active) in artop6210_qc_defer()
|
/kernel/linux/linux-5.10/drivers/media/usb/em28xx/ |
H A D | em28xx-video.c | 58 static int alt; variable 59 module_param(alt, int, 0644); 60 MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint"); 135 /*FIXME: maxw should be dependent of alt mode */ 367 * NOTE: for isoc transfers, only alt settings > 0 are allowed in em28xx_set_alternate() 368 * bulk transfers seem to work only with alt=0 ! in em28xx_set_alternate() 370 dev->alt = 0; in em28xx_set_alternate() 371 if (alt > 0 && alt < dev->num_alt) { in em28xx_set_alternate() 372 em28xx_videodbg("alternate forced to %d\n", dev->alt); in em28xx_set_alternate() [all...] |
/kernel/linux/linux-6.6/drivers/media/usb/em28xx/ |
H A D | em28xx-video.c | 48 static int alt; variable 49 module_param(alt, int, 0644); 50 MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint"); 125 /*FIXME: maxw should be dependent of alt mode */ 357 * NOTE: for isoc transfers, only alt settings > 0 are allowed in em28xx_set_alternate() 358 * bulk transfers seem to work only with alt=0 ! in em28xx_set_alternate() 360 dev->alt = 0; in em28xx_set_alternate() 361 if (alt > 0 && alt < dev->num_alt) { in em28xx_set_alternate() 362 em28xx_videodbg("alternate forced to %d\n", dev->alt); in em28xx_set_alternate() [all...] |
/kernel/linux/linux-5.10/arch/x86/include/asm/ |
H A D | vdso.h | 17 unsigned long alt, alt_len; member
|
/kernel/linux/linux-5.10/arch/arm64/include/asm/ |
H A D | alternative.h | 21 typedef void (*alternative_cb_t)(struct alt_instr *alt,
|
/kernel/linux/linux-5.10/tools/objtool/ |
H A D | special.h | 34 void arch_handle_alternative(unsigned short feature, struct special_alt *alt);
|
/kernel/linux/linux-6.6/include/linux/usb/ |
H A D | typec_retimer.h | 15 struct typec_altmode *alt; member
|
/kernel/linux/linux-6.6/arch/x86/include/asm/ |
H A D | vdso.h | 17 unsigned long alt, alt_len; member
|
/kernel/linux/linux-6.6/tools/objtool/include/objtool/ |
H A D | special.h | 35 void arch_handle_alternative(unsigned short feature, struct special_alt *alt);
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfview/ |
H A D | TaggedData.java | 30 * @param alt 35 void tagField(int position, int width, int value, String alt, String label); in tagField() argument
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/ |
H A D | TaggedData.java | 30 * @param alt 35 void tagField(int position, int width, int value, String alt, String label); in tagField() argument
|
/third_party/rust/crates/nom/src/branch/ |
H A D | tests.rs | 1 use crate::branch::{alt, permutation}; 63 alt((dont_work, dont_work))(i) in alt_test() 66 alt((dont_work, work))(i) in alt_test() 69 alt((dont_work, dont_work, work2, dont_work))(i) in alt_test() 71 //named!(alt1, alt!(dont_work | dont_work)); in alt_test() 72 //named!(alt2, alt!(dont_work | work)); in alt_test() 73 //named!(alt3, alt!(dont_work | dont_work | work2 | dont_work)); in alt_test() 88 alt((tag("abcd"), tag("efgh")))(i) in alt_test() 98 alt((tag("a"), tag("bc"), tag("def")))(i) in alt_incomplete()
|