/third_party/typescript/tests/baselines/reference/ |
D | unionTypeCallSignatures6.types | 44 interface F3 { 67 >x1 : A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4: F3 | F5; } 69 f0: F0 | F3; 70 >f0 : F0 | F3 72 f1: F1 | F3; 73 >f1 : F1 | F3 78 f3: F3 | F4; 79 >f3 : F3 | F4 81 f4: F3 | F5; 82 >f4 : F3 | F5 [all …]
|
D | unionTypeCallSignatures4.types | 13 type F3 = (a: string, ...rest: string[]) => void; 14 >F3 : F3 50 var f34: F3 | F4; 51 >f34 : F3 | F4 55 >f34 : F3 | F4 60 >f34 : F3 | F4 66 >f34 : F3 | F4 71 var f1234: F1 | F2 | F3 | F4; 72 >f1234 : F1 | F2 | F3 | F4 76 >f1234 : F1 | F2 | F3 | F4 [all …]
|
D | unionTypeCallSignatures6.errors.txt | 5 …Each member of the union type 'F3 | F4' has signatures, but none of those signatures are compatibl… 6 …684: The 'this' context of type 'A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4:… 7 …Property 'b' is missing in type 'A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4:… 39 interface F3 { 53 f0: F0 | F3; 54 f1: F1 | F3; 56 f3: F3 | F4; 57 f4: F3 | F5; 65 !!! error TS2349: Each member of the union type 'F3 | F4' has signatures, but none of those signa… 68 …684: The 'this' context of type 'A & C & { f0: F0 | F3; f1: F1 | F3; f2: F1 | F4; f3: F3 | F4; f4:… [all …]
|
D | inferringClassStaticMembersFromAssignments.types | 55 function F3() { } 56 >F3 : typeof F3 58 F3.staticProp = 0; 59 >F3.staticProp = 0 : 0 60 >F3.staticProp : number 61 >F3 : typeof F3 139 var n = F3.staticProp; 141 >F3.staticProp : number 142 >F3 : typeof F3
|
D | unionTypeCallSignatures4.symbols | 13 type F3 = (a: string, ...rest: string[]) => void; 14 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54)) 43 var f34: F3 | F4; 45 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54)) 57 var f1234: F1 | F2 | F3 | F4; 61 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54)) 73 var f12345: F1 | F2 | F3 | F4 | F5; 77 >F3 : Symbol(F3, Decl(unionTypeCallSignatures4.ts, 1, 54))
|
D | unionTypeCallSignatures6.symbols | 48 interface F3 { 49 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5)) 87 f0: F0 | F3; 90 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5)) 92 f1: F1 | F3; 95 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5)) 102 f3: F3 | F4; 104 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5)) 107 f4: F3 | F5; 109 >F3 : Symbol(F3, Decl(unionTypeCallSignatures6.ts, 12, 5)) [all …]
|
D | unionTypeCallSignatures6.js | 16 interface F3 { 30 f0: F0 | F3; 31 f1: F1 | F3; 33 f3: F3 | F4; 34 f4: F3 | F5; 43 f4: F3 | F5;
|
D | inferringClassStaticMembersFromAssignments.symbols | 43 function F3() { } 44 >F3 : Symbol(F3, Decl(global.js, 1, 18), Decl(global.js, 3, 17)) 46 F3.staticProp = 0; 47 >F3.staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17)) 48 >F3 : Symbol(F3, Decl(global.js, 1, 18), Decl(global.js, 3, 17)) 49 >staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17)) 119 var n = F3.staticProp; 121 >F3.staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17)) 122 >F3 : Symbol(F3, Decl(global.js, 1, 18), Decl(global.js, 3, 17)) 123 >staticProp : Symbol(F3.staticProp, Decl(global.js, 3, 17))
|
D | optionalParamArgsTest.js | 47 function F3(F3A1=0,F3A2=F3A1) {return F3A1 + F3A2; } class 71 var f3v1=F3(1,2); 83 var f3v2=F3(1); 89 var f3v3=F3(); 113 F3(1,2,3); 181 function F3(F3A1, F3A2) { 209 var f3v1 = F3(1, 2); 219 var f3v2 = F3(1); 224 var f3v3 = F3(); 246 F3(1, 2, 3);
|
/third_party/skia/third_party/externals/tint/src/ |
D | traits_test.cc | 25 void F3(int, S, float) {} in F3() function 30 F3(0, {}, 0); // Avoid unused method warning in TEST() 32 static_assert(std::is_same<ParameterType<decltype(&F3), 0>, int>::value, ""); in TEST() 33 static_assert(std::is_same<ParameterType<decltype(&F3), 1>, S>::value, ""); in TEST() 34 static_assert(std::is_same<ParameterType<decltype(&F3), 2>, float>::value, in TEST() 37 static_assert(std::is_same<ReturnType<decltype(&F3)>, void>::value, ""); in TEST() 39 static_assert(SignatureOfT<decltype(&F3)>::parameter_count == 3, ""); in TEST() 46 void F3(int, S, float) {} in TEST() function in tint::traits::TEST::C 49 C().F3(0, {}, 0); // Avoid unused method warning in TEST() 51 static_assert(std::is_same<ParameterType<decltype(&C::F3), 0>, int>::value, in TEST() [all …]
|
/third_party/boost/libs/mp11/test/ |
D | mp_product.cpp | 28 template<class T1, class T2, class T3> struct F3 {}; struct 44 …::is_same<mp_product<F3, L1, L2, L3>, std::tuple<F3<X1, Y1, Z1>, F3<X1, Y1, Z2>, F3<X2, Y1, Z1>, F… in main() 45 …p_product_q<mp_quote<F3>, L1, L2, L3>, std::tuple<F3<X1, Y1, Z1>, F3<X1, Y1, Z2>, F3<X2, Y1, Z1>, … in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_product<F3, L1, L2, L3>, std::tuple<>>)); in main() 54 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_product_q<mp_quote<F3>, L1, L2, L3>, std::tuple<>>)); in main()
|
D | mp_compose.cpp | 12 template<class T> struct F3 {}; struct 16 template<class T> using G3 = F3<T>; 32 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_compose<F1, F2, F3>::fn<void>, F3<F2<F1<void>>>>)); in main() 33 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_compose<G1, G2, G3>::fn<void>, F3<F2<F1<void>>>>)); in main() 39 using QF3 = mp_quote<F3>; in main() 53 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_compose_q<QF1, QF2, QF3>::fn<void>, F3<F2<F1<void>>>>)); in main() 54 BOOST_TEST_TRAIT_TRUE((std::is_same<mp_compose_q<QG1, QG2, QG3>::fn<void>, F3<F2<F1<void>>>>)); in main()
|
/third_party/openh264/codec/build/windowsphone/all/ |
D | CodecApp.sln | 6 …-00C04F79EFBC}") = "CodecApp", "CodecApp\CodecApp.csproj", "{5424CF29-908E-417E-93F3-F1CD81E5372C}" 24 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 25 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.Build.0 = Debug|Any CPU 26 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Any CPU.Deploy.0 = Debug|Any CPU 27 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|ARM.ActiveCfg = Debug|ARM 28 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|ARM.Build.0 = Debug|ARM 29 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|ARM.Deploy.0 = Debug|ARM 30 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Mixed Platforms.ActiveCfg = Debug|x86 31 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Mixed Platforms.Build.0 = Debug|x86 32 {5424CF29-908E-417E-93F3-F1CD81E5372C}.Debug|Mixed Platforms.Deploy.0 = Debug|x86 [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | md4-internal.c | 186 #define F3(x, y, z) (x ^ y ^ z) macro 253 MD4STEP(F3, a, b, c, d, in[ 0] + 0x6ed9eba1, 3); in MD4Transform() 254 MD4STEP(F3, d, a, b, c, in[ 8] + 0x6ed9eba1, 9); in MD4Transform() 255 MD4STEP(F3, c, d, a, b, in[ 4] + 0x6ed9eba1, 11); in MD4Transform() 256 MD4STEP(F3, b, c, d, a, in[12] + 0x6ed9eba1, 15); in MD4Transform() 257 MD4STEP(F3, a, b, c, d, in[ 2] + 0x6ed9eba1, 3); in MD4Transform() 258 MD4STEP(F3, d, a, b, c, in[10] + 0x6ed9eba1, 9); in MD4Transform() 259 MD4STEP(F3, c, d, a, b, in[ 6] + 0x6ed9eba1, 11); in MD4Transform() 260 MD4STEP(F3, b, c, d, a, in[14] + 0x6ed9eba1, 15); in MD4Transform() 261 MD4STEP(F3, a, b, c, d, in[ 1] + 0x6ed9eba1, 3); in MD4Transform() [all …]
|
D | md5-internal.c | 196 #define F3(x, y, z) (x ^ y ^ z) macro 251 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 252 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 253 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 254 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 255 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 256 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 257 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 258 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 259 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | md4-internal.c | 186 #define F3(x, y, z) (x ^ y ^ z) macro 253 MD4STEP(F3, a, b, c, d, in[ 0] + 0x6ed9eba1, 3); in MD4Transform() 254 MD4STEP(F3, d, a, b, c, in[ 8] + 0x6ed9eba1, 9); in MD4Transform() 255 MD4STEP(F3, c, d, a, b, in[ 4] + 0x6ed9eba1, 11); in MD4Transform() 256 MD4STEP(F3, b, c, d, a, in[12] + 0x6ed9eba1, 15); in MD4Transform() 257 MD4STEP(F3, a, b, c, d, in[ 2] + 0x6ed9eba1, 3); in MD4Transform() 258 MD4STEP(F3, d, a, b, c, in[10] + 0x6ed9eba1, 9); in MD4Transform() 259 MD4STEP(F3, c, d, a, b, in[ 6] + 0x6ed9eba1, 11); in MD4Transform() 260 MD4STEP(F3, b, c, d, a, in[14] + 0x6ed9eba1, 15); in MD4Transform() 261 MD4STEP(F3, a, b, c, d, in[ 1] + 0x6ed9eba1, 3); in MD4Transform() [all …]
|
D | md5-internal.c | 196 #define F3(x, y, z) (x ^ y ^ z) macro 251 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 252 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 253 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 254 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 255 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 256 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 257 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 258 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 259 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/libjpeg-turbo/md5/ |
D | md5.c | 182 #define F3(x, y, z) (x ^ y ^ z) macro 237 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 238 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 239 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 240 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 241 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 242 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 243 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 244 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 245 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/md5/ |
D | md5.c | 182 #define F3(x, y, z) (x ^ y ^ z) macro 237 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 238 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 239 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 240 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 241 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 242 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 243 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 244 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 245 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/skia/third_party/externals/microhttpd/src/microhttpd/ |
D | md5.c | 51 #define F3(x, y, z) (x ^ y ^ z) macro 108 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 109 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 110 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 111 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 112 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 113 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 114 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 115 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 116 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/skia/third_party/externals/libjpeg-turbo/md5/ |
D | md5.c | 182 #define F3(x, y, z) (x ^ y ^ z) macro 237 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 238 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 239 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 240 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 241 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 242 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 243 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 244 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 245 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/typescript/tests/cases/conformance/types/union/ |
D | unionTypeCallSignatures6.ts | 15 interface F3 { interface 29 f0: F0 | F3; 30 f1: F1 | F3; 32 f3: F3 | F4; 33 f4: F3 | F5; 42 f4: F3 | F5;
|
/third_party/boost/boost/thread/futures/ |
D | wait_for_all.hpp | 35 template<typename F1,typename F2,typename F3> 36 void wait_for_all(F1& f1,F2& f2,F3& f3) in wait_for_all() 43 template<typename F1,typename F2,typename F3,typename F4> 44 void wait_for_all(F1& f1,F2& f2,F3& f3,F4& f4) in wait_for_all() 52 template<typename F1,typename F2,typename F3,typename F4,typename F5> 53 void wait_for_all(F1& f1,F2& f2,F3& f3,F4& f4,F5& f5) in wait_for_all()
|
/third_party/gn/src/base/ |
D | md5.cc | 56 #define F3(x, y, z) (x ^ y ^ z) macro 110 MD5STEP(F3, a, b, c, d, in[5] + 0xfffa3942, 4); in MD5Transform() 111 MD5STEP(F3, d, a, b, c, in[8] + 0x8771f681, 11); in MD5Transform() 112 MD5STEP(F3, c, d, a, b, in[11] + 0x6d9d6122, 16); in MD5Transform() 113 MD5STEP(F3, b, c, d, a, in[14] + 0xfde5380c, 23); in MD5Transform() 114 MD5STEP(F3, a, b, c, d, in[1] + 0xa4beea44, 4); in MD5Transform() 115 MD5STEP(F3, d, a, b, c, in[4] + 0x4bdecfa9, 11); in MD5Transform() 116 MD5STEP(F3, c, d, a, b, in[7] + 0xf6bb4b60, 16); in MD5Transform() 117 MD5STEP(F3, b, c, d, a, in[10] + 0xbebfbc70, 23); in MD5Transform() 118 MD5STEP(F3, a, b, c, d, in[13] + 0x289b7ec6, 4); in MD5Transform() [all …]
|
/third_party/openssl/crypto/cast/asm/ |
D | cast-586.pl | 41 @F3=("sub","add","xor"); 98 &E_CAST( 2,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 101 &E_CAST( 5,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 104 &E_CAST( 8,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 107 &E_CAST(11,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 114 &E_CAST(14,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 118 &E_CAST(14,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 122 &E_CAST(11,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 125 &E_CAST( 8,$S,$R,$L,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); 128 &E_CAST( 5,$S,$L,$R,$K,@F3,$tmp1,$tmp2,$tmp3,$tmp4); [all …]
|