Searched refs:TestType (Results 1 – 5 of 5) sorted by relevance
/frameworks/native/libs/vr/libpdx_uds/ |
D | remote_method_tests.cpp | 56 struct TestType { struct 61 TestType() {} in TestType() function 62 TestType(int a, float b, const std::string& c) : a(a), b(b), c(c) {} in TestType() argument 66 bool operator==(const TestType& other) const { in operator ==() argument 71 PDX_SERIALIZABLE_MEMBERS(TestType, a, b, c); 74 struct DerivedTestType : public TestType { 75 DerivedTestType() : TestType() {} in DerivedTestType() 76 DerivedTestType(int a, float b) : TestType(a, b, "constant") {} in DerivedTestType() 162 PDX_REMOTE_METHOD(SendTestType, kOpSendTestType, TestType(const TestType&)); 166 std::string(const std::vector<TestType>&)); [all …]
|
/frameworks/native/libs/vr/libpdx/ |
D | variant_tests.cpp | 28 class TestType { class 31 TestType(const T& value) : value_(value) {} in TestType() function in __anon5eba89260111::TestType 33 TestType(T&& value) : value_(std::move(value)) {} in TestType() function in __anon5eba89260111::TestType 34 TestType(const TestType&) = default; 35 TestType(TestType&&) = default; 37 TestType& operator=(const TestType&) = default; 38 TestType& operator=(TestType&&) = default; 61 InstrumentType(const TestType<T>& other) : value_(other.get()) { in InstrumentType() 65 InstrumentType(TestType<T>&& other) : value_(other.take()) { in InstrumentType() 81 InstrumentType& operator=(const TestType<T>& other) { in operator =() [all …]
|
D | serialization_tests.cpp | 46 struct TestType { struct 54 TestType() {} in TestType() argument 55 TestType(int a, float b, const std::string& c, Foo d) in TestType() argument 60 bool operator==(const TestType& other) const { in operator ==() argument 65 PDX_SERIALIZABLE_MEMBERS(TestType, a, b, c, d); 108 TestType tt(1, 2.0, "three", TestType::Foo::kBar); in TEST() 112 EXPECT_EQ(TestType::Foo::kBar, tt.d); in TEST() 1218 TestType t1{10, 0.0, "12345", TestType::Foo::kBaz}; in TEST() 2354 TestType t1; in TEST() 2357 EXPECT_EQ(TestType(10, 0.f, "12345", TestType::Foo::kBar), t1); in TEST()
|
/frameworks/base/media/tests/players/ |
D | invoke_mock_media_player.cpp | 53 enum TestType {TEST_UNKNOWN, PING}; enum in __anon5f9b7f910111::Player 101 TestType mTest;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/tests/ |
D | OutputTest.cpp | 1800 using TestType = OutputUpdateColorProfileTest; typedef 1832 struct ExecuteState : public CallOrderStateMachineHelper<TestType, ExecuteState> { 1876 TestType, ExpectBestColorModeCallResultUsedToSetColorProfileState> { 1927 : public CallOrderStateMachineHelper<TestType, IfColorSpaceAgnosticDataspaceSetToState> { 1936 TestType, ThenExpectSetColorProfileCallUsesColorSpaceAgnosticDataspaceState> { 1978 : public CallOrderStateMachineHelper<TestType, IfTopLayerDataspaceState> { 1989 : public CallOrderStateMachineHelper<TestType, AndIfMiddleLayerDataspaceState> { 2000 : public CallOrderStateMachineHelper<TestType, AndIfBottomLayerDataspaceState> { 2011 : public CallOrderStateMachineHelper<TestType, ThenExpectBestColorModeCallUsesState> { 2100 : public CallOrderStateMachineHelper<TestType, IfForceOutputColorModeState> { [all …]
|