Home
last modified time | relevance | path

Searched defs:TestType (Results 1 – 4 of 4) sorted by relevance

/frameworks/native/libs/vr/libpdx_uds/
Dremote_method_tests.cpp56 struct TestType { struct
57 int a;
58 float b;
59 std::string c;
61 TestType() {} in TestType() function
62 TestType(int a, float b, const std::string& c) : a(a), b(b), c(c) {} in TestType() function
66 bool operator==(const TestType& other) const { in operator ==()
/frameworks/native/libs/vr/libpdx/
Dserialization_tests.cpp46 struct TestType { struct
47 enum class Foo { kFoo, kBar, kBaz };
49 int a;
50 float b;
51 std::string c;
52 Foo d;
54 TestType() {} in TestType() argument
55 TestType(int a, float b, const std::string& c, Foo d) in TestType() function
60 bool operator==(const TestType& other) const { in operator ==()
Dvariant_tests.cpp26 class TestType { class
28 TestType(const T& value) : value_(value) {} in TestType() function in __anon34ecba3e0111::TestType
29 TestType(T&& value) : value_(std::move(value)) {} in TestType() function in __anon34ecba3e0111::TestType
/frameworks/base/media/tests/players/
Dinvoke_mock_media_player.cpp53 enum TestType {TEST_UNKNOWN, PING}; enum in __anon2001baa90111::Player