Home
last modified time | relevance | path

Searched refs:TEST_Y_VAL (Results 1 – 3 of 3) sorted by relevance

/third_party/cef/libcef/common/test/
Dtranslator_test_impl.cc354 CefPoint GetPoint() override { return CefPoint(TEST_X_VAL, TEST_Y_VAL); } in GetPoint()
357 return val.x == TEST_X_VAL && val.y == TEST_Y_VAL; in SetPoint()
361 val = CefPoint(TEST_X_VAL, TEST_Y_VAL); in GetPointByRef()
369 return val[0].x == TEST_X_VAL && val[0].y == TEST_Y_VAL && in SetPointList()
377 val.push_back(CefPoint(TEST_X_VAL, TEST_Y_VAL)); in GetPointListByRef()
/third_party/cef/tests/ceftests/
Dtranslator_unittest.cc141 CefPoint point(TEST_X_VAL, TEST_Y_VAL); in TEST()
158 list.push_back(CefPoint(TEST_X_VAL, TEST_Y_VAL)); in TEST()
165 EXPECT_EQ(CefPoint(TEST_X_VAL, TEST_Y_VAL), list[0]); in TEST()
/third_party/cef/include/test/
Dcef_translator_test.h79 #define TEST_Y_VAL 754 macro