/third_party/boost/boost/polygon/detail/ |
D | voronoi_ctypes.hpp | 117 extended_exponent_fpt operator+(const extended_exponent_fpt& that) const { in operator +() 119 that.exp_ > this->exp_ + _traits::MAX_SIGNIFICANT_EXP_DIF) { in operator +() 120 return that; in operator +() 122 if (that.val_ == 0.0 || in operator +() 123 this->exp_ > that.exp_ + _traits::MAX_SIGNIFICANT_EXP_DIF) { in operator +() 126 if (this->exp_ >= that.exp_) { in operator +() 127 exp_type exp_dif = this->exp_ - that.exp_; in operator +() 128 fpt_type val = std::ldexp(this->val_, exp_dif) + that.val_; in operator +() 129 return extended_exponent_fpt(val, that.exp_); in operator +() 131 exp_type exp_dif = that.exp_ - this->exp_; in operator +() [all …]
|
D | voronoi_robust_fpt.hpp | 60 T get_sqrt(const T& that) { in get_sqrt() argument 61 return (std::sqrt)(that); in get_sqrt() 65 bool is_pos(const T& that) { in is_pos() argument 66 return that > 0; in is_pos() 70 bool is_neg(const T& that) { in is_neg() argument 71 return that < 0; in is_neg() 75 bool is_zero(const T& that) { in is_zero() argument 76 return that == 0; in is_zero() 100 robust_fpt& operator=(const robust_fpt& that) { in operator =() argument 101 this->fpv_ = that.fpv_; in operator =() [all …]
|
D | iterator_geometry_to_set.hpp | 46 inline bool operator==(const iterator_geometry_to_set& that) const { in operator ==() 47 return corner_ == that.corner_; in operator ==() 49 inline bool operator!=(const iterator_geometry_to_set& that) const { in operator !=() 50 return !(*this == that); in operator !=() 119 iterator_geometry_to_set(const iterator_geometry_to_set& that) : in iterator_geometry_to_set() argument 122 vertex_ = that.vertex_; in iterator_geometry_to_set() 123 itrb = that.itrb; in iterator_geometry_to_set() 124 itre = that.itre; in iterator_geometry_to_set() 125 last_vertex_ = that.last_vertex_; in iterator_geometry_to_set() 126 is_hole_ = that.is_hole_; in iterator_geometry_to_set() [all …]
|
/third_party/boost/boost/polygon/ |
D | point_data.hpp | 37 explicit point_data(const point_data& that) { in point_data() argument 38 coords_[0] = that.coords_[0]; in point_data() 39 coords_[1] = that.coords_[1]; in point_data() 42 point_data& operator=(const point_data& that) { in operator =() argument 43 coords_[0] = that.coords_[0]; in operator =() 44 coords_[1] = that.coords_[1]; in operator =() 51 explicit point_data(const PointType& that) { in point_data() argument 52 *this = that; in point_data() 56 point_data(const PointType& that) { in point_data() argument 57 *this = that; in point_data() [all …]
|
D | interval_data.hpp | 37 interval_data(const interval_data& that) { in interval_data() argument 38 coords_[0] = that.coords_[0]; in interval_data() 39 coords_[1] = that.coords_[1]; in interval_data() 42 interval_data& operator=(const interval_data& that) { in operator =() argument 43 coords_[0] = that.coords_[0]; in operator =() 44 coords_[1] = that.coords_[1]; in operator =() 49 interval_data& operator=(const IntervalType& that) { in operator =() argument 50 assign(*this, that); in operator =() 80 bool operator==(const interval_data& that) const { in operator ==() 81 return low() == that.low() && high() == that.high(); in operator ==() [all …]
|
D | segment_data.hpp | 38 segment_data(const segment_data& that) { in segment_data() argument 39 points_[0] = that.points_[0]; in segment_data() 40 points_[1] = that.points_[1]; in segment_data() 43 segment_data& operator=(const segment_data& that) { in operator =() argument 44 points_[0] = that.points_[0]; in operator =() 45 points_[1] = that.points_[1]; in operator =() 50 segment_data& operator=(const SegmentType& that) { in operator =() argument 51 assign(*this, that); in operator =() 81 bool operator==(const segment_data& that) const { in operator ==() 82 return (points_[0] == that.points_[0]) && in operator ==() [all …]
|
D | gmp_override.hpp | 20 inline gmp_int& operator=(const gmp_int& that) { in operator =() argument 21 v_ = that.v_; in operator =() 24 inline gmp_int& operator=(long that) { in operator =() argument 25 v_ = that; in operator =() 44 inline bool operator==(const gmp_int& that) const { in operator ==() 45 return v_ == that.v_; in operator ==() 47 inline bool operator!=(const gmp_int& that) const { in operator !=() 48 return v_ != that.v_; in operator !=() 50 inline bool operator<(const gmp_int& that) const { in operator <() 51 bool retval = v_ < that.v_; in operator <() [all …]
|
/third_party/skia/include/gpu/vk/ |
D | GrVkTypes.h | 42 bool operator==(const GrVkAlloc& that) const { 43 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize && 44 fFlags == that.fFlags && fUsesSystemHeap == that.fUsesSystemHeap; 55 bool operator==(const GrVkYcbcrConversionInfo& that) const { 57 if (!this->isValid() && !that.isValid()) { 60 return this->fFormat == that.fFormat && 61 this->fExternalFormat == that.fExternalFormat && 62 this->fYcbcrModel == that.fYcbcrModel && 63 this->fYcbcrRange == that.fYcbcrRange && 64 this->fXChromaOffset == that.fXChromaOffset && [all …]
|
/third_party/flutter/engine/flutter/fml/platform/darwin/ |
D | scoped_nsobject.h | 45 scoped_nsprotocol(const scoped_nsprotocol<NST>& that) : object_([that.object_ retain]) {} in scoped_nsprotocol() argument 48 scoped_nsprotocol(const scoped_nsprotocol<NSU>& that) : object_([that.get() retain]) {} in scoped_nsprotocol() argument 52 scoped_nsprotocol& operator=(const scoped_nsprotocol<NST>& that) { 53 reset([that.get() retain]); 66 bool operator==(NST that) const { return object_ == that; } 67 bool operator!=(NST that) const { return object_ != that; } 73 void swap(scoped_nsprotocol& that) { in swap() argument 74 NST temp = that.object_; in swap() 75 that.object_ = object_; in swap() 116 scoped_nsobject(const scoped_nsobject<NST>& that) : scoped_nsprotocol<NST*>(that) {} in scoped_nsobject() argument [all …]
|
/third_party/boost/boost/log/utility/ |
D | string_literal.hpp | 113 …sic_string_literal(basic_string_literal const& that) BOOST_NOEXCEPT : m_pStart(that.m_pStart), m_L… in basic_string_literal() argument 121 BOOST_CXX14_CONSTEXPR this_type& operator= (this_type const& that) BOOST_NOEXCEPT in operator =() argument 123 return assign(that); in operator =() 152 bool operator== (this_type const& that) const BOOST_NOEXCEPT in operator ==() 154 return (compare_internal(m_pStart, m_Len, that.m_pStart, that.m_Len) == 0); in operator ==() 172 bool operator== (string_type const& that) const BOOST_NOEXCEPT in operator ==() 174 return (compare_internal(m_pStart, m_Len, that.c_str(), that.size()) == 0); in operator ==() 183 bool operator!= (this_type const& that) const BOOST_NOEXCEPT in operator !=() 185 return (compare_internal(m_pStart, m_Len, that.m_pStart, that.m_Len) != 0); in operator !=() 203 bool operator!= (string_type const& that) const BOOST_NOEXCEPT in operator !=() [all …]
|
/third_party/boost/boost/log/detail/ |
D | enqueued_record.hpp | 53 order(order const& that) : OrderT(static_cast< OrderT const& >(that)) {} in order() 54 order(OrderT const& that) : OrderT(that) {} in order() 66 …enqueued_record(enqueued_record const& that) BOOST_NOEXCEPT : m_timestamp(that.m_timestamp), m_rec… in enqueued_record() argument 69 enqueued_record(BOOST_RV_REF(enqueued_record) that) BOOST_NOEXCEPT : in enqueued_record() argument 70 m_timestamp(that.m_timestamp), in enqueued_record() 71 m_record(boost::move(that.m_record)) in enqueued_record() 79 enqueued_record& operator= (BOOST_COPY_ASSIGN_REF(enqueued_record) that) BOOST_NOEXCEPT in operator =() argument 81 m_timestamp = that.m_timestamp; in operator =() 82 m_record = that.m_record; in operator =() 85 enqueued_record& operator= (BOOST_RV_REF(enqueued_record) that) BOOST_NOEXCEPT in operator =() argument [all …]
|
D | id.hpp | 50 bool operator== (id const& that) const BOOST_NOEXCEPT in operator ==() 52 return (m_NativeID == that.m_NativeID); in operator ==() 54 bool operator!= (id const& that) const BOOST_NOEXCEPT in operator !=() 56 return (m_NativeID != that.m_NativeID); in operator !=() 58 bool operator< (id const& that) const BOOST_NOEXCEPT in operator <() 60 return (m_NativeID < that.m_NativeID); in operator <() 62 bool operator> (id const& that) const BOOST_NOEXCEPT in operator >() 64 return (m_NativeID > that.m_NativeID); in operator >() 66 bool operator<= (id const& that) const BOOST_NOEXCEPT in operator <=() 68 return (m_NativeID <= that.m_NativeID); in operator <=() [all …]
|
/third_party/curl/tests/data/ |
D | test1086 | 25 Long chunk of data that couldn't possibly be sent in the time allotted. 26 Long chunk of data that couldn't possibly be sent in the time allotted. 27 Long chunk of data that couldn't possibly be sent in the time allotted. 28 Long chunk of data that couldn't possibly be sent in the time allotted. 29 Long chunk of data that couldn't possibly be sent in the time allotted. 30 Long chunk of data that couldn't possibly be sent in the time allotted. 31 Long chunk of data that couldn't possibly be sent in the time allotted. 32 Long chunk of data that couldn't possibly be sent in the time allotted. 33 Long chunk of data that couldn't possibly be sent in the time allotted. 34 Long chunk of data that couldn't possibly be sent in the time allotted. [all …]
|
D | test1112 | 24 Long chunk of data that couldn't possibly be sent in the time allotted. 25 Long chunk of data that couldn't possibly be sent in the time allotted. 26 Long chunk of data that couldn't possibly be sent in the time allotted. 27 Long chunk of data that couldn't possibly be sent in the time allotted. 28 Long chunk of data that couldn't possibly be sent in the time allotted. 29 Long chunk of data that couldn't possibly be sent in the time allotted. 30 Long chunk of data that couldn't possibly be sent in the time allotted. 31 Long chunk of data that couldn't possibly be sent in the time allotted. 32 Long chunk of data that couldn't possibly be sent in the time allotted. 33 Long chunk of data that couldn't possibly be sent in the time allotted. [all …]
|
/third_party/skia/include/core/ |
D | SkFontMetrics.h | 18 bool operator==(const SkFontMetrics& that) { 20 this->fFlags == that.fFlags && 21 this->fTop == that.fTop && 22 this->fAscent == that.fAscent && 23 this->fDescent == that.fDescent && 24 this->fBottom == that.fBottom && 25 this->fLeading == that.fLeading && 26 this->fAvgCharWidth == that.fAvgCharWidth && 27 this->fMaxCharWidth == that.fMaxCharWidth && 28 this->fXMin == that.fXMin && [all …]
|
/third_party/flutter/skia/include/gpu/vk/ |
D | GrVkTypes.h | 56 bool operator==(const GrVkAlloc& that) const { 57 return fMemory == that.fMemory && fOffset == that.fOffset && fSize == that.fSize && 58 fFlags == that.fFlags && fUsesSystemHeap == that.fUsesSystemHeap; 114 bool operator==(const GrVkYcbcrConversionInfo& that) const { 116 if (!this->isValid() && !that.isValid()) { 119 return this->fFormat == that.fFormat && 120 this->fExternalFormat == that.fExternalFormat && 121 this->fYcbcrModel == that.fYcbcrModel && 122 this->fYcbcrRange == that.fYcbcrRange && 123 this->fXChromaOffset == that.fXChromaOffset && [all …]
|
/third_party/abseil-cpp/absl/container/internal/ |
D | tracked.h | 36 Tracked(const Tracked& that) in Tracked() argument 37 : val_(that.val_), in Tracked() 38 num_moves_(that.num_moves_), in Tracked() 39 num_copies_(that.num_copies_) { in Tracked() 42 Tracked(Tracked&& that) in Tracked() argument 43 : val_(std::move(that.val_)), in Tracked() 44 num_moves_(std::move(that.num_moves_)), in Tracked() 45 num_copies_(std::move(that.num_copies_)) { in Tracked() 48 Tracked& operator=(const Tracked& that) { 49 val_ = that.val_; [all …]
|
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/ |
D | tracked.h | 36 Tracked(const Tracked& that) in Tracked() argument 37 : val_(that.val_), in Tracked() 38 num_moves_(that.num_moves_), in Tracked() 39 num_copies_(that.num_copies_) { in Tracked() 42 Tracked(Tracked&& that) in Tracked() argument 43 : val_(std::move(that.val_)), in Tracked() 44 num_moves_(std::move(that.num_moves_)), in Tracked() 45 num_copies_(std::move(that.num_copies_)) { in Tracked() 48 Tracked& operator=(const Tracked& that) { 49 val_ = that.val_; [all …]
|
/third_party/flutter/skia/third_party/externals/spirv-tools/source/opt/ |
D | types.cpp | 76 bool Type::HasSameDecorations(const Type* that) const { in HasSameDecorations() 77 return CompareTwoVectors(decorations_, that->decorations_); in HasSameDecorations() 80 bool Integer::IsSame(Type* that) const { in IsSame() 81 const Integer* it = that->AsInteger(); in IsSame() 83 HasSameDecorations(that); in IsSame() 92 bool Float::IsSame(Type* that) const { in IsSame() 93 const Float* ft = that->AsFloat(); in IsSame() 94 return ft && width_ == ft->width_ && HasSameDecorations(that); in IsSame() 108 bool Vector::IsSame(Type* that) const { in IsSame() 109 const Vector* vt = that->AsVector(); in IsSame() [all …]
|
/third_party/flutter/skia/src/core/ |
D | SkTLazy.h | 24 SkTLazy(const SkTLazy& that) : fPtr(that.fPtr ? new (&fStorage) T(*that.fPtr) : nullptr) {} in SkTLazy() argument 25 SkTLazy(SkTLazy&& that) : fPtr(that.fPtr ? new (&fStorage) T(std::move(*that.fPtr)) : nullptr){} in SkTLazy() argument 29 SkTLazy& operator=(const SkTLazy& that) { 30 if (that.isValid()) { 31 this->set(*that); 38 SkTLazy& operator=(SkTLazy&& that) { 39 if (that.isValid()) { 40 this->set(std::move(*that)); 151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite() argument 152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() argument [all …]
|
/third_party/skia/src/core/ |
D | SkTLazy.h | 24 SkTLazy(const SkTLazy& that) : fPtr(that.fPtr ? new (&fStorage) T(*that.fPtr) : nullptr) {} in SkTLazy() argument 25 SkTLazy(SkTLazy&& that) : fPtr(that.fPtr ? new (&fStorage) T(std::move(*that.fPtr)) : nullptr){} in SkTLazy() argument 29 SkTLazy& operator=(const SkTLazy& that) { 30 if (that.isValid()) { 31 this->set(*that); 38 SkTLazy& operator=(SkTLazy&& that) { 39 if (that.isValid()) { 40 this->set(std::move(*that)); 151 SkTCopyOnFirstWrite(const SkTCopyOnFirstWrite& that) { *this = that; } in SkTCopyOnFirstWrite() argument 152 SkTCopyOnFirstWrite( SkTCopyOnFirstWrite&& that) { *this = std::move(that); } in SkTCopyOnFirstWrite() argument [all …]
|
/third_party/boost/boost/xpressive/detail/utility/ |
D | tracking_ptr.hpp | 87 bool equal(weak_iterator<Derived> const &that) const in equal() 89 return this->iter_ == that.iter_; in equal() 124 bool operator ()(shared_ptr<Derived> const &that) const in operator ()() 126 return this->self_ != that.get(); in operator ()() 152 void tracking_copy(Derived const &that) in tracking_copy() 154 if(&this->derived_() != &that) in tracking_copy() 156 this->raw_copy_(that); in tracking_copy() 176 void track_reference(enable_reference_tracking<Derived> &that) in track_reference() 180 that.purge_stale_deps_(); in track_reference() 182 this->refs_.insert(that.self_); in track_reference() [all …]
|
/third_party/boost/libs/log/src/ |
D | named_scope.cpp | 206 BOOST_LOG_API named_scope_list::named_scope_list(named_scope_list const& that) : in named_scope_list() argument 207 allocator_type(static_cast< allocator_type const& >(that)), in named_scope_list() 208 m_Size(that.size()), in named_scope_list() 209 m_fNeedToDeallocate(!that.empty()) in named_scope_list() 214 …::allocator_traits< allocator_type >::allocate(*static_cast< allocator_type* >(this), that.size()); in named_scope_list() 216 for (const_iterator src = that.begin(), end = that.end(); src != end; ++src, ++p) in named_scope_list() 242 BOOST_LOG_API void named_scope_list::swap(named_scope_list& that) in swap() argument 246 if (!that.empty()) in swap() 249 std::swap(m_RootNode._m_pNext->_m_pPrev, that.m_RootNode._m_pNext->_m_pPrev); in swap() 250 std::swap(m_RootNode._m_pPrev->_m_pNext, that.m_RootNode._m_pPrev->_m_pNext); in swap() [all …]
|
/third_party/skia/include/private/ |
D | SkTArray.h | 56 SkTArray(const SkTArray& that) in SkTArray() argument 57 : SkTArray(that.fItemArray, that.fCount) {} in SkTArray() 59 SkTArray(SkTArray&& that) { in SkTArray() argument 60 if (that.fOwnMemory) { in SkTArray() 61 fItemArray = that.fItemArray; in SkTArray() 62 fCount = that.fCount; in SkTArray() 63 fAllocCount = that.fAllocCount; in SkTArray() 65 fReserved = that.fReserved; in SkTArray() 67 that.fItemArray = nullptr; in SkTArray() 68 that.fCount = 0; in SkTArray() [all …]
|
/third_party/boost/boost/proto/transform/detail/preprocessed/ |
D | construct_pod_funop.hpp | 12 Type that = {a0}; in operator ()() local 13 return that; in operator ()() 19 Type that = {a0 , a1}; in operator ()() local 20 return that; in operator ()() 26 Type that = {a0 , a1 , a2}; in operator ()() local 27 return that; in operator ()() 33 Type that = {a0 , a1 , a2 , a3}; in operator ()() local 34 return that; in operator ()() 40 Type that = {a0 , a1 , a2 , a3 , a4}; in operator ()() local 41 return that; in operator ()() [all …]
|