/third_party/typescript/tests/baselines/reference/ |
H A D | mixingFunctionAndAmbientModule1.js | 3 declare module My { 6 function My(s: string) { } function 10 declare module My { 13 function My(s: boolean); 14 function My(s: any) { } 18 declare module My { 21 declare function My(s: boolean); 25 declare module My { 28 declare function My(s: boolean); 29 declare function My( [all...] |
H A D | importAliasFromNamespace.js | 4 namespace My.Internal { 14 import Internal = My.Internal; 25 var My;
variable 26 (function (My) {
31 })(Internal = My.Internal || (My.Internal = {}));
32 })(My || (My = {}));
39 var Internal = My.Internal;
53 declare namespace My [all...] |
H A D | checkJsxChildrenProperty2.js | 33 <div> My Div </div> 34 {(name: string) => <div> My name {name} </div>} 39 <div> My Div </div> 45 <div> My Div </div> 51 <div> My Div </div> 52 <div> My Div </div> 76 <div> My Div </div> 77 {function (name) { return <div> My name {name} </div>; }} 80 <div> My Div </div> 84 <div> My Di [all...] |
H A D | checkJsxChildrenProperty10.js | 15 return (<div>My Button</div>) 30 return (<div>My Button</div>);
|
H A D | checkJsxChildrenProperty11.js | 15 return (<div>My Button</div>) 30 return (<div>My Button</div>);
|
H A D | checkJsxChildrenProperty5.js | 12 return (<div>My Button</div>) 58 return (<div>My Button</div>);
|
H A D | checkJsxChildrenProperty14.js | 12 return (<div>My Button</div>) 70 return (<div>My Button</div>);
|
H A D | checkJsxChildrenProperty6.js | 12 return (<div>My Button</div>) 71 return (<div>My Button</div>);
|
H A D | checkJsxChildrenProperty7.js | 12 return (<div>My Button</div>) 56 return (<div>My Button</div>);
|
H A D | checkJsxChildrenProperty8.js | 12 return (<div>My Button</div>) 57 return (<div>My Button</div>);
|
/third_party/googletest/googletest/test/ |
H A D | gtest-typed-test_test.cc | 289 INSTANTIATE_TYPED_TEST_SUITE_P(My, DerivedTest, MyTwoTypes); 381 INSTANTIATE_TYPED_TEST_SUITE_P(My, ContainerTest, MyContainers); 401 INSTANTIATE_TYPED_TEST_SUITE_P(My, NumericTest, NumericTypes); 421 INSTANTIATE_TYPED_TEST_SUITE_P(My, TrimmedTest, TrimTypes);
|
H A D | googletest-list-tests-unittest_.cc | 134 INSTANTIATE_TYPED_TEST_SUITE_P(My, TypeParamTest, MyTypes);
|
H A D | googletest-output-test_.cc | 808 INSTANTIATE_TYPED_TEST_SUITE_P(My, ATypeParamDeathTest, NumericTypes);
|
H A D | gtest_unittest.cc | 3191 INSTANTIATE_TYPED_TEST_SUITE_P(My, TypedTestP, NumericTypes); 3205 INSTANTIATE_TYPED_TEST_SUITE_P(My, DISABLED_TypedTestP, NumericTypes); 5320 INSTANTIATE_TYPED_TEST_SUITE_P(My, CodeLocationForTYPEDTESTP, int);
|
/third_party/googletest/googletest/include/gtest/ |
H A D | gtest-typed-test.h | 161 INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes); 165 // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, int); 170 // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes, MyTypeNames);
|
/third_party/node/deps/googletest/include/gtest/ |
H A D | gtest-typed-test.h | 161 INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes); 165 // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, int); 170 // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes, MyTypeNames);
|
/third_party/mesa3d/src/gtest/include/gtest/ |
H A D | gtest-typed-test.h | 160 INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes); 164 // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, int); 169 // INSTANTIATE_TYPED_TEST_SUITE_P(My, FooTest, MyTypes, MyTypeNames);
|
/third_party/skia/modules/skottie/tests/ |
H A D | Expression.cpp | 93 "nm": "My Layer", in DEF_TEST()
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Matrix.cpp | 235 float My = M(2, 1) * v.x + M(2, 2) * v.y + M(2, 3) * v.z + M(2, 4) * v.w; in operator *() local 239 return {Mx, My, Mz, Mw}; in operator *()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/ |
H A D | hash_test.cc | 87 INSTANTIATE_TYPED_TEST_CASE_P(My, HashValueIntTest, IntTypes); 407 INSTANTIATE_TYPED_TEST_CASE_P(My, HashValueSequenceTest, IntSequenceTypes); 824 INSTANTIATE_TYPED_TEST_CASE_P(My, HashIntTest, IntTypes);
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/common/ |
H A D | dpp_pkex.c | 35 u8 *Mx, *My; in dpp_pkex_build_exchange_req() local 146 My = wpabuf_put(msg, curve->prime_len); in dpp_pkex_build_exchange_req() 147 if (crypto_ec_point_to_bin(ec, M, Mx, My)) in dpp_pkex_build_exchange_req()
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 2136 class My(Generic[P, T]): class 2139 self.assertEqual(My.__parameters__, (P, T)) 2141 C1 = My[[int, T2], Callable[P2, T2]] 2145 My[[int, str], Callable[[list[int], bytes], str]]) 2147 C2 = My[[Callable[[T2], int], list[T2]], str] 2151 My[[Callable[[list[str]], int], list[list[str]]], str]) 2153 C3 = My[[Callable[P2, T2], T2], T2] 2157 My[[Callable[[], int], int], int]) 2159 My[[Callable[[str, bool], int], int], int]) 2161 My[[Callabl 2211 class My(enum.Enum): global() class [all...] |
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/common/ |
H A D | dpp.c | 6903 BIGNUM *Mx = NULL, *My = NULL; in dpp_pkex_build_exchange_req() local 6948 My = BN_new(); in dpp_pkex_build_exchange_req() 6949 if (!M || !Mx || !My || in dpp_pkex_build_exchange_req() 6951 EC_POINT_get_affine_coordinates_GFp(group, M, Mx, My, bnctx) != 1) in dpp_pkex_build_exchange_req() 7010 dpp_bn2bin_pad(My, wpabuf_put(msg, curve->prime_len), in dpp_pkex_build_exchange_req() 7020 BN_clear_free(My); in dpp_pkex_build_exchange_req() 7268 BIGNUM *Mx = NULL, *My = NULL; in dpp_pkex_rx_exchange_req() local 7348 My = BN_bin2bn(attr_key + attr_key_len / 2, attr_key_len / 2, NULL); in dpp_pkex_rx_exchange_req() 7349 if (!X || !M || !Mx || !My || in dpp_pkex_rx_exchange_req() 7350 EC_POINT_set_affine_coordinates_GFp(group, M, Mx, My, bnct in dpp_pkex_rx_exchange_req() [all...] |