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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGenCXX/
empty-nontrivially-copyable.cpp 8 struct Empty;
10 struct Empty {
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* [[NEWTMP:%.*]], %struct.Empty
    [all...]
arm64-darwinpcs.cpp 8 struct Empty {};
9 void test_empty(Empty e) {}
arm-vaarg.cpp 2 struct Empty {};
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]]
arm64-empty-struct.cpp 2 struct Empty {};
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]]
sanitize-dtor-bit-field.cpp 24 struct Empty {
26 ~Empty() {}
28 Empty e;
empty-classes.cpp 5 struct Empty { };
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.
  /cts/tests/JobSchedulerSharedUid/shareduid/src/android/jobscheduler/cts/shareduid/
Empty.java 18 public class Empty {
  /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/clang/test/Modules/Inputs/
typo.h 1 @import Empty;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
cons-1.s 0 # Empty expressions are a single zero.
  /external/protobuf/src/google/protobuf/
empty.pb.cc 2 // source: google/protobuf/empty.proto
5 #include <google/protobuf/empty.pb.h>
36 "google/protobuf/empty.proto");
44 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_;
82 "\n\033google/protobuf/empty.proto\022\017google.pr
    [all...]
empty.pb.h 2 // source: google/protobuf/empty.proto
40 class Empty;
44 class LIBPROTOBUF_EXPORT Empty : public ::google::protobuf::Message {
46 Empty();
47 virtual ~Empty();
49 Empty(const Empty& from);
51 inline Empty& operator=(const Empty& from) {
61 static const Empty& default_instance()
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/ia64/
proc.l 5 .*:12: Error: Empty argument of .proc
6 .*:13: Error: Empty argument of .endp
  /external/swiftshader/third_party/LLVM/unittests/Support/
ConstantRangeTest.cpp 22 static ConstantRange Empty;
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.contains(APInt(16, 0xaa9)))
    [all...]
  /external/avb/
.clang-format 18 AllowShortFunctionsOnASingleLine: Empty
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_constructible.pass.cpp 63 class Empty
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.
is_trivially_copy_assignable.pass.cpp 37 class Empty
67 test_has_trivially_copy_assignable<Empty>();
78 test_has_not_trivially_copy_assignable<const Empty>();
is_trivially_move_assignable.pass.cpp 37 class Empty
67 test_has_trivial_assign<Empty>();
78 test_has_not_trivial_assign<const Empty>();
  /external/llvm/test/tools/dsymutil/X86/
submodules.m 7 module Empty {
8 header "Empty.h"
13 touch empty.h
45 // CHECK: 0x0[[EMPTY:.*]]: DW_TAG_module
46 // CHECK-NEXT: DW_AT_name{{.*}}"Empty"
48 // CHECK: DW_AT_import {{.*}}0x{{0*}}[[EMPTY]]
50 @import Parent.Empty;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_constructible.pass.cpp 63 class Empty
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.
  /system/iot/attestation/atap/
.clang-format 18 AllowShortFunctionsOnASingleLine: Empty
  /external/compiler-rt/test/msan/
dtor-bit-fields.cc 10 // TODO: remove empty dtors when msan use-after-dtor poisons
29 struct Empty {
31 ~Empty() {}
57 Empty *e = new Empty();
58 e->~Empty();
  /external/llvm/unittests/IR/
ConstantRangeTest.cpp 22 static ConstantRange Empty;
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.contains(APInt(16, 0xaa9)))
    [all...]
  /external/brotli/csharp/org/brotli/dec/
Transform.cs 34 internal static readonly Org.Brotli.Dec.Transform[] Transforms = new Org.Brotli.Dec.Transform[] { new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, string.Empty), new Org.Brotli.Dec.Transform(string.Empty,
35 Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.OmitFirst1, string.Empty), new Org.Brotli.Dec.Transform
36 (string.Empty, Org.Brotli.Dec.WordTransformType.UppercaseFirst, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " the "), new Org.Brotli.Dec.Transform(" ", Org.Brotli.Dec.WordTransformType.Identity
37 , string.Empty), new Org.Brotli.Dec.Transform("s ", Org.Brotli.Dec.WordTransformType.Identity, " "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType.Identity, " of "), new Org.Brotli.Dec.Transform(string.Empty, Org.Brotli.Dec.WordTransformType
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
empty.pb.h 2 // source: google/protobuf/empty.proto
40 class Empty;
44 class LIBPROTOBUF_EXPORT Empty : public ::google::protobuf::Message {
46 Empty();
47 virtual ~Empty();
49 Empty(const Empty& from);
51 inline Empty& operator=(const Empty& from) {
61 static const Empty& default_instance()
    [all...]

Completed in 564 milliseconds

1 2 3 4 5 6 7 8 91011>>