/external/webrtc/webrtc/base/ |
D | linked_ptr.h | 29 template <class X> class linked_ptr 35 TEMPLATE_FUNCTION friend class linked_ptr<Y>; 43 explicit linked_ptr(X* p = 0) throw() in throw() 45 ~linked_ptr() in ~linked_ptr() 47 linked_ptr(const linked_ptr& r) throw() in throw() 49 linked_ptr& operator=(const linked_ptr& r) 59 template <class Y> friend class linked_ptr<Y>; variable 60 template <class Y> linked_ptr(const linked_ptr<Y>& r) throw() in linked_ptr() function 62 template <class Y> linked_ptr& operator=(const linked_ptr<Y>& r) 79 mutable const linked_ptr* itsPrev; [all …]
|
/external/libchrome/base/memory/ |
D | linked_ptr.h | 75 class linked_ptr { 81 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 82 ~linked_ptr() { depart(); } in ~linked_ptr() 85 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 87 linked_ptr(linked_ptr const& ptr) { in linked_ptr() function 93 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 99 linked_ptr& operator=(linked_ptr const& ptr) { 128 bool operator==(linked_ptr<U> const& ptr) const { 132 bool operator!=(linked_ptr<U> const& ptr) const { 138 friend class linked_ptr; [all …]
|
D | linked_ptr_unittest.cc | 36 linked_ptr<A> a0, a1, a2; in TEST() 47 linked_ptr<A> a3(new A); in TEST() 53 linked_ptr<A> a4(a0); in TEST() 55 linked_ptr<A> a5(new A); in TEST() 59 linked_ptr<B> b0(new B); in TEST() 60 linked_ptr<A> a6(b0); in TEST() 83 linked_ptr<A> a7; in TEST()
|
/external/google-breakpad/src/processor/ |
D | linked_ptr.h | 95 class linked_ptr { 101 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 102 ~linked_ptr() { depart(); } in ~linked_ptr() 105 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 106 linked_ptr(linked_ptr const& ptr) { copy(&ptr); } in linked_ptr() function 109 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 115 linked_ptr& operator=(linked_ptr const& ptr) { 140 bool operator==(linked_ptr<U> const& ptr) const { 144 bool operator!=(linked_ptr<U> const& ptr) const { 150 friend class linked_ptr; [all …]
|
D | address_map_unittest.cc | 54 using google_breakpad::linked_ptr; 74 typedef AddressMap< AddressType, linked_ptr<CountedObject> > TestMap; 80 linked_ptr<CountedObject> entry; in DoAddressMapTest() 91 linked_ptr<CountedObject>(new CountedObject(0)))); in DoAddressMapTest() 104 linked_ptr<CountedObject>(new CountedObject(1)))); in DoAddressMapTest() 115 linked_ptr<CountedObject>(new CountedObject(2)))); in DoAddressMapTest() 118 linked_ptr<CountedObject>(new CountedObject(3)))); in DoAddressMapTest() 120 linked_ptr<CountedObject>(new CountedObject(4)))); in DoAddressMapTest() 122 linked_ptr<CountedObject>(new CountedObject(5)))); // already in map in DoAddressMapTest() 124 linked_ptr<CountedObject>(new CountedObject(6)))); in DoAddressMapTest() [all …]
|
D | simple_serializer-inl.h | 170 class SimpleSerializer< linked_ptr<BasicSourceLineResolver::Line> > { 173 static size_t SizeOf(const linked_ptr<Line> &lineptr) { in SizeOf() 177 static char *Write(const linked_ptr<Line> &lineptr, char *dest) { in Write() 210 static RangeMapSerializer< MemAddr, linked_ptr<Line> > range_map_serializer_; 214 class SimpleSerializer< linked_ptr<BasicSourceLineResolver::Function> > { 217 static size_t SizeOf(const linked_ptr<Function> &func) { in SizeOf() 222 static char *Write(const linked_ptr<Function> &func, char *dest) { in Write() 230 class SimpleSerializer< linked_ptr<BasicSourceLineResolver::PublicSymbol> > { 233 static size_t SizeOf(const linked_ptr<PublicSymbol> &pubsymbol) { in SizeOf() 237 static char *Write(const linked_ptr<PublicSymbol> &pubsymbol, char *dest) { in Write() [all …]
|
D | basic_code_modules.cc | 50 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules() 67 linked_ptr<const CodeModule> module( in BasicCodeModules() 78 map_(new RangeMap<uint64_t, linked_ptr<const CodeModule> >()) { in BasicCodeModules() 91 linked_ptr<const CodeModule> module; in GetModuleForAddress() 106 linked_ptr<const CodeModule> module; in GetModuleAtSequence()
|
D | range_map_unittest.cc | 47 using google_breakpad::linked_ptr; 71 typedef RangeMap< AddressType, linked_ptr<CountedObject> > TestMap; 106 linked_ptr<CountedObject> object(new CountedObject(range_test->id)); in StoreTest() 166 linked_ptr<CountedObject> object; in RetrieveTest() 210 linked_ptr<CountedObject> nearest_object; in RetrieveTest() 270 linked_ptr<CountedObject> object; in RetrieveIndexTest() 337 linked_ptr<CountedObject> object(new CountedObject(object_id)); in RetriveAtIndexTest2() 342 linked_ptr<CountedObject> object; in RetriveAtIndexTest2()
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 136 class linked_ptr { 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 143 ~linked_ptr() { depart(); } in ~linked_ptr() 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 147 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 153 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 159 linked_ptr& operator=(linked_ptr const& ptr) { 179 bool operator==(linked_ptr<U> const& ptr) const { 183 bool operator!=(linked_ptr<U> const& ptr) const { 189 friend class linked_ptr; [all …]
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/ |
D | gtest-linked_ptr.h | 146 class linked_ptr { 152 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 153 ~linked_ptr() { depart(); } in ~linked_ptr() 156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 157 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 163 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 169 linked_ptr& operator=(linked_ptr const& ptr) { 189 bool operator==(linked_ptr<U> const& ptr) const { 193 bool operator!=(linked_ptr<U> const& ptr) const { 199 friend class linked_ptr; [all …]
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/ |
D | gtest-linked_ptr.h | 136 class linked_ptr { 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 143 ~linked_ptr() { depart(); } in ~linked_ptr() 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 147 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 153 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 159 linked_ptr& operator=(linked_ptr const& ptr) { 179 bool operator==(linked_ptr<U> const& ptr) const { 183 bool operator!=(linked_ptr<U> const& ptr) const { 189 friend class linked_ptr; [all …]
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 136 class linked_ptr { 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 143 ~linked_ptr() { depart(); } in ~linked_ptr() 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 147 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 153 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 159 linked_ptr& operator=(linked_ptr const& ptr) { 188 bool operator==(linked_ptr<U> const& ptr) const { 192 bool operator!=(linked_ptr<U> const& ptr) const { 198 friend class linked_ptr; [all …]
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 136 class linked_ptr { 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 143 ~linked_ptr() { depart(); } in ~linked_ptr() 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 147 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 153 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 159 linked_ptr& operator=(linked_ptr const& ptr) { 179 bool operator==(linked_ptr<U> const& ptr) const { 183 bool operator!=(linked_ptr<U> const& ptr) const { 189 friend class linked_ptr; [all …]
|
/external/v8/testing/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 146 class linked_ptr { 152 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 153 ~linked_ptr() { depart(); } in ~linked_ptr() 156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 157 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 163 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 169 linked_ptr& operator=(linked_ptr const& ptr) { 189 bool operator==(linked_ptr<U> const& ptr) const { 193 bool operator!=(linked_ptr<U> const& ptr) const { 199 friend class linked_ptr; [all …]
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 136 class linked_ptr { 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 143 ~linked_ptr() { depart(); } in ~linked_ptr() 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 147 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 153 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 159 linked_ptr& operator=(linked_ptr const& ptr) { 179 bool operator==(linked_ptr<U> const& ptr) const { 183 bool operator!=(linked_ptr<U> const& ptr) const { 189 friend class linked_ptr; [all …]
|
/external/googletest/googletest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 146 class linked_ptr { 152 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 153 ~linked_ptr() { depart(); } in ~linked_ptr() 156 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 157 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 163 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 169 linked_ptr& operator=(linked_ptr const& ptr) { 189 bool operator==(linked_ptr<U> const& ptr) const { 193 bool operator!=(linked_ptr<U> const& ptr) const { 199 friend class linked_ptr; [all …]
|
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-linked_ptr.h | 136 class linked_ptr { 142 explicit linked_ptr(T* ptr = NULL) { capture(ptr); } 143 ~linked_ptr() { depart(); } in ~linked_ptr() 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } in linked_ptr() function 147 linked_ptr(linked_ptr const& ptr) { // NOLINT in linked_ptr() function 153 template <typename U> linked_ptr& operator=(linked_ptr<U> const& ptr) { 159 linked_ptr& operator=(linked_ptr const& ptr) { 179 bool operator==(linked_ptr<U> const& ptr) const { 183 bool operator!=(linked_ptr<U> const& ptr) const { 189 friend class linked_ptr; [all …]
|
/external/google-breakpad/src/testing/gtest/test/ |
D | gtest-linked_ptr_test.cc | 41 using testing::internal::linked_ptr; 79 linked_ptr<A> a0, a1, a2; in TEST_F() 91 linked_ptr<A> a3(new A); in TEST_F() 97 linked_ptr<A> a4(a0); in TEST_F() 99 linked_ptr<A> a5(new A); in TEST_F() 103 linked_ptr<B> b0(new B); in TEST_F() 104 linked_ptr<A> a6(b0); in TEST_F() 127 linked_ptr<A> a7; in TEST_F()
|
/external/googletest/googletest/test/ |
D | gtest-linked_ptr_test.cc | 41 using testing::internal::linked_ptr; 79 linked_ptr<A> a0, a1, a2; in TEST_F() 91 linked_ptr<A> a3(new A); in TEST_F() 97 linked_ptr<A> a4(a0); in TEST_F() 99 linked_ptr<A> a5(new A); in TEST_F() 103 linked_ptr<B> b0(new B); in TEST_F() 104 linked_ptr<A> a6(b0); in TEST_F() 127 linked_ptr<A> a7; in TEST_F()
|
/external/v8/testing/gtest/test/ |
D | gtest-linked_ptr_test.cc | 41 using testing::internal::linked_ptr; 79 linked_ptr<A> a0, a1, a2; in TEST_F() 91 linked_ptr<A> a3(new A); in TEST_F() 97 linked_ptr<A> a4(a0); in TEST_F() 99 linked_ptr<A> a5(new A); in TEST_F() 103 linked_ptr<B> b0(new B); in TEST_F() 104 linked_ptr<A> a6(b0); in TEST_F() 127 linked_ptr<A> a7; in TEST_F()
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
D | gtest-linked_ptr_test.cc | 41 using testing::internal::linked_ptr; 79 linked_ptr<A> a0, a1, a2; in TEST_F() 91 linked_ptr<A> a3(new A); in TEST_F() 97 linked_ptr<A> a4(a0); in TEST_F() 99 linked_ptr<A> a5(new A); in TEST_F() 103 linked_ptr<B> b0(new B); in TEST_F() 104 linked_ptr<A> a6(b0); in TEST_F() 127 linked_ptr<A> a7; in TEST_F()
|
/external/protobuf/gtest/test/ |
D | gtest-linked_ptr_test.cc | 41 using testing::internal::linked_ptr; 79 linked_ptr<A> a0, a1, a2; in TEST_F() 90 linked_ptr<A> a3(new A); in TEST_F() 96 linked_ptr<A> a4(a0); in TEST_F() 98 linked_ptr<A> a5(new A); in TEST_F() 102 linked_ptr<B> b0(new B); in TEST_F() 103 linked_ptr<A> a6(b0); in TEST_F() 126 linked_ptr<A> a7; in TEST_F()
|
/external/v8/testing/gmock/test/ |
D | gmock_stress_test.cc | 64 using internal::linked_ptr; 93 linked_ptr<Derived1> pointer1(new Derived1(1, 2)); 94 linked_ptr<Derived2> pointer2(new Derived2(3, 4)); 108 linked_ptr<Derived1> p1(pointer1); in TestConcurrentCopyAndReadLinkedPtr() 113 linked_ptr<Base> p2; in TestConcurrentCopyAndReadLinkedPtr() 122 const linked_ptr<Derived1> p0(new Derived1(1, 2)); 130 linked_ptr<Derived1> p1(p0); in TestConcurrentWriteToEqualLinkedPtr() 131 linked_ptr<Derived1> p2(p0); in TestConcurrentWriteToEqualLinkedPtr()
|
/external/googletest/googlemock/test/ |
D | gmock_stress_test.cc | 64 using internal::linked_ptr; 93 linked_ptr<Derived1> pointer1(new Derived1(1, 2)); 94 linked_ptr<Derived2> pointer2(new Derived2(3, 4)); 108 linked_ptr<Derived1> p1(pointer1); in TestConcurrentCopyAndReadLinkedPtr() 113 linked_ptr<Base> p2; in TestConcurrentCopyAndReadLinkedPtr() 122 const linked_ptr<Derived1> p0(new Derived1(1, 2)); 130 linked_ptr<Derived1> p1(p0); in TestConcurrentWriteToEqualLinkedPtr() 131 linked_ptr<Derived1> p2(p0); in TestConcurrentWriteToEqualLinkedPtr()
|
/external/google-breakpad/src/testing/test/ |
D | gmock_stress_test.cc | 64 using internal::linked_ptr; 93 linked_ptr<Derived1> pointer1(new Derived1(1, 2)); 94 linked_ptr<Derived2> pointer2(new Derived2(3, 4)); 108 linked_ptr<Derived1> p1(pointer1); in TestConcurrentCopyAndReadLinkedPtr() 113 linked_ptr<Base> p2; in TestConcurrentCopyAndReadLinkedPtr() 122 const linked_ptr<Derived1> p0(new Derived1(1, 2)); 130 linked_ptr<Derived1> p1(p0); in TestConcurrentWriteToEqualLinkedPtr() 131 linked_ptr<Derived1> p2(p0); in TestConcurrentWriteToEqualLinkedPtr()
|