/external/protobuf/src/google/protobuf/ |
D | empty.pb.cc | 44 Empty::default_instance_, in protobuf_AssignDesc_google_2fprotobuf_2fempty_2eproto() 49 sizeof(Empty), in protobuf_AssignDesc_google_2fprotobuf_2fempty_2eproto() 50 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Empty, _internal_metadata_), in protobuf_AssignDesc_google_2fprotobuf_2fempty_2eproto() 51 GOOGLE_PROTOBUF_GENERATED_MESSAGE_FIELD_OFFSET(Empty, _is_default_instance_)); in protobuf_AssignDesc_google_2fprotobuf_2fempty_2eproto() 65 Empty_descriptor_, &Empty::default_instance()); in protobuf_RegisterTypes() 71 delete Empty::default_instance_; in protobuf_ShutdownFile_google_2fprotobuf_2fempty_2eproto() 89 Empty::default_instance_ = new Empty(); in protobuf_AddDesc_google_2fprotobuf_2fempty_2eproto() 90 Empty::default_instance_->InitAsDefaultInstance(); in protobuf_AddDesc_google_2fprotobuf_2fempty_2eproto() 116 Empty::Empty() in Empty() function in google::protobuf::Empty 122 Empty::Empty(::google::protobuf::Arena* arena) in Empty() function in google::protobuf::Empty [all …]
|
D | empty.pb.h | 40 class Empty; variable 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(); 63 void UnsafeArenaSwap(Empty* other); 64 void Swap(Empty* other); 68 inline Empty* New() const { return New(NULL); } in New() [all …]
|
/external/swiftshader/third_party/LLVM/unittests/Support/ |
D | ConstantRangeTest.cpp | 22 static ConstantRange Empty; member in __anonbd6c175d0111::ConstantRangeTest 29 ConstantRange ConstantRangeTest::Empty(16, false); member in __anonbd6c175d0111::ConstantRangeTest 45 EXPECT_FALSE(Empty.isFullSet()); in TEST_F() 46 EXPECT_TRUE(Empty.isEmptySet()); in TEST_F() 47 EXPECT_TRUE(Empty.inverse().isFullSet()); in TEST_F() 48 EXPECT_FALSE(Empty.isWrappedSet()); in TEST_F() 49 EXPECT_FALSE(Empty.contains(APInt(16, 0x0))); in TEST_F() 50 EXPECT_FALSE(Empty.contains(APInt(16, 0x9))); in TEST_F() 51 EXPECT_FALSE(Empty.contains(APInt(16, 0xa))); in TEST_F() 52 EXPECT_FALSE(Empty.contains(APInt(16, 0xaa9))); in TEST_F() [all …]
|
/external/clang/test/SemaCXX/ |
D | empty-class-layout.cpp | 24 struct Empty { Empty(); }; struct 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]; 51 Empty e; [all …]
|
/external/llvm/unittests/IR/ |
D | ConstantRangeTest.cpp | 22 static ConstantRange Empty; member in __anon10950d6f0111::ConstantRangeTest 29 ConstantRange ConstantRangeTest::Empty(16, false); member in __anon10950d6f0111::ConstantRangeTest 45 EXPECT_FALSE(Empty.isFullSet()); in TEST_F() 46 EXPECT_TRUE(Empty.isEmptySet()); in TEST_F() 47 EXPECT_TRUE(Empty.inverse().isFullSet()); in TEST_F() 48 EXPECT_FALSE(Empty.isWrappedSet()); in TEST_F() 49 EXPECT_FALSE(Empty.contains(APInt(16, 0x0))); in TEST_F() 50 EXPECT_FALSE(Empty.contains(APInt(16, 0x9))); in TEST_F() 51 EXPECT_FALSE(Empty.contains(APInt(16, 0xa))); in TEST_F() 52 EXPECT_FALSE(Empty.contains(APInt(16, 0xaa9))); in TEST_F() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/ |
D | Empty.cs | 34 …nfo(typeof(global::Google.Protobuf.WellKnownTypes.Empty), global::Google.Protobuf.WellKnownTypes.E… in EmptyReflection() 53 public sealed partial class Empty : pb::IMessage<Empty> { class 54 …private static readonly pb::MessageParser<Empty> _parser = new pb::MessageParser<Empty>(() => new … 55 public static pb::MessageParser<Empty> Parser { get { return _parser; } } 65 public Empty() { in Empty() method in Google.Protobuf.WellKnownTypes.Empty 71 public Empty(Empty other) : this() { in Empty() method in Google.Protobuf.WellKnownTypes.Empty 74 public Empty Clone() { in Clone() 75 return new Empty(this); in Clone() 79 return Equals(other as Empty); in Equals() 82 public bool Equals(Empty other) { in Equals() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | empty-classes.cpp | 5 struct Empty { }; struct 13 struct B : A, Empty { 14 B() : A(), Empty() { } in B() 17 struct C : A, Empty { 18 C() : A(), Empty() { } in C() 19 C(const C& other) : A(0x12345678), Empty(other) { } in C() 22 struct D : A, Empty { 25 Empty::operator=(other); in operator =()
|
D | empty-nontrivially-copyable.cpp | 8 struct Empty; 10 struct Empty { struct 11 Empty(const Empty &e); 15 bool foo(Empty e) { in foo() 21 void caller(Empty &e) { in caller()
|
D | arm-vaarg.cpp | 2 struct Empty {}; struct 4 Empty emptyvar; 11 emptyvar = __builtin_va_arg(l, Empty); in take_args()
|
D | arm64-empty-struct.cpp | 2 struct Empty {}; struct 4 Empty emptyvar; 11 emptyvar = __builtin_va_arg(l, Empty); in take_args()
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
D | is_nothrow_constructible.pass.cpp | 63 class Empty class 97 Tuple(Empty&&) noexcept {} in Tuple() 105 test_is_nothrow_constructible<Empty> (); in main() 106 test_is_nothrow_constructible<Empty, const Empty&> (); in main() 113 test_is_nothrow_constructible<Tuple &&, Empty> (); // See bug #19616. in main() 115 static_assert(!std::is_constructible<Tuple&, Empty>::value, ""); in main() 116 test_is_not_nothrow_constructible<Tuple &, Empty> (); // See bug #19616. in main()
|
D | is_empty.pass.cpp | 55 class Empty {}; class 65 struct EmptyBase : public Empty {}; 66 struct VirtualBase : virtual Empty {}; 100 test_is_empty<Empty>(); in main()
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/ |
D | is_member_pointer.pass.cpp | 48 class Empty class 79 test_is_member_pointer<FunctionPtr Empty::*>(); in main() 80 test_is_member_pointer<void (Empty::*)()>(); in main() 95 test_is_not_member_pointer<Empty>(); in main() 102 test_is_member_pointer<int (Empty::*)(int, ...) const>(); in main() 103 test_is_member_pointer<int (Empty::*)(int, long, long) const noexcept>(); in main() 104 test_is_member_pointer<int (Empty::*)() & noexcept>(); in main()
|
/external/clang/lib/Serialization/ |
D | ASTReaderStmt.cpp | 2817 Stmt::EmptyShell Empty; in ReadStmtFromStream() local 2856 S = new (Context) NullStmt(Empty); in ReadStmtFromStream() 2860 S = new (Context) CompoundStmt(Empty); in ReadStmtFromStream() 2864 S = new (Context) CaseStmt(Empty); in ReadStmtFromStream() 2868 S = new (Context) DefaultStmt(Empty); in ReadStmtFromStream() 2872 S = new (Context) LabelStmt(Empty); in ReadStmtFromStream() 2882 S = new (Context) IfStmt(Empty); in ReadStmtFromStream() 2886 S = new (Context) SwitchStmt(Empty); in ReadStmtFromStream() 2890 S = new (Context) WhileStmt(Empty); in ReadStmtFromStream() 2894 S = new (Context) DoStmt(Empty); in ReadStmtFromStream() [all …]
|
/external/clang/test/Analysis/ |
D | padding_cpp.cpp | 121 class Empty {}; // no-warning class 124 Empty e1; 126 Empty e2; 129 class EBO1 : public Empty { // xxxexpected-warning{{Excessive padding in 'class EBO1'}} 135 class EBO2 : public Empty { // xxxexpected-warning{{Excessive padding in 'class EBO2'}} 136 Empty c1; 138 Empty c2;
|
/external/compiler-rt/test/msan/ |
D | dtor-bit-fields.cc | 29 struct Empty { struct 31 ~Empty() {} in ~Empty() argument 57 Empty *e = new Empty(); in main() 58 e->~Empty(); in main()
|
/external/clang/include/clang/AST/ |
D | StmtObjC.h | 32 explicit ObjCForCollectionStmt(EmptyShell Empty) : in ObjCForCollectionStmt() argument 33 Stmt(ObjCForCollectionStmtClass, Empty) { } in ObjCForCollectionStmt() 87 explicit ObjCAtCatchStmt(EmptyShell Empty) : in ObjCAtCatchStmt() argument 88 Stmt(ObjCAtCatchStmtClass, Empty) { } in ObjCAtCatchStmt() 129 explicit ObjCAtFinallyStmt(EmptyShell Empty) : in ObjCAtFinallyStmt() argument 130 Stmt(ObjCAtFinallyStmtClass, Empty) { } in ObjCAtFinallyStmt() 179 explicit ObjCAtTryStmt(EmptyShell Empty, unsigned NumCatchStmts, in ObjCAtTryStmt() argument 181 : Stmt(ObjCAtTryStmtClass, Empty), NumCatchStmts(NumCatchStmts), in ObjCAtTryStmt() 276 explicit ObjCAtSynchronizedStmt(EmptyShell Empty) : in ObjCAtSynchronizedStmt() argument 277 Stmt(ObjCAtSynchronizedStmtClass, Empty) { } in ObjCAtSynchronizedStmt() [all …]
|
D | ExprCXX.h | 71 explicit CXXOperatorCallExpr(ASTContext& C, EmptyShell Empty) : in CXXOperatorCallExpr() argument 72 CallExpr(C, CXXOperatorCallExprClass, Empty) { } in CXXOperatorCallExpr() 127 CXXMemberCallExpr(ASTContext &C, EmptyShell Empty) in CXXMemberCallExpr() argument 128 : CallExpr(C, CXXMemberCallExprClass, Empty) { } in CXXMemberCallExpr() 170 CUDAKernelCallExpr(ASTContext &C, EmptyShell Empty) in CUDAKernelCallExpr() argument 171 : CallExpr(C, CUDAKernelCallExprClass, END_PREARG, Empty) { } in CUDAKernelCallExpr() 264 explicit CXXStaticCastExpr(EmptyShell Empty, unsigned PathSize) in CXXStaticCastExpr() argument 265 : CXXNamedCastExpr(CXXStaticCastExprClass, Empty, PathSize) { } in CXXStaticCastExpr() 300 explicit CXXDynamicCastExpr(EmptyShell Empty, unsigned pathSize) in CXXDynamicCastExpr() argument 301 : CXXNamedCastExpr(CXXDynamicCastExprClass, Empty, pathSize) { } in CXXDynamicCastExpr() [all …]
|
D | Stmt.h | 453 explicit DeclStmt(EmptyShell Empty) : Stmt(DeclStmtClass, Empty) { } in DeclStmt() argument 526 explicit NullStmt(EmptyShell Empty) : Stmt(NullStmtClass, Empty), in NullStmt() argument 568 explicit CompoundStmt(EmptyShell Empty) in CompoundStmt() argument 569 : Stmt(CompoundStmtClass, Empty), Body(nullptr) { in CompoundStmt() 705 explicit CaseStmt(EmptyShell Empty) : SwitchCase(CaseStmtClass, Empty) { } in CaseStmt() argument 757 explicit DefaultStmt(EmptyShell Empty) in DefaultStmt() argument 758 : SwitchCase(DefaultStmtClass, Empty) { } in DefaultStmt() 803 explicit LabelStmt(EmptyShell Empty) : Stmt(LabelStmtClass, Empty) { } in LabelStmt() argument 843 explicit AttributedStmt(EmptyShell Empty, unsigned NumAttrs) in AttributedStmt() argument 844 : Stmt(AttributedStmtClass, Empty), NumAttrs(NumAttrs) { in AttributedStmt() [all …]
|
D | ExprObjC.h | 37 explicit ObjCStringLiteral(EmptyShell Empty) in ObjCStringLiteral() argument 38 : Expr(ObjCStringLiteralClass, Empty) {} in ObjCStringLiteral() 68 explicit ObjCBoolLiteralExpr(EmptyShell Empty) in ObjCBoolLiteralExpr() argument 69 : Expr(ObjCBoolLiteralExprClass, Empty) { } in ObjCBoolLiteralExpr() 105 explicit ObjCBoxedExpr(EmptyShell Empty) in ObjCBoxedExpr() argument 106 : Expr(ObjCBoxedExprClass, Empty) {} in ObjCBoxedExpr() 155 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements) in ObjCArrayLiteral() argument 156 : Expr(ObjCArrayLiteralClass, Empty), NumElements(NumElements) {} in ObjCArrayLiteral() 289 explicit ObjCDictionaryLiteral(EmptyShell Empty, unsigned NumElements, 291 : Expr(ObjCDictionaryLiteralClass, Empty), NumElements(NumElements), [all …]
|
/external/skia/src/core/ |
D | SkTDynamicHash.h | 50 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted())); 77 } while (!this->done() && (this->current() == Empty() || this->current() == Deleted())); 95 if (Empty() == candidate) { in find() 149 if (Empty() == candidate || Deleted() == candidate || GetKey(*candidate) == key) { in countCollisions() 160 static T* Empty() { return reinterpret_cast<T*>(0); } // i.e. nullptr in Empty() function 178 } else if (Empty() != fArray[i]) { in validate() 191 if (Empty() == fArray[i] || Deleted() == fArray[i]) { in validate() 195 if (Empty() == fArray[j] || Deleted() == fArray[j]) { in validate() 213 if (Empty() == candidate || Deleted() == candidate) { in innerAdd() 260 if (Empty() != entry && Deleted() != entry) { in resize()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
D | packet_buffer.cc | 53 bool PacketBuffer::Empty() const { in Empty() function in webrtc::PacketBuffer 148 if (Empty()) { in NextTimestamp() 160 if (Empty()) { in NextHigherTimestamp() 178 if (Empty()) { in NextRtpHeader() 185 if (Empty()) { in GetNextPacket() 199 while (!Empty() && in GetNextPacket() 216 if (Empty()) { in DiscardNextPacket() 228 while (!Empty() && timestamp_limit != buffer_.front()->header.timestamp && in DiscardOldPackets()
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue116/ |
D | NoFieldsTest.java | 26 Empty empty = new Empty(); in testEmptyClass() 31 assertTrue(emptyParsed instanceof Empty); in testEmptyClass() 64 class Empty { class
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/ |
D | get_const.pass.cpp | 26 struct Empty {}; struct 49 typedef std::tuple<Empty> T; in main() 50 constexpr T t{Empty()}; in main() 51 constexpr Empty e = std::get<0>(t); in main()
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/ |
D | is_member_pointer.pass.cpp | 50 class Empty class 82 test_is_member_pointer<int Empty::*>(); in main() 83 test_is_member_pointer<void (Empty::*)(int)>(); in main() 97 test_is_not_member_pointer<Empty>(); in main()
|