/third_party/typescript/tests/baselines/reference/ |
D | moduleScoping.js | 8 var v4 = () => 5; function 19 var v4 = {a: true, b: NaN}; // Should shadow global v2 in this module variable 43 var v4 = { a: true, b: NaN }; // Should shadow global v2 in this module variable
|
D | nonGenericTypeReferenceWithTypeArguments.js | 11 var v4: T<string>; variable 21 var v4: T<string>; variable 39 var v4; variable
|
D | generics2NoError.js | 18 var v4: G<G<A, B>, C>; // Ok variable 23 var v4; // Ok variable
|
D | generics1NoError.js | 11 var v4: G<G<A, B>, C>; // Ok variable 16 var v4; // Ok variable
|
D | circularTypeAliasForUnionWithInterface.js | 26 var v4: T4; variable 38 var v4; variable
|
D | circularTypeAliasForUnionWithClass.js | 14 var v4: T4; variable 34 var v4; variable
|
D | generics2.js | 19 var v4: G<G<A, B>, C>; // Ok variable 29 var v4; // Ok variable
|
D | generics1.js | 12 var v4: G<G<A, B>, C>; // Ok variable 22 var v4; // Ok variable
|
/third_party/googletest/googletest/include/gtest/ |
D | gtest_pred_impl.h | 245 const T4& v4) { in AssertPred4Helper() 260 #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ argument 266 #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ argument 279 #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ argument 281 #define EXPECT_PRED4(pred, v1, v2, v3, v4) \ argument 283 #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ argument 285 #define ASSERT_PRED4(pred, v1, v2, v3, v4) \ argument 308 const T4& v4, in AssertPred5Helper() 325 #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ argument 331 #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ argument [all …]
|
/third_party/mesa3d/src/gtest/include/gtest/ |
D | gtest_pred_impl.h | 245 const T4& v4) { in AssertPred4Helper() 260 #define GTEST_PRED_FORMAT4_(pred_format, v1, v2, v3, v4, on_failure)\ argument 266 #define GTEST_PRED4_(pred, v1, v2, v3, v4, on_failure)\ argument 279 #define EXPECT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ argument 281 #define EXPECT_PRED4(pred, v1, v2, v3, v4) \ argument 283 #define ASSERT_PRED_FORMAT4(pred_format, v1, v2, v3, v4) \ argument 285 #define ASSERT_PRED4(pred, v1, v2, v3, v4) \ argument 308 const T4& v4, in AssertPred5Helper() 325 #define GTEST_PRED_FORMAT5_(pred_format, v1, v2, v3, v4, v5, on_failure)\ argument 331 #define GTEST_PRED5_(pred, v1, v2, v3, v4, v5, on_failure)\ argument [all …]
|
/third_party/node/deps/npm/node_modules/ip-regex/ |
D | index.js | 3 const v4 = '(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])(?:\\.(?:25[0-5]|2[0-4][0-9]|1[0-9]… constant 23 ip.v4 = opts => opts && opts.exact ? new RegExp(`^${v4}$`) : new RegExp(v4, 'g'); function in ip
|
/third_party/node/deps/npm/node_modules/cidr-regex/ |
D | index.js | 5 const v4 = ipRegex.v4().source + "\\/(3[0-2]|[12]?[0-9])"; constant 12 cidr.v4 = opts => opts && opts.exact ? new RegExp(`^${v4}$`) : new RegExp(v4, "g"); function in cidr
|
/third_party/boost/libs/variant2/test/ |
D | variant_eq_ne.cpp | 28 variant<int> v1, v2, v3( 1 ), v4( 1 ); in main() local 41 variant<int, float> v1, v2, v3( 1 ), v4( 1 ), v5( 3.14f ), v6( 3.14f ); in main() local 63 …variant<int, int, float> v1, v2, v3( in_place_index_t<1>{} ), v4( in_place_index_t<1>{} ), v5( 3.1… in main() local
|
D | variant_eq_ne_cx.cpp | 34 constexpr variant<int> v1, v2, v3( 1 ), v4( 1 ); in main() local 47 constexpr variant<int, float> v1, v2, v3( 1 ), v4( 1 ), v5( 3.14f ), v6( 3.14f ); in main() local 69 …constexpr variant<int, int, float> v1, v2, v3( in_place_index_t<1>{} ), v4( in_place_index_t<1>{} … in main() local
|
D | variant_lt_gt.cpp | 46 variant<int> v1, v2, v3( 1 ), v4( 1 ); in main() local 54 variant<int, float> v1, v2, v3( 1 ), v4( 1 ), v5( 3.14f ), v6( 3.14f ); in main() local 65 …variant<int, int, float> v1, v2, v3( in_place_index_t<1>{} ), v4( in_place_index_t<1>{} ), v5( 3.1… in main() local
|
D | variant_lt_gt_cx.cpp | 52 constexpr variant<int> v1, v2, v3( 1 ), v4( 1 ); in main() local 60 constexpr variant<int, float> v1, v2, v3( 1 ), v4( 1 ), v5( 3.14f ), v6( 3.14f ); in main() local 71 …constexpr variant<int, int, float> v1, v2, v3( in_place_index_t<1>{} ), v4( in_place_index_t<1>{} … in main() local
|
D | variant_move_assign.cpp | 99 variant<int, float> v4( 3.15f ); in main() local 123 variant<int, int, float, std::string> v4( 3.15f ); in main() local 159 variant<X1, X2> v4( in_place_index_t<1>{}, 3 ); in main() local
|
D | variant_copy_assign.cpp | 99 variant<int, float> const v4( 3.15f ); in main() local 123 variant<int, int, float, std::string> const v4( 3.15f ); in main() local 159 variant<X1, X2> const v4( in_place_index_t<1>{}, 3 ); in main() local
|
D | variant_swap.cpp | 113 variant<int, float> v4( 3.15f ); in main() local 159 variant<int, int, float, std::string> v4( 3.15f ); in main() local 231 variant<X1, X2> v4( in_place_index_t<1>{}, 3 ); in main() local
|
/third_party/opencl-headers/tests/ |
D | test_headers.c | 57 __cl_char4 v4 = b4.v4; in test_char() local 117 __cl_uchar4 v4 = b4.v4; in test_uchar() local 177 __cl_short4 v4 = b4.v4; in test_short() local 237 __cl_ushort4 v4 = b4.v4; in test_ushort() local 297 __cl_int4 v4 = b4.v4; in test_int() local 357 __cl_uint4 v4 = b4.v4; in test_uint() local 417 __cl_long4 v4 = b4.v4; in test_long() local 477 __cl_ulong4 v4 = b4.v4; in test_ulong() local 538 __cl_float4 v4 = b4.v4; in test_float() local 599 __cl_double4 v4 = b4.v4; in test_double() local
|
/third_party/typescript/tests/cases/conformance/externalModules/ |
D | moduleScoping.ts | 6 var v4 = () => 5; variable 17 var v4 = {a: true, b: NaN}; // Should shadow global v2 in this module variable
|
/third_party/boost/libs/spirit/test/qi/ |
D | pass_container1.cpp | 117 std::vector<char> v4; in main() local 174 std::vector<std::vector<char> > v4; in main() local
|
/third_party/node/deps/npm/node_modules/uuid/ |
D | index.js | 2 var v4 = require('./v4'); variable
|
/third_party/abseil-cpp/absl/algorithm/ |
D | algorithm_test.cc | 30 std::vector<int> v4 = {1, 2, 4}; in TEST() local 74 std::vector<char> v4{1, 2, 4}; in TEST() local 85 std::vector<bool> v4{true, true, true}; in TEST() local 97 std::vector<int*> v4{&n[0], &n[1]}; in TEST() local
|
/third_party/skia/third_party/externals/abseil-cpp/absl/algorithm/ |
D | algorithm_test.cc | 30 std::vector<int> v4 = {1, 2, 4}; in TEST() local 74 std::vector<char> v4{1, 2, 4}; in TEST() local 85 std::vector<bool> v4{true, true, true}; in TEST() local 97 std::vector<int*> v4{&n[0], &n[1]}; in TEST() local
|