Home
last modified time | relevance | path

Searched refs:kValue2 (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/dawn/src/tests/end2end/
DShaderTests.cpp534 float const kValue2 = 3.141592653589793238; in TEST_P() local
535 std::vector<float> expected{kValue1, kValue2}; in TEST_P()
555 constants.push_back({nullptr, "1002", kValue2}); in TEST_P()
/third_party/cef/tests/ceftests/
Dv8_unittest.cc989 static const uint32 kValue2 = 30u; in RunObjectInterceptorTest() local
1016 EXPECT_EQ(kValue2, retval->GetUIntValue()); in RunObjectInterceptorTest()
1061 EXPECT_EQ(kValue2, value2_); in RunObjectInterceptorTest()
1120 EXPECT_TRUE(object->SetValue(kName2, CefV8Value::CreateUInt(kValue2), in RunObjectInterceptorTest()
1133 EXPECT_EQ(kValue2, interceptor->value2_); in RunObjectInterceptorTest()
1158 EXPECT_EQ(kValue2, val2->GetUIntValue()); in RunObjectInterceptorTest()
1191 static const int kValue2 = 30; in RunObjectInterceptorFailTest() local
1299 EXPECT_TRUE(object->SetValue(kIndex, CefV8Value::CreateInt(kValue2))); in RunObjectInterceptorFailTest()
1307 EXPECT_EQ(kValue2, val2->GetIntValue()); in RunObjectInterceptorFailTest()
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/
Dhash_test.cc89 enum LegacyEnum { kValue1, kValue2, kValue3 }; enumerator
99 LegacyEnum::kValue1, LegacyEnum::kValue2, LegacyEnum::kValue3))); in TEST()
/third_party/skia/third_party/externals/abseil-cpp/absl/status/
Dstatusor_test.cc1188 constexpr int kValue1 = 10, kValue2 = 20; in TEST() local
1193 status_or = CopyDetector(kValue2); in TEST()
1194 EXPECT_THAT(status_or, IsOkAndHolds(CopyDetectorHas(kValue2, true, false))); in TEST()