Home
last modified time | relevance | path

Searched refs:mf1 (Results 1 – 25 of 26) sorted by relevance

12

/external/libcxxabi/test/
Dcatch_member_function_pointer_01.pass.cpp22 typedef void (A::*mf1)(); typedef
50 catch (mf1) in test1()
62 catch (mf1) in test2()
77 throw (mf1)0; in test_derived()
88 catch (mf1) in test_derived()
109 assert(!can_convert<mf1>((dmf1)0)); in test_derived()
120 catch (mf1) in test_derived()
128 assert(!can_convert<mf1>((dmf2)0)); in test_derived()
139 catch (mf1) in test_derived()
/external/llvm-project/libcxxabi/test/
Dcatch_member_function_pointer_01.pass.cpp21 typedef void (A::*mf1)(); typedef
49 catch (mf1) in test1()
61 catch (mf1) in test2()
76 throw (mf1)0; in test_derived()
87 catch (mf1) in test_derived()
108 assert(!can_convert<mf1>((dmf1)0)); in test_derived()
119 catch (mf1) in test_derived()
127 assert(!can_convert<mf1>((dmf2)0)); in test_derived()
138 catch (mf1) in test_derived()
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp21.cpp5 void mf1(T);
10 void X<int>::mf1(int i = 17) // expected-error{{default}} in mf1() function in X
25 void mf1(float);
28 void X<float>::mf1(float = 3.14f) // okay in mf1() function in X
Dp18.cpp4 template<class T3> void mf1(T3);
13 void A<int>::B<double>::mf1(T t) { } in mf1() function in A::B
16 void A<long>::B<double>::mf1(T t) { } // expected-error{{does not match}} in mf1() function in A::B
/external/llvm-project/clang/test/CXX/temp/temp.spec/temp.expl.spec/
Dp21.cpp5 void mf1(T);
10 void X<int>::mf1(int i = 17) // expected-error{{default}} in mf1() function in X
25 void mf1(float);
28 void X<float>::mf1(float = 3.14f) // okay in mf1() function in X
Dp18.cpp4 template<class T3> void mf1(T3);
13 void A<int>::B<double>::mf1(T t) { } in mf1() function in A::B
16 void A<long>::B<double>::mf1(T t) { } // expected-error{{does not match}} in mf1() function in A::B
/external/python/cryptography/tests/
Dtest_fernet.py174 mf1 = MultiFernet([f1])
178 mf1_ciphertext = mf1.encrypt(plaintext)
188 mf1.decrypt(rotated)
194 mf1 = MultiFernet([f1])
198 mf1_ciphertext = mf1.encrypt(plaintext)
216 mf1 = MultiFernet([f1])
220 mf2.rotate(mf1.encrypt(b"abc"))
/external/clang/test/SemaCXX/
Dattr-no-split-stack.cpp15 void mf1() __attribute__((no_split_stack));
32 [[gnu::no_split_stack]] void mf1();
Dattr-flatten.cpp15 void mf1() __attribute__((flatten));
32 [[gnu::flatten]] void mf1();
/external/llvm-project/clang/test/SemaCXX/
Dattr-flatten.cpp15 void mf1() __attribute__((flatten));
32 [[gnu::flatten]] void mf1();
Dattr-no-split-stack.cpp15 void mf1() __attribute__((no_split_stack));
32 [[gnu::no_split_stack]] void mf1();
Dattr-no-speculative-load-hardening.cpp15 void mf1() __attribute__((no_speculative_load_hardening));
32 [[clang::no_speculative_load_hardening]] void mf1();
Dattr-speculative-load-hardening.cpp15 void mf1() __attribute__((speculative_load_hardening));
43 [[clang::speculative_load_hardening]] void mf1();
/external/libvpx/libvpx/test/
Dnon_greedy_mv_test.cc63 static void compare_mf(const MV *mf1, const MV *mf2, int rows, int cols, in compare_mf() argument
70 MV mv1 = mf1[idx]; in compare_mf()
/external/clang/test/CXX/drs/
Ddr3xx.cpp395 template<class T3> void mf1(T3);
400 …template<> template<> template<class T> void A<int>::B<double>::mf1(T t) {} // expected-error {{do…
406 template<class T3> void mf1(T3);
411 template<class T> void mf1(T);
413 template<> template<> template<class T> void A<int>::B<double>::mf1(T t) {}
/external/clang/test/SemaTemplate/
Dmember-template-access-expr.cpp67 float* (X1::*mf1)(int) = &X1::f1; in test_X1() local
/external/llvm-project/clang/test/SemaTemplate/
Dmember-template-access-expr.cpp67 float* (X1::*mf1)(int) = &X1::f1; in test_X1() local
/external/llvm-project/clang/test/CXX/drs/
Ddr3xx.cpp471 template<class T3> void mf1(T3);
476 …template<> template<> template<class T> void A<int>::B<double>::mf1(T t) {} // expected-error {{do…
482 template<class T3> void mf1(T3);
487 template<class T> void mf1(T);
489 template<> template<> template<class T> void A<int>::B<double>::mf1(T t) {}
/external/llvm-project/clang/test/SemaObjC/
Dattr-swift-async.m32 SA(none) void mf1(); field
/external/swiftshader/src/Device/
DETC_Decoder.cpp334 unsigned char mf1 : 1; member
631 case 5: return mf1 << 2 | mf2; in getSingleChannelIndex()
/external/swiftshader/src/Renderer/
DETC_Decoder.cpp335 unsigned char mf1 : 1; member
638 case 5: return mf1 << 2 | mf2; in getSingleChannelIndex()
/external/icu/icu4c/source/test/intltest/
Dtmsgfmt.cpp1975 MessageFormat mf1("{0,select,a{A}ab{AB}abc{ABC}other{?}}", Locale::getEnglish(), errorCode); in TestArgIsPrefixOfAnother() local
1980 assertEquals("a", "A", mf1.format(args, 1, result, ignore, errorCode)); in TestArgIsPrefixOfAnother()
1982 assertEquals("ab", "AB", mf1.format(args, 1, result.remove(), ignore, errorCode)); in TestArgIsPrefixOfAnother()
1984 assertEquals("abc", "ABC", mf1.format(args, 1, result.remove(), ignore, errorCode)); in TestArgIsPrefixOfAnother()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DTestMessageFormat.java1992 MessageFormat mf1 = new MessageFormat( in TestArgIsPrefixOfAnother() local
1994 assertEquals("a", "A", mf1.format(new Object[] { "a" })); in TestArgIsPrefixOfAnother()
1995 assertEquals("ab", "AB", mf1.format(new Object[] { "ab" })); in TestArgIsPrefixOfAnother()
1996 assertEquals("abc", "ABC", mf1.format(new Object[] { "abc" })); in TestArgIsPrefixOfAnother()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DTestMessageFormat.java1989 MessageFormat mf1 = new MessageFormat( in TestArgIsPrefixOfAnother() local
1991 assertEquals("a", "A", mf1.format(new Object[] { "a" })); in TestArgIsPrefixOfAnother()
1992 assertEquals("ab", "AB", mf1.format(new Object[] { "ab" })); in TestArgIsPrefixOfAnother()
1993 assertEquals("abc", "ABC", mf1.format(new Object[] { "abc" })); in TestArgIsPrefixOfAnother()
/external/angle/src/image_util/
Dloadimage_etc.cpp342 unsigned char mf1 : 1; member
1362 case 5: return u.scblk.mf1 << 2 | u.scblk.mf2; in getSingleChannelIndex()

12