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

1234567891011>>

/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 Dsanitize-dtor-bit-field.cpp24 struct Empty { struct
26 ~Empty() {}
28 Empty e;
H A Dempty-classes.cpp5 struct Empty { }; struct
13 struct B : A, Empty {
14 B() : A(), Empty() { }
17 struct C : A, Empty {
18 C() : A(), Empty() { }
19 C(const C& other) : A(0x12345678), Empty(other) { }
22 struct D : A, Empty {
25 Empty::operator=(other);
38 // 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/clang/test/Modules/Inputs/
H A Dtypo.h1 @import Empty; variable
/external/protobuf/src/google/protobuf/
H A Dempty.pb.cc44 Empty::default_instance_,
49 sizeof(Empty),
50 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Empty, _internal_metadata_),
51 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Empty, _is_default_instance_));
65 Empty_descriptor_, &Empty::default_instance());
71 delete Empty::default_instance_;
89 Empty::default_instance_ = new Empty();
90 Empty::default_instance_->InitAsDefaultInstance();
116 Empty function in class:google::protobuf::Empty
122 Empty::Empty(::google::protobuf::Arena* arena) function in class:google::protobuf::Empty
134 Empty::Empty(const Empty& from) function in class:google::protobuf::Empty
[all...]
H A Dempty.pb.h40 class Empty;
44 class LIBPROTOBUF_EXPORT Empty : public ::google::protobuf::Message { class in namespace:google::protobuf
46 Empty();
47 virtual ~Empty();
49 Empty(const Empty& from);
51 inline Empty& operator=(const Empty& from) {
61 static const Empty& default_instance();
63 void UnsafeArenaSwap(Empty* othe
[all...]
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DEmpty.cs34 new pbr::GeneratedClrTypeInfo(typeof(global::Google.Protobuf.WellKnownTypes.Empty), global::Google.Protobuf.WellKnownTypes.Empty.Parser, null, null, null, null)
47 /// rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
50 /// The JSON representation for `Empty` is empty JSON object `{}`.
53 public sealed partial class Empty : pb::IMessage<Empty> { class in namespace:Google.Protobuf.WellKnownTypes
54 private static readonly pb::MessageParser<Empty> _parser = new pb::MessageParser<Empty>(() => new Empty());
65 public Empty() { method in class:Google.Protobuf.WellKnownTypes.Empty
71 public Empty(Empty other) : this() { method in class:Google.Protobuf.WellKnownTypes.Empty
[all...]
/external/swiftshader/third_party/LLVM/unittests/Support/
H A DConstantRangeTest.cpp22 static ConstantRange Empty; member in class:__anon19093::ConstantRangeTest
29 ConstantRange ConstantRangeTest::Empty(16, false);
45 EXPECT_FALSE(Empty.isFullSet());
46 EXPECT_TRUE(Empty.isEmptySet());
47 EXPECT_TRUE(Empty.inverse().isFullSet());
48 EXPECT_FALSE(Empty.isWrappedSet());
49 EXPECT_FALSE(Empty.contains(APInt(16, 0x0)));
50 EXPECT_FALSE(Empty.contains(APInt(16, 0x9)));
51 EXPECT_FALSE(Empty.contains(APInt(16, 0xa)));
52 EXPECT_FALSE(Empty
[all...]
/external/avb/
H A D.clang-format18 AllowShortFunctionsOnASingleLine: Empty
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_nothrow_constructible.pass.cpp63 class Empty class
97 Tuple(Empty&&) noexcept {}
105 test_is_nothrow_constructible<Empty> ();
106 test_is_nothrow_constructible<Empty, const Empty&> ();
113 test_is_nothrow_constructible<Tuple &&, Empty> (); // See bug #19616.
115 static_assert(!std::is_constructible<Tuple&, Empty>::value, "");
116 test_is_not_nothrow_constructible<Tuple &, Empty> (); // See bug #19616.
H A Dis_trivially_copy_assignable.pass.cpp37 class Empty class
67 test_has_trivially_copy_assignable<Empty>();
78 test_has_not_trivially_copy_assignable<const Empty>();
H A Dis_trivially_move_assignable.pass.cpp37 class Empty class
67 test_has_trivial_assign<Empty>();
78 test_has_not_trivial_assign<const Empty>();
H A Dis_move_assignable.pass.cpp35 class Empty class
64 test_is_move_assignable<Empty> ();
H A Dis_nothrow_copy_assignable.pass.cpp35 class Empty class
60 test_has_nothrow_assign<Empty>();
H A Dis_nothrow_move_assignable.pass.cpp35 class Empty class
60 test_has_nothrow_assign<Empty>();
/external/llvm/test/tools/dsymutil/X86/
H A Dsubmodules.m7 module Empty {
8 header "Empty.h"
46 // CHECK-NEXT: DW_AT_name{{.*}}"Empty"
50 @import Parent.Empty;
/external/compiler-rt/test/msan/
H A Ddtor-bit-fields.cc29 struct Empty { struct
31 ~Empty() {}
57 Empty *e = new Empty();
58 e->~Empty();
/external/llvm/unittests/IR/
H A DConstantRangeTest.cpp22 static ConstantRange Empty; member in class:__anon13644::ConstantRangeTest
29 ConstantRange ConstantRangeTest::Empty(16, false);
45 EXPECT_FALSE(Empty.isFullSet());
46 EXPECT_TRUE(Empty.isEmptySet());
47 EXPECT_TRUE(Empty.inverse().isFullSet());
48 EXPECT_FALSE(Empty.isWrappedSet());
49 EXPECT_FALSE(Empty.contains(APInt(16, 0x0)));
50 EXPECT_FALSE(Empty.contains(APInt(16, 0x9)));
51 EXPECT_FALSE(Empty.contains(APInt(16, 0xa)));
52 EXPECT_FALSE(Empty
[all...]
/external/clang/test/CodeGen/
H A D2009-03-08-ZeroEltStructCrash.c3 struct Empty {}; struct
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Dis_member_pointer.pass.cpp48 class Empty class
79 test_is_member_pointer<FunctionPtr Empty::*>();
80 test_is_member_pointer<void (Empty::*)()>();
95 test_is_not_member_pointer<Empty>();
102 test_is_member_pointer<int (Empty::*)(int, ...) const>();
103 test_is_member_pointer<int (Empty::*)(int, long, long) const noexcept>();
104 test_is_member_pointer<int (Empty::*)() & noexcept>();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
H A DExceptionExtensions.cs43 string trace = e.StackTrace ?? string.Empty;

Completed in 496 milliseconds

1234567891011>>