Home
last modified time | relevance | path

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

/aosp_15_r20/external/deqp/framework/common/
H A DtcuEither.cpp36 class TestClassWithConstructor class
39 TestClassWithConstructor(int i) : m_i(i), m_copyCheck(COPYCHECK_VALUE) in TestClassWithConstructor() function in tcu::__anoneba079130111::TestClassWithConstructor
43 ~TestClassWithConstructor(void) in ~TestClassWithConstructor()
48TestClassWithConstructor(const TestClassWithConstructor &other) : m_i(other.m_i), m_copyCheck(othe… in TestClassWithConstructor() function in tcu::__anoneba079130111::TestClassWithConstructor
52 TestClassWithConstructor &operator=(const TestClassWithConstructor &other) in operator =()
189 const TestClassWithConstructor testObject(171899615); in Either_selfTest()
190 const Either<TestClassWithConstructor, int> either(testObject); in Either_selfTest()
195 TCU_CHECK(either.is<TestClassWithConstructor>()); in Either_selfTest()
199 TCU_CHECK(either.get<TestClassWithConstructor>().getValue() == testObject.getValue()); in Either_selfTest()
204 const TestClassWithConstructor testObject(171899615); in Either_selfTest()
[all …]