HomeSort by relevance Sort by last modified time
    Searched refs:pmf (Results 1 - 25 of 31) sorted by null

1 2

  /external/clang/test/CXX/dcl.decl/
p4-0x.cpp 9 void (X::*pmf)() & = &X::f; variable
  /external/clang/test/SemaCXX/
builtin-ptrtomember-overload-1.cpp 25 void foo(C c, int A::* pmf) {
26 int i = c->*pmf;
37 void foo1(C1 c1, int A::* pmf) {
38 int i = c1->*pmf;
39 c1->*pmf = 10;
42 void foo1(C1 c1, int E::* pmf) {
43 int i = c1->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
builtin-ptrtomember-ambig.cpp 19 void foo(C c, int A::* pmf) {
21 int i = c->*pmf; // expected-error {{use of overloaded operator '->*' is ambiguous}} \
builtin-ptrtomember-overload.cpp 15 void foo(C c, B b, int A::* pmf) {
16 int j = c->*pmf;
17 int i = b->*pmf;
overloaded-builtin-operators.cpp 29 typedef void (X::*pmf)(); typedef
31 operator pmf();
38 void f(Short s, Long l, Enum1 e1, Enum2 e2, Xpmf pmf) {
52 (void)(pmf == &X::f);
53 (void)(pmf == 0);
72 operator pmf&();
94 pmf &pmr = (pmf_ref = &X::f); // expected-error{{no viable overloaded '='}}
95 pmf pmr2;
nullptr.cpp 26 void (A::*pmf)() = nullptr;
27 pmf = null;
78 template <int *PI, void (*PF)(), int A::*PM, void (A::*PMF)()>
175 template<int (*fp)(int), int* p, int A::* pmd, int (A::*pmf)(int)>
member-pointer.cpp 80 void (HasMembers::*pmf)() = &HasMembers::f;
  /ndk/tests/device/test-stlport_shared-exception/jni/
spec7_1.cpp 10 static void (A::*pmf)() throw (); member in struct:A
13 void (A::* A::pmf)() = &A::g; variable
19 (a.*A::pmf)();
  /ndk/tests/device/test-stlport_static-exception/jni/
spec7_1.cpp 10 static void (A::*pmf)() throw (); member in struct:A
13 void (A::* A::pmf)() = &A::g; variable
19 (a.*A::pmf)();
  /external/clang/test/CXX/expr/expr.mptr.oper/
p6-0x.cpp 15 void test(X *xp, int (X::*pmf)(int), int (X::*l_pmf)(int) &,
18 (lvalue<X>().*pmf)(17);
19 (xvalue<X>().*pmf)(17);
20 (prvalue<X>().*pmf)(17);
21 (xp->*pmf)(17);
  /external/clang/test/CodeGenCXX/
ptr-to-member-function.cpp 50 bool (A::*pmf)(int*) const; member in struct:B1
52 B1(int i) : pmf(&A::foo), im(i) {
53 ((A*)this->*pmf)(&im);
nullptr.cpp 19 int (X::*pmf)(int) = get_nullptr();
member-function-pointers.cpp 88 bool (A::*pmf)(int*) const; member in struct:PR5177::B1
91 B1() : pmf(&A::foo), pa(&a) {}
92 bool operator()() const { return (pa->*pmf)(new int); }
209 typedef int (X::*pmf)(int); typedef in namespace:test8
212 pmf f() {
214 return pmf();
reference-cast.cpp 105 typedef int (X::*pmf)(int); typedef
108 pmf get_pointer_to_member_function();
  /external/clang/test/CXX/temp/temp.param/
p4.cpp 15 template<float (X::*pmf)(float, int)> struct A9;
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 46 template<int (X::*pmf)(int)> struct PMF { // expected-note 2 {{template parameter is declared here}}
47 PMF<pmf> *pmf2;
50 PMF<0> pmf0; // expected-error{{null non-type template argument must be cast to template parameter type 'int (X::*)(int)'}}
51 PMF<(0)> pmf1; // expected-error{{null non-type template argument must be cast to template parameter type 'int (X::*)(int)'}}
52 PMF<nullptr> pmf2;
53 PMF<get_nullptr()> pmf3;
54 PMF<(int (X::*)(int))0> pmf4;
55 PMF<np> pmf5
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.types/
nullptr_t.pass.cpp 27 void (A::*pmf)() = 0;
30 assert(pmf == nullptr);
  /external/clang/test/SemaTemplate/
instantiate-local-class.cpp 62 pmf_type pmf = &T::foo; local
temp_arg_nontype.cpp 79 template<int (Z::*pmf)(int)> struct A6; // expected-note{{template parameter is declared here}}
  /external/stlport/test/unit/
mfunptr_test.cpp 205 const_mem_fun1_ref_t<bool,V,int> pmf = mem_fun_ref( &V::f ); local
206 binder2nd<const_mem_fun1_ref_t<bool,V,int> > b(pmf, 2);
212 binder2nd<const_mem_fun1_ref_t<bool,V,int> > b2 = bind2nd( pmf, 2 );
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 205 const_mem_fun1_ref_t<bool,V,int> pmf = mem_fun_ref( &V::f ); local
206 binder2nd<const_mem_fun1_ref_t<bool,V,int> > b(pmf, 2);
212 binder2nd<const_mem_fun1_ref_t<bool,V,int> > b2 = bind2nd( pmf, 2 );
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 205 const_mem_fun1_ref_t<bool,V,int> pmf = mem_fun_ref( &V::f ); local
206 binder2nd<const_mem_fun1_ref_t<bool,V,int> > b(pmf, 2);
212 binder2nd<const_mem_fun1_ref_t<bool,V,int> > b2 = bind2nd( pmf, 2 );
  /external/wpa_supplicant_8/wpa_supplicant/
config.h 821 * pmf - Whether to enable/require PMF by default
823 * By default, PMF is disabled unless enabled by the per-network
824 * ieee80211w=1 or ieee80211w=2 parameter. pmf=1/2 can be used to change
827 enum mfp_options pmf; member in struct:wpa_config
config_file.c 1004 if (config->pmf)
1005 fprintf(f, "pmf=%d\n", config->pmf);
config_winreg.c 276 wpa_config_read_reg_dword(hk, TEXT("pmf"), &val);
277 config->pmf = val;
624 wpa_config_write_reg_dword(hk, TEXT("pmf"), config->pmf, 0);

Completed in 737 milliseconds

1 2