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

1 2 3 4 5 6 7 8 9

  /external/clang/test/SemaCXX/
empty-class-layout.cpp 24 struct Empty { Empty(); };
26 struct I : Empty {
27 Empty e;
31 struct J : Empty {
32 Empty e[2];
36 template<int N> struct Derived : Empty, Derived<N - 1> {
38 template<> struct Derived<0> : Empty { };
41 Empty e;
46 Empty e[2]
    [all...]
  /external/valgrind/unittest/output_tests/
fun_hist_test.cc 3 extern "C" { // TODO: make this line empty when ignore vs. mangling is fixed.
9 void Empty() {
14 Empty();
21 Empty();
29 } // TODO: make this line empty when ignore vs. mangling is fixed.
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/meta/meta.unary/meta.unary.prop/
is_trivially_copy_assignable.pass.cpp 22 class Empty
55 test_has_trivial_assign<const Empty, false>();
58 test_has_trivial_assign<Empty, true>();
is_trivially_move_assignable.pass.cpp 22 class Empty
55 test_has_trivial_assign<const Empty, false>();
58 test_has_trivial_assign<Empty, true>();
is_nothrow_constructible.pass.cpp 17 class Empty
50 static_assert(( std::is_nothrow_constructible<Empty>::value), "");
51 static_assert(( std::is_nothrow_constructible<Empty, const Empty&>::value), "");
is_nothrow_copy_assignable.pass.cpp 22 class Empty
51 test_has_nothrow_assign<Empty, true>();
is_nothrow_move_assignable.pass.cpp 22 class Empty
50 test_has_nothrow_assign<Empty, true>();
is_copy_constructible.pass.cpp 22 class Empty
66 test_is_copy_constructible<Empty, true>();
is_move_constructible.pass.cpp 22 class Empty
65 test_is_move_constructible<Empty, true>();
is_nothrow_copy_constructible.pass.cpp 32 class Empty
55 test_is_nothrow_copy_constructible<Empty>();
is_nothrow_move_constructible.pass.cpp 32 class Empty
55 test_is_nothrow_move_constructible<Empty>();
is_trivially_copy_constructible.pass.cpp 30 class Empty
67 test_is_trivially_copy_constructible<Empty>();
has_virtual_destructor.pass.cpp 34 class Empty
66 test_has_not_virtual_destructor<Empty>();
is_abstract.pass.cpp 34 class Empty
66 test_is_not_abstract<Empty>();
is_copy_assignable.pass.cpp 16 class Empty
54 static_assert(( std::is_copy_assignable<Empty>::value), "");
is_default_constructible.pass.cpp 25 class Empty
68 test_is_default_constructible<Empty, true>();
  /external/llvm/unittests/Support/
ConstantRangeTest.cpp 21 static ConstantRange Empty;
28 ConstantRange ConstantRangeTest::Empty(16, false);
44 EXPECT_FALSE(Empty.isFullSet());
45 EXPECT_TRUE(Empty.isEmptySet());
46 EXPECT_TRUE(Empty.inverse().isFullSet());
47 EXPECT_FALSE(Empty.isWrappedSet());
48 EXPECT_FALSE(Empty.contains(APInt(16, 0x0)));
49 EXPECT_FALSE(Empty.contains(APInt(16, 0x9)));
50 EXPECT_FALSE(Empty.contains(APInt(16, 0xa)));
51 EXPECT_FALSE(Empty.contains(APInt(16, 0xaa9)))
    [all...]
  /external/clang/test/CodeGenCXX/
empty-classes.cpp 3 struct Empty { };
11 struct B : A, Empty {
12 B() : A(), Empty() { }
15 struct C : A, Empty {
16 C() : A(), Empty() { }
17 C(const C& other) : A(0x12345678), Empty(other) { }
20 struct D : A, Empty {
23 Empty::operator=(other);
36 // Check that A::a is not overwritten by the Empty default constructor.
  /external/clang/test/CodeGen/
2009-03-08-ZeroEltStructCrash.c 3 struct Empty {};
2002-07-30-UnionTest.c 4 struct Empty {};
  /external/chromium/chrome/browser/
browsing_data_database_helper_unittest.cc 16 TEST_F(CannedBrowsingDataDatabaseTest, Empty) {
25 ASSERT_TRUE(helper->empty());
27 ASSERT_FALSE(helper->empty());
29 ASSERT_TRUE(helper->empty());
browsing_data_indexed_db_helper_unittest.cc 16 TEST_F(CannedBrowsingDataIndexedDBHelperTest, Empty) {
25 ASSERT_TRUE(helper->empty());
27 ASSERT_FALSE(helper->empty());
29 ASSERT_TRUE(helper->empty());
browsing_data_local_storage_helper_unittest.cc 15 TEST_F(CannedBrowsingDataLocalStorageTest, Empty) {
23 ASSERT_TRUE(helper->empty());
25 ASSERT_FALSE(helper->empty());
27 ASSERT_TRUE(helper->empty());
  /external/chromium/net/tools/flip_server/
buffer_interface.h 31 // Returns true if empty.
33 // true - if empty
35 virtual bool Empty() const = 0;
91 // reserves contiguous writable empty space in the buffer of size bytes.
  /external/clang/test/CXX/special/class.copy/
implicit-move-def.cpp 74 struct Empty { };
75 struct VirtualWithEmptyBase : Empty {

Completed in 257 milliseconds

1 2 3 4 5 6 7 8 9