Home
last modified time | relevance | path

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

/third_party/skia/tests/
DTArrayTest.cpp106 T arrayInitializer{8, 6, 7, 5, 3, 0, 9}; in test_construction() local
107 REPORTER_ASSERT(reporter, arrayInitializer.size() == 7); in test_construction()
108 REPORTER_ASSERT(reporter, arrayInitializer[0] == 8); in test_construction()
109 REPORTER_ASSERT(reporter, arrayInitializer[1] == 6); in test_construction()
110 REPORTER_ASSERT(reporter, arrayInitializer[2] == 7); in test_construction()
111 REPORTER_ASSERT(reporter, arrayInitializer[3] == 5); in test_construction()
112 REPORTER_ASSERT(reporter, arrayInitializer[4] == 3); in test_construction()
113 REPORTER_ASSERT(reporter, arrayInitializer[5] == 0); in test_construction()
114 REPORTER_ASSERT(reporter, arrayInitializer[6] == 9); in test_construction()