Searched refs:Empty (Results 1 - 25 of 220) sorted by relevance

123456789

/external/clang/test/CodeGenCXX/
H A Dempty-nontrivially-copyable.cpp8 struct Empty;
10 struct Empty { struct
11 Empty(const Empty &e);
15 bool foo(Empty e) {
16 // CHECK: @_Z3foo5Empty(%struct.Empty* %e)
17 // CHECK: call {{.*}} @_ZN5Empty5checkEv(%struct.Empty* %e)
21 void caller(Empty &e) {
22 // CHECK: @_Z6callerR5Empty(%struct.Empty* dereferenceable({{[0-9]+}}) %e)
23 // CHECK: call {{.*}} @_ZN5EmptyC1ERKS_(%struct.Empty* [[NEWTM
[all...]
H A Darm64-darwinpcs.cpp8 struct Empty {}; struct
9 void test_empty(Empty e) {}
H A Darm-vaarg.cpp2 struct Empty {}; struct
4 Empty emptyvar;
11 emptyvar = __builtin_va_arg(l, Empty);
14 // CHECK: [[EMPTY_PTR:%[a-zA-Z0-9._]+]] = bitcast i8* {{%[a-zA-Z0-9._]+}} to %struct.Empty*
20 // CHECK-NOT: load %struct.Empty, %struct.Empty* [[EMPTY_PTR]]
H A Darm64-empty-struct.cpp2 struct Empty {}; struct
4 Empty emptyvar;
11 emptyvar = __builtin_va_arg(l, Empty);
14 // CHECK: [[EMPTY_PTR:%[a-zA-Z0-9._]+]] = bitcast i8* {{%[a-zA-Z0-9._]+}} to %struct.Empty*
20 // CHECK-NOT: load %struct.Empty, %struct.Empty* [[EMPTY_PTR]]
H A Dempty-classes.cpp3 struct Empty { }; struct
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/SemaCXX/
H A Dempty-class-layout.cpp24 struct Empty { Empty(); }; struct in namespace:Test0
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
92 struct Empty { }; struct in namespace:Test2
105 struct Empty { }; struct in namespace:Test3
115 struct Empty { }; struct in namespace:Test4
126 struct Empty { }; struct in namespace:Test5
139 struct Empty { }; struct in namespace:Test6
151 struct Empty { }; struct in namespace:Test7
[all...]
/external/llvm/unittests/IR/
H A DConstantRangeTest.cpp21 static ConstantRange Empty; member in class:__anon11261::ConstantRangeTest
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
[all...]
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_nothrow_constructible.pass.cpp47 class Empty class
81 Tuple(Empty&&) noexcept {}
89 test_is_nothrow_constructible<Empty> ();
90 test_is_nothrow_constructible<Empty, const Empty&> ();
92 test_is_nothrow_constructible<Tuple &&, Empty> (); // See bug #19616.
100 static_assert(!std::is_constructible<Tuple&, Empty>::value, "");
101 test_is_not_nothrow_constructible<Tuple &, Empty> (); // See bug #19616.
H A Dis_trivially_copy_assignable.pass.cpp28 class Empty class
58 test_has_trivially_copy_assignable<Empty>();
69 test_has_not_trivially_copy_assignable<const Empty>();
H A Dis_trivially_move_assignable.pass.cpp28 class Empty class
58 test_has_trivial_assign<Empty>();
69 test_has_not_trivial_assign<const Empty>();
H A Dis_move_assignable.pass.cpp28 class Empty class
57 test_is_move_assignable<Empty> ();
H A Dis_nothrow_copy_assignable.pass.cpp28 class Empty class
53 test_has_nothrow_assign<Empty>();
H A Dis_nothrow_move_assignable.pass.cpp28 class Empty class
53 test_has_nothrow_assign<Empty>();
H A Dis_copy_assignable.pass.cpp28 class Empty class
68 test_is_copy_assignable<Empty> ();
H A Dis_move_constructible.pass.cpp28 class Empty class
73 test_is_move_constructible<Empty>();
H A Dis_nothrow_copy_constructible.pass.cpp32 class Empty class
55 test_is_nothrow_copy_constructible<Empty>();
H A Dis_nothrow_move_constructible.pass.cpp32 class Empty class
55 test_is_nothrow_move_constructible<Empty>();
H A Dis_trivially_copy_constructible.pass.cpp30 class Empty class
67 test_is_trivially_copy_constructible<Empty>();
/external/v8/test/webkit/
H A Ddfg-put-by-id-prototype-check.js33 var Empty = ""; variable
45 eval(Empty + "foo(o, i)");
H A Ddfg-weak-js-constant-silent-fill.js37 var Empty = ""; variable
43 eval(Empty + "foo(o1, o2, o3, \"stuff\")");
/external/clang/test/CodeGen/
H A D2009-03-08-ZeroEltStructCrash.c3 struct Empty {}; struct
H A D2002-07-30-UnionTest.c4 struct Empty {}; struct
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
H A DExceptionExtensions.cs43 string trace = e.StackTrace ?? string.Empty;
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
H A Dget_const.pass.cpp24 struct Empty {}; struct
47 typedef std::tuple<Empty> T;
48 constexpr T t{Empty()};
49 constexpr Empty e = std::get<0>(t);
/external/clang/test/CXX/special/class.copy/
H A Dimplicit-move-def.cpp74 struct Empty { }; struct
75 struct VirtualWithEmptyBase : Empty {

Completed in 689 milliseconds

123456789