HomeSort by relevance Sort by last modified time
    Searched refs:TestType (Results 1 - 25 of 89) sorted by null

1 2 3 4

  /external/webrtc/webrtc/voice_engine/test/auto_test/
voe_test_interface.h 24 // TestType enumerator
25 enum TestType {
35 int runAutoTest(TestType testType);
  /external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
any_cast_request_invalid_value_category.fail.cpp 21 struct TestType {};
29 // expected-error@any:* {{binding value of type 'const TestType' to reference to type 'TestType' drops 'const' qualifier}}
30 any_cast<TestType &>(a); // expected-note {{requested here}}
42 any_cast<TestType &&>(a); // expected-note {{requested here}}
53 // expected-error@any:* {{non-const lvalue reference to type 'TestType' cannot bind to a temporary}}
54 any_cast<TestType &>(std::move(a)); // expected-note {{requested here}}
const_correctness.fail.cpp 21 struct TestType {};
31 // expected-error@any:* {{binding value of type 'const TestType' to reference to type 'TestType' drops 'const' qualifier}}
33 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}}
35 // expected-error@any:* {{cannot cast from lvalue of type 'const TestType' to rvalue reference type 'TestType &&'; types are not compatible}}
37 any_cast<TestType &&>(static_cast<any const&>(a)); // expected-note {{requested here}}
  /external/libcxx/test/std/experimental/any/any.nonmembers/any.cast/
const_correctness.fail.cpp 21 struct TestType {};
31 // expected-error@experimental/any:* 2 {{binding value of type '_Tp' (aka 'const TestType') to reference to type 'TestType' drops 'const' qualifier}}
32 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}}
33 any_cast<TestType &&>(static_cast<any const&>(a)); // expected-note {{requested here}}
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/any/any.nonmembers/any.cast/
const_correctness.fail.cpp 21 struct TestType {};
31 // expected-error@experimental/any:* 2 {{binding value of type '_Tp' (aka 'const TestType') to reference to type 'TestType' drops 'const' qualifier}}
32 any_cast<TestType &>(static_cast<any const&>(a)); // expected-note {{requested here}}
33 any_cast<TestType &&>(static_cast<any const&>(a)); // expected-note {{requested here}}
  /system/chre/apps/wifi_offload/test/
randomgenerator_test.cc 22 template <typename TestType>
28 uint64_t rand_val = random_gen_.get<TestType>();
29 uint64_t max_val = std::numeric_limits<TestType>::max();
36 TestType rand_values[num_values];
39 rand_values[i] = random_gen_.get<TestType>();
44 ASSERT_EQ(rand_values[i], another_random_gen_.get<TestType>());
50 TestType rand_values[num_values];
53 rand_values[i] = random_gen_.get<TestType>();
58 ASSERT_EQ(rand_values[i], random_gen_.get<TestType>());
67 sizeof(uint64_t) / sizeof(TestType);
    [all...]
offloadtypes_test.cc 21 template <typename TestType>
30 TestType lhs;
34 TestType rhs;
41 TestType lhs, rhs;
49 TestType test_obj;
59 ASSERT_TRUE(verifier.VerifyBuffer<typename TestType::FbsType>(nullptr));
62 flatbuffers::GetRoot<typename TestType::FbsType>(serialized_buff);
65 TestType deserialized_obj;
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
copy.pass.cpp 72 using T = TestTypes::TestType;
117 using T = TestTypes::TestType;
125 TestTypes::TestType::reset();
127 using T = TestTypes::TestType;
138 TestTypes::TestType::reset();
141 test<TestType>();
142 test<TestType>(42);
146 test<TestType>();
147 test<TestType>(42);
rvalue_T.pass.cpp 67 typedef TestTypes::TestType T;
76 typedef ExplicitTestTypes::TestType T;
86 typedef TestTypes::TestType T;
97 typedef ConstexprTestTypes::TestType T;
109 typedef ConstexprTestTypes::TestType T;
121 typedef ExplicitConstexprTestTypes::TestType T;
U.pass.cpp 75 using T = TrivialTestTypes::TestType;
79 using T = TestTypes::TestType;
97 using T = ExplicitTrivialTestTypes::TestType;
101 using T = ExplicitConstexprTestTypes::TestType;
106 using T = ExplicitTestTypes::TestType;
const_T.pass.cpp 61 typedef TestTypes::TestType T;
71 typedef ExplicitTestTypes::TestType T;
82 typedef ConstexprTestTypes::TestType T;
95 typedef ExplicitConstexprTestTypes::TestType T;
move.pass.cpp 73 using T = TestTypes::TestType;
145 using T = TestTypes::TestType;
154 TestTypes::TestType::reset();
156 using T = TestTypes::TestType;
170 TestTypes::TestType::reset();
173 test<TestType>();
174 test<TestType>(42);
178 test<TestType>();
179 test<TestType>(42);
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/
make_from_tuple.pass.cpp 168 struct TestType {
169 TestType(int, NothrowMoveable) noexcept {}
170 TestType(int, int, int) noexcept(false) {}
171 TestType(long, long, long) noexcept {}
177 ASSERT_NOT_NOEXCEPT(std::make_from_tuple<TestType>(ctup));
178 LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple<TestType>(std::move(tup)));
184 ASSERT_NOT_NOEXCEPT(std::make_from_tuple<TestType>(ctup));
185 LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple<TestType>(std::move(tup)));
190 ASSERT_NOT_NOEXCEPT(std::make_from_tuple<TestType>(tup));
195 LIBCPP_ASSERT_NOEXCEPT(std::make_from_tuple<TestType>(tup))
    [all...]
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
bullet_4_5_6.pass.cpp 60 typedef TestMemberObject<ObjectType> TestType;
65 typedef DerivedFromType<TestType> Derived;
66 TestType obj;
67 TestType* obj_ptr = &obj;
70 DerefToType<TestType> dref;
71 DerefPropType<TestType> dref2;
72 std::reference_wrapper<TestType> rref(obj);
76 typedef ObjectType (TestType::*MemPtr);
78 MemPtr M = &TestType::object;
91 typedef ObjectType const (TestType::*CMemPtr)
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
bullet_4_5_6.pass.cpp 60 typedef TestMemberObject<ObjectType> TestType;
65 typedef DerivedFromType<TestType> Derived;
66 TestType obj;
67 TestType* obj_ptr = &obj;
70 DerefToType<TestType> dref;
71 DerefPropType<TestType> dref2;
72 std::reference_wrapper<TestType> rref(obj);
76 typedef ObjectType (TestType::*MemPtr);
78 MemPtr M = &TestType::object;
91 typedef ObjectType const (TestType::*CMemPtr)
    [all...]
  /external/skia/tests/
CachedDecodingPixelRefTest.cpp 24 enum TestType {
35 TestImageGenerator(TestType type, skiatest::Reporter* reporter,
81 const TestType fType;
90 const TestImageGenerator::TestType testTypes[] = {
99 TestImageGenerator::TestType test = testTypes[i];
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
copy.pass.cpp 62 using O = optional<TrivialTestTypes::TestType>;
69 using O = optional<TestTypes::TestType>;
74 using T = TestTypes::TestType;
emplace.pass.cpp 187 test_on_test_type<TestTypes::TestType>();
188 test_on_test_type<ExplicitTestTypes::TestType>();
196 using T = ConstexprTestTypes::TestType;
200 using T = ExplicitConstexprTestTypes::TestType;
204 using T = TrivialTestTypes::TestType;
208 using T = ExplicitTrivialTestTypes::TestType;
assign_value.pass.cpp 62 using I = TestTypes::TestType;
63 using E = ExplicitTestTypes::TestType;
87 using T = TestTypes::TestType;
257 test_with_type_multi<ConstexprTestTypes::TestType>();
258 test_with_type_multi<TrivialTestTypes::TestType>();
  /external/libcxx/test/std/experimental/filesystem/class.directory_entry/directory_entry.obs/
comparisons.pass.cpp 53 typedef std::pair<path, path> TestType;
54 TestType TestCases[] =
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/support/
uses_alloc_types.hpp 62 template <class ...ArgTypes, class TestType>
63 bool checkConstruct(TestType& value, UsesAllocatorType form,
64 typename TestType::CtorAlloc const& alloc)
77 template <class ...ArgTypes, class TestType>
78 bool checkConstruct(TestType& value, UsesAllocatorType form) {
82 template <class TestType>
83 bool checkConstructionEquiv(TestType& T, TestType& U)
  /external/deqp/modules/gles31/functional/
es31fShaderMultisampleInterpolationStateQueryTests.cpp 48 enum TestType
56 InterpolationOffsetCase (Context& context, const char* name, const char* desc, QueryType verifier, TestType testType);
64 const TestType m_testType;
67 InterpolationOffsetCase::InterpolationOffsetCase (Context& context, const char* name, const char* desc, QueryType verifier, TestType testType)
70 , m_testType (testType)
  /external/libcxx/test/support/
uses_alloc_types.hpp 85 template <class ...ArgTypes, class TestType>
86 bool checkConstruct(TestType& value, UsesAllocatorType form,
87 typename TestType::CtorAlloc const& alloc)
100 template <class ...ArgTypes, class TestType>
101 bool checkConstruct(TestType& value, UsesAllocatorType form) {
105 template <class TestType>
106 bool checkConstructionEquiv(TestType& T, TestType& U)
  /frameworks/native/libs/vr/libpdx/
variant_tests.cpp 26 class TestType {
28 TestType(const T& value) : value_(value) {}
29 TestType(T&& value) : value_(std::move(value)) {}
30 TestType(const TestType&) = default;
31 TestType(TestType&&) = default;
33 TestType& operator=(const TestType&) = default;
34 TestType& operator=(TestType&&) = default
    [all...]
  /frameworks/native/libs/vr/libpdx_uds/
remote_method_tests.cpp 56 struct TestType {
61 TestType() {}
62 TestType(int a, float b, const std::string& c) : a(a), b(b), c(c) {}
66 bool operator==(const TestType& other) const {
71 PDX_SERIALIZABLE_MEMBERS(TestType, a, b, c);
74 struct DerivedTestType : public TestType {
75 DerivedTestType() : TestType() {}
76 DerivedTestType(int a, float b) : TestType(a, b, "constant") {}
162 PDX_REMOTE_METHOD(SendTestType, kOpSendTestType, TestType(const TestType&))
    [all...]

Completed in 669 milliseconds

1 2 3 4