Home
last modified time | relevance | path

Searched defs:v4 (Results 1 – 25 of 244) sorted by relevance

12345678910

/third_party/typescript/tests/baselines/reference/
DmoduleScoping.js8 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
DnonGenericTypeReferenceWithTypeArguments.js11 var v4: T<string>; variable
21 var v4: T<string>; variable
39 var v4; variable
Dgenerics2NoError.js18 var v4: G<G<A, B>, C>; // Ok variable
23 var v4; // Ok variable
Dgenerics1NoError.js11 var v4: G<G<A, B>, C>; // Ok variable
16 var v4; // Ok variable
DcircularTypeAliasForUnionWithInterface.js26 var v4: T4; variable
38 var v4; variable
DcircularTypeAliasForUnionWithClass.js14 var v4: T4; variable
34 var v4; variable
Dgenerics2.js19 var v4: G<G<A, B>, C>; // Ok variable
29 var v4; // Ok variable
Dgenerics1.js12 var v4: G<G<A, B>, C>; // Ok variable
22 var v4; // Ok variable
/third_party/googletest/googletest/include/gtest/
Dgtest_pred_impl.h245 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/
Dgtest_pred_impl.h245 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/
Dindex.js3 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/
Dindex.js5 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/
Dvariant_eq_ne.cpp28 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
Dvariant_eq_ne_cx.cpp34 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
Dvariant_lt_gt.cpp46 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
Dvariant_lt_gt_cx.cpp52 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
Dvariant_move_assign.cpp99 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
Dvariant_copy_assign.cpp99 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
Dvariant_swap.cpp113 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/
Dtest_headers.c57 __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/
DmoduleScoping.ts6 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/
Dpass_container1.cpp117 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/
Dindex.js2 var v4 = require('./v4'); variable
/third_party/abseil-cpp/absl/algorithm/
Dalgorithm_test.cc30 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/
Dalgorithm_test.cc30 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

12345678910