Home
last modified time | relevance | path

Searched refs:selector (Results 1 – 25 of 188) sorted by relevance

12345678

/openbsd/gnu/usr.bin/gcc/gcc/testsuite/objc.dg/
H A Dundeclared-selector.m1 /* Test for -Wundeclared-selector. */
4 /* { dg-options "-Wundeclared-selector" } */
23 SEL d = @selector(methodD); /* Ok */
24 SEL e = @selector(methodE); /* { dg-warning "undeclared selector" } */
29 SEL e = @selector(methodE); /* Ok */
34 SEL e = @selector(methodE); /* Ok */
41 SEL a = @selector(methodA); /* Ok */
42 SEL b = @selector(methodB); /* Ok */
43 SEL c = @selector(methodC); /* { dg-warning "undeclared selector" } */
44 SEL d = @selector(methodD); /* Ok */
[all …]
H A Dproto-lossage-3.m20 [@protocol(NoInstanceMethods) descriptionForInstanceMethod: @selector(name)];
21 [@protocol(NoInstanceMethods) descriptionForClassMethod: @selector(name)];
22 [@protocol(NoClassMethods) descriptionForInstanceMethod: @selector(name)];
23 [@protocol(NoClassMethods) descriptionForClassMethod: @selector(name)];
H A Dselector-1.m22 a = @selector(b1ar); /* { dg-warning "creating selector for non existant method b1ar" } */
23 b = @selector(bar);
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/objc/execute/
H A Dselector-1.m8 SEL selector;
11 selector = @selector (alloc);
13 selname = sel_getName (selector);
15 selname = sel_get_name (selector);
H A DIMP.m25 SEL selector;
29 selector = @selector (next:);
31 (class_get_class_method (class, selector));
33 if (imp (class, selector, 5) != 6)
H A Dclass-tests-2.h13 SEL selector) in test_that_class_has_instance_method() argument
17 if (class_get_instance_method (class, selector) == NULL) in test_that_class_has_instance_method()
26 SEL selector) in test_that_class_has_class_method() argument
30 if (class_get_class_method (meta_class, selector) == NULL) in test_that_class_has_class_method()
H A Dclass-10.m62 test_that_class_has_instance_method ("SubClass", @selector (setState:));
63 test_that_class_has_instance_method ("SubClass", @selector (state));
66 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
67 test_that_class_has_instance_method ("SubSubClass", @selector (state));
68 test_that_class_has_instance_method ("SubSubClass", @selector (shift));
H A Dclass-11.m66 test_that_class_has_instance_method ("SubClass", @selector (setState:));
67 test_that_class_has_instance_method ("SubClass", @selector (state));
70 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
71 test_that_class_has_instance_method ("SubSubClass", @selector (state));
72 test_that_class_has_instance_method ("SubSubClass", @selector (shift));
H A Dclass-14.m60 test_that_class_has_class_method ("SubClass", @selector (setState:));
61 test_that_class_has_class_method ("SubClass", @selector (state));
64 test_that_class_has_class_method ("SubSubClass", @selector (setState:));
65 test_that_class_has_class_method ("SubSubClass", @selector (state));
66 test_that_class_has_class_method ("SubSubClass", @selector (shift));
H A Dclass-5.m57 test_that_class_has_instance_method ("SubClass", @selector (setState:));
58 test_that_class_has_instance_method ("SubClass", @selector (state));
61 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
62 test_that_class_has_instance_method ("SubSubClass", @selector (state));
H A Dclass-13.m56 test_that_class_has_class_method ("SubClass", @selector (setState:));
57 test_that_class_has_class_method ("SubClass", @selector (state));
60 test_that_class_has_class_method ("SubSubClass", @selector (setState:));
61 test_that_class_has_class_method ("SubSubClass", @selector (state));
H A Dclass-6.m57 test_that_class_has_instance_method ("SubClass", @selector (setState:));
58 test_that_class_has_instance_method ("SubClass", @selector (state));
61 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
62 test_that_class_has_instance_method ("SubSubClass", @selector (state));
H A Dclass-8.m60 test_that_class_has_instance_method ("SubClass", @selector (setState:));
61 test_that_class_has_instance_method ("SubClass", @selector (state));
64 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
65 test_that_class_has_instance_method ("SubSubClass", @selector (state));
H A Dclass-9.m60 test_that_class_has_instance_method ("SubClass", @selector (setState:));
61 test_that_class_has_instance_method ("SubClass", @selector (state));
64 test_that_class_has_instance_method ("SubSubClass", @selector (setState:));
65 test_that_class_has_instance_method ("SubSubClass", @selector (state));
H A Dclass-12.m43 test_that_class_has_class_method ("SubClass", @selector (setState:));
44 test_that_class_has_class_method ("SubClass", @selector (state));
H A Dclass-4.m45 test_that_class_has_instance_method ("SubClass", @selector (setState:));
46 test_that_class_has_instance_method ("SubClass", @selector (state));
/openbsd/usr.sbin/tcpdump/
H A Dprint-802_11.c809 printf("0x%x%x%x%x", selector[0], selector[1], selector[2], in ieee80211_print_rsncipher()
810 selector[3]); in ieee80211_print_rsncipher()
815 switch (selector[3]) { in ieee80211_print_rsncipher()
845 printf("0x%x%x%x%x", selector[0], selector[1], selector[2], in ieee80211_print_akm()
846 selector[3]); in ieee80211_print_akm()
850 switch (selector[3]) { in ieee80211_print_akm()
878 uint8_t selector[4]; in ieee80211_print_rsn() local
896 selector[i] = data[i]; in ieee80211_print_rsn()
916 selector[j] = data[j]; in ieee80211_print_rsn()
939 selector[j] = data[j]; in ieee80211_print_rsn()
[all …]
/openbsd/usr.sbin/vmd/
H A Dfw_cfg.c54 uint16_t selector; member
205 fw_cfg_select(uint16_t selector) in fw_cfg_select() argument
211 switch (selector) { in fw_cfg_select()
225 if (!fw_cfg_select_file(selector)) in fw_cfg_select()
227 __func__, selector); in fw_cfg_select()
239 uint16_t selector = control >> 16; in fw_cfg_handle_dma() local
240 log_debug("%s: selector 0x%04x", __func__, selector); in fw_cfg_handle_dma()
241 fw_cfg_select(selector); in fw_cfg_handle_dma()
410 f->file.selector = htobe16(file_id++); in fw_cfg_add_file()
423 if (f->file.selector == id) { in fw_cfg_select_file()
[all …]
/openbsd/gnu/llvm/llvm/docs/GlobalISel/
H A DInstructionSelect.rst20 selector by subtarget feature (with, e.g., a vector selector overriding parts
21 of a general-purpose common selector).
22 We might also want to parameterize it by MachineFunction, to enable selector
73 will cause the instruction selector to import them but you will also need to
75 selector. Any preceding pass is suitable but the legalizer will be a
/openbsd/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A Dasm-1.c4 int selector; member
10 …__asm__("mov %%gs,%0":"=r" ((unsigned short)addr->selector)); /* { dg-error "lvalue" "casts make r… in f()
/openbsd/gnu/usr.bin/binutils/gdb/
H A Dobjc-lang.c1120 parse_selector (char *method, char **selector) in parse_selector() argument
1128 gdb_assert (selector != NULL); in parse_selector()
1168 if (selector != NULL) in parse_selector()
1169 *selector = nselector; in parse_selector()
1176 char **category, char **selector) in parse_method() argument
1190 gdb_assert (selector != NULL); in parse_method()
1270 if (selector != NULL) in parse_method()
1271 *selector = nselector; in parse_method()
1349 if ((selector != NULL) && in find_methods()
1402 char *selector = NULL; in find_imps() local
[all …]
H A Dobjc-lang.h48 extern char *parse_selector (char *method, char **selector);
52 char **selector);
/openbsd/lib/libcrypto/asn1/
H A Dtasn_utl.c246 long selector; in asn1_do_adb() local
271 selector = OBJ_obj2nid((ASN1_OBJECT *)*sfld); in asn1_do_adb()
273 selector = ASN1_INTEGER_get((ASN1_INTEGER *)*sfld); in asn1_do_adb()
284 if (atbl->value == selector) in asn1_do_adb()
/openbsd/gnu/lib/libstdc++/libstdc++/testsuite/
H A DREADME63 # dg-options "options ..." [{ target selector }]
66 # dg-do do-what-keyword [{ target/xfail selector }]
74 # dg-error regexp comment [{ target/xfail selector } [{.|0|linenum}]]
80 # dg-warning regexp comment [{ target/xfail selector } [{.|0|linenum}]]
84 # dg-bogus regexp comment [{ target/xfail selector } [{.|0|linenum}]]
88 # dg-build regexp comment [{ target/xfail selector }]
94 # dg-excess-errors comment [{ target/xfail selector }]
98 # dg-output regexp [{ target selector }]
107 # "{ target selector }" is a list of expressions that determine whether the
112 # The target selector is always optional. The format is one of:
/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRDynamicChecks.cpp400 llvm::Value *selector; in InstrumentInstruction() local
409 selector = call_inst->getArgOperand(2); in InstrumentInstruction()
412 selector = call_inst->getArgOperand(1); in InstrumentInstruction()
417 selector = call_inst->getArgOperand(2); in InstrumentInstruction()
426 assert(selector); in InstrumentInstruction()
438 arg_array[1] = selector; in InstrumentInstruction()

12345678