/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binomial_heap_base_/ |
constructors_destructor_fn_imps.hpp | 67 binomial_heap_base(const PB_DS_CLASS_C_DEC& other) 68 : base_type(other), m_p_max(0) 74 swap(PB_DS_CLASS_C_DEC& other) 77 base_type::swap(other); 78 std::swap(m_p_max, other.m_p_max);
|
/external/icu/icu4c/source/i18n/ |
measure.cpp | 37 Measure::Measure(const Measure& other) : 38 UObject(other), unit(0) { 39 *this = other; 42 Measure& Measure::operator=(const Measure& other) { 43 if (this != &other) { 45 number = other.number; 46 unit = (MeasureUnit*) other.unit->clone(); 59 UBool Measure::operator==(const UObject& other) const { 60 if (this == &other) { // Same object, equal 63 if (typeid(*this) != typeid(other)) { // Different types, not equa [all...] |
tmunit.cpp | 102 TimeUnit::TimeUnit(const TimeUnit& other) 103 : MeasureUnit(other), fTimeUnitField(other.fTimeUnitField) { 112 TimeUnit::operator=(const TimeUnit& other) { 113 if (this == &other) { 116 MeasureUnit::operator=(other); 117 fTimeUnitField = other.fTimeUnitField;
|
/external/libmojo/mojo/public/cpp/bindings/lib/ |
scoped_interface_endpoint_handle.cc | 16 ScopedInterfaceEndpointHandle&& other) 17 : id_(other.id_), is_local_(other.is_local_) { 18 group_controller_.swap(other.group_controller_); 19 other.id_ = kInvalidInterfaceId; 27 ScopedInterfaceEndpointHandle&& other) { 29 swap(other); 45 void ScopedInterfaceEndpointHandle::swap(ScopedInterfaceEndpointHandle& other) { 47 swap(other.id_, id_); 48 swap(other.is_local_, is_local_) [all...] |
filter_chain.cc | 17 FilterChain::FilterChain(FilterChain&& other) : sink_(other.sink_) { 18 other.sink_ = nullptr; 19 filters_.swap(other.filters_); 22 FilterChain& FilterChain::operator=(FilterChain&& other) { 23 std::swap(sink_, other.sink_); 24 filters_.swap(other.filters_);
|
/external/proguard/src/proguard/classfile/attribute/ |
LocalVariableInfo.java | 125 LocalVariableInfo other = (LocalVariableInfo)object; local 128 this.u2startPC < other.u2startPC ? -1 : this.u2startPC > other.u2startPC ? 1 : 129 this.u2index < other.u2index ? -1 : this.u2index > other.u2index ? 1 : 130 this.u2length < other.u2length ? -1 : this.u2length > other.u2length ? 1 : 131 this.u2descriptorIndex < other.u2descriptorIndex ? -1 : this.u2descriptorIndex > other.u2descriptorIndex ? 1 : 132 this.u2nameIndex < other.u2nameIndex ? -1 : this.u2nameIndex > other.u2nameIndex ? 1 [all...] |
LocalVariableTypeInfo.java | 133 LocalVariableTypeInfo other = (LocalVariableTypeInfo)object; local 136 this.u2startPC < other.u2startPC ? -1 : this.u2startPC > other.u2startPC ? 1 : 137 this.u2length < other.u2length ? -1 : this.u2length > other.u2length ? 1 : 138 this.u2index < other.u2index ? -1 : this.u2index > other.u2index ? 1 : 139 this.u2signatureIndex < other.u2signatureIndex ? -1 : this.u2signatureIndex > other.u2signatureIndex ? 1 : 140 this.u2nameIndex < other.u2nameIndex ? -1 : this.u2nameIndex > other.u2nameIndex ? 1 [all...] |
/external/v8/src/base/platform/ |
time.h | 85 TimeDelta& operator=(const TimeDelta& other) { 86 delta_ = other.delta_; 90 // Computations with other deltas. 91 TimeDelta operator+(const TimeDelta& other) const { 92 return TimeDelta(delta_ + other.delta_); 94 TimeDelta operator-(const TimeDelta& other) const { 95 return TimeDelta(delta_ - other.delta_); 98 TimeDelta& operator+=(const TimeDelta& other) { 99 delta_ += other.delta_; 102 TimeDelta& operator-=(const TimeDelta& other) { [all...] |
/libcore/ojluni/src/main/java/java/nio/file/ |
Path.java | 42 * The other name elements are directory names. A {@code Path} can represent a 56 * Paths can be {@link #compareTo compared}, and tested against each other using 69 * directories, and other types of files. For example, suppose we want a {@link 81 * with the {@link java.io.File java.io.File} class. Paths created by other 112 * with other path information in order to locate a file. 234 * @param other 240 boolean startsWith(Path other); 249 * @param other 258 boolean startsWith(String other); 279 * @param other [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binary_heap_/ |
point_const_iterator.hpp | 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer; 71 typedef typename _Alloc::template rebind<value_type>::other::pointer 76 typename _Alloc::template rebind<value_type>::other::const_pointer 81 typename _Alloc::template rebind<value_type>::other::reference 86 typename _Alloc::template rebind<value_type>::other::const_reference 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other) 100 : m_p_e(other.m_p_e) 121 operator==(const binary_heap_point_const_iterator_& other) const 122 { return m_p_e == other.m_p_e; } 126 operator!=(const binary_heap_point_const_iterator_& other) cons [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
point_const_iterator.hpp | 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer; 79 value_type>::other::pointer 85 value_type>::other::const_pointer 91 value_type>::other::reference 97 value_type>::other::const_reference 111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd) 132 operator==(const PB_DS_CLASS_C_DEC& other) const 133 { return m_p_nd == other.m_p_nd; } 137 operator!=(const PB_DS_CLASS_C_DEC& other) cons [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/binary_heap_/ |
point_const_iterator.hpp | 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer; 71 typedef typename _Alloc::template rebind<value_type>::other::pointer 76 typename _Alloc::template rebind<value_type>::other::const_pointer 81 typename _Alloc::template rebind<value_type>::other::reference 86 typename _Alloc::template rebind<value_type>::other::const_reference 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other) 100 : m_p_e(other.m_p_e) 121 operator==(const binary_heap_point_const_iterator_& other) const 122 { return m_p_e == other.m_p_e; } 126 operator!=(const binary_heap_point_const_iterator_& other) cons [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
point_const_iterator.hpp | 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer; 79 value_type>::other::pointer 85 value_type>::other::const_pointer 91 value_type>::other::reference 97 value_type>::other::const_reference 111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd) 132 operator==(const PB_DS_CLASS_C_DEC& other) const 133 { return m_p_nd == other.m_p_nd; } 137 operator!=(const PB_DS_CLASS_C_DEC& other) cons [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/binary_heap_/ |
point_const_iterator.hpp | 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer; 71 typedef typename _Alloc::template rebind<value_type>::other::pointer 76 typename _Alloc::template rebind<value_type>::other::const_pointer 81 typename _Alloc::template rebind<value_type>::other::reference 86 typename _Alloc::template rebind<value_type>::other::const_reference 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other) 100 : m_p_e(other.m_p_e) 121 operator==(const binary_heap_point_const_iterator_& other) const 122 { return m_p_e == other.m_p_e; } 126 operator!=(const binary_heap_point_const_iterator_& other) cons [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
point_const_iterator.hpp | 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer; 79 value_type>::other::pointer 85 value_type>::other::const_pointer 91 value_type>::other::reference 97 value_type>::other::const_reference 111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd) 132 operator==(const PB_DS_CLASS_C_DEC& other) const 133 { return m_p_nd == other.m_p_nd; } 137 operator!=(const PB_DS_CLASS_C_DEC& other) cons [all...] |
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binary_heap_/ |
point_const_iterator.hpp | 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer; 71 typedef typename _Alloc::template rebind<value_type>::other::pointer 76 typename _Alloc::template rebind<value_type>::other::const_pointer 81 typename _Alloc::template rebind<value_type>::other::reference 86 typename _Alloc::template rebind<value_type>::other::const_reference 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other) 100 : m_p_e(other.m_p_e) 121 operator==(const binary_heap_point_const_iterator_& other) const 122 { return m_p_e == other.m_p_e; } 126 operator!=(const binary_heap_point_const_iterator_& other) cons [all...] |
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
point_const_iterator.hpp | 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer; 79 value_type>::other::pointer 85 value_type>::other::const_pointer 91 value_type>::other::reference 97 value_type>::other::const_reference 111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd) 132 operator==(const PB_DS_CLASS_C_DEC& other) const 133 { return m_p_nd == other.m_p_nd; } 137 operator!=(const PB_DS_CLASS_C_DEC& other) cons [all...] |
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binary_heap_/ |
point_const_iterator.hpp | 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer; 71 typedef typename _Alloc::template rebind<value_type>::other::pointer 76 typename _Alloc::template rebind<value_type>::other::const_pointer 81 typename _Alloc::template rebind<value_type>::other::reference 86 typename _Alloc::template rebind<value_type>::other::const_reference 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other) 100 : m_p_e(other.m_p_e) 121 operator==(const binary_heap_point_const_iterator_& other) const 122 { return m_p_e == other.m_p_e; } 126 operator!=(const binary_heap_point_const_iterator_& other) cons [all...] |
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
point_const_iterator.hpp | 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer; 79 value_type>::other::pointer 85 value_type>::other::const_pointer 91 value_type>::other::reference 97 value_type>::other::const_reference 111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd) 132 operator==(const PB_DS_CLASS_C_DEC& other) const 133 { return m_p_nd == other.m_p_nd; } 137 operator!=(const PB_DS_CLASS_C_DEC& other) cons [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/binary_heap_/ |
point_const_iterator.hpp | 58 typedef typename _Alloc::template rebind<Entry>::other::pointer entry_pointer; 71 typedef typename _Alloc::template rebind<value_type>::other::pointer 76 typename _Alloc::template rebind<value_type>::other::const_pointer 81 typename _Alloc::template rebind<value_type>::other::reference 86 typename _Alloc::template rebind<value_type>::other::const_reference 99 binary_heap_point_const_iterator_(const binary_heap_point_const_iterator_& other) 100 : m_p_e(other.m_p_e) 121 operator==(const binary_heap_point_const_iterator_& other) const 122 { return m_p_e == other.m_p_e; } 126 operator!=(const binary_heap_point_const_iterator_& other) cons [all...] |
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/left_child_next_sibling_heap_/ |
point_const_iterator.hpp | 64 typedef typename _Alloc::template rebind<Node>::other::pointer node_pointer; 79 value_type>::other::pointer 85 value_type>::other::const_pointer 91 value_type>::other::reference 97 value_type>::other::const_reference 111 left_child_next_sibling_heap_node_point_const_iterator_(const PB_DS_CLASS_C_DEC& other) : m_p_nd(other.m_p_nd) 132 operator==(const PB_DS_CLASS_C_DEC& other) const 133 { return m_p_nd == other.m_p_nd; } 137 operator!=(const PB_DS_CLASS_C_DEC& other) cons [all...] |
/system/chre/util/include/chre/util/ |
optional_impl.h | 47 Optional<ObjectType>& Optional<ObjectType>::operator=(ObjectType&& other) { 48 mObject = std::move(other); 55 Optional<ObjectType>&& other) { 56 mObject = std::move(other.mObject); 57 mHasValue = other.mHasValue; 58 other.mHasValue = false; 63 Optional<ObjectType>& Optional<ObjectType>::operator=(const ObjectType& other) { 64 mObject = other; 71 const Optional<ObjectType>& other) { 72 mObject = other.mObject [all...] |
/cts/tools/dasm/src/java_cup/ |
symbol_part.java | 61 public boolean equals(symbol_part other) 63 return other != null && super.equals(other) && 64 the_symbol().equals(other.the_symbol()); 70 public boolean equals(Object other) 72 if (!(other instanceof symbol_part)) 75 return equals((symbol_part)other);
|
/external/libchrome/base/profiler/ |
tracked_time.h | 30 Duration& operator+=(const Duration& other); 31 Duration operator+(const Duration& other) const; 33 bool operator==(const Duration& other) const; 34 bool operator!=(const Duration& other) const; 35 bool operator>(const Duration& other) const; 55 Duration operator-(const TrackedTime& other) const; 56 TrackedTime operator+(const Duration& other) const;
|
/external/proguard/src/proguard/evaluation/value/ |
IdentifiedArrayReferenceValue.java | 55 public ReferenceValue generalize(ReferenceValue other) 57 return other.generalize(this); 61 public int equal(ReferenceValue other) 63 return other.equal(this); 70 // public ReferenceValue generalize(IdentifiedReferenceValue other) 72 // return generalize((TypedReferenceValue)other); 76 // public int equal(IdentifiedReferenceValue other) 78 // return equal((TypedReferenceValue)other); 85 // public ReferenceValue generalize(ArrayReferenceValue other) 87 // return generalize((TypedReferenceValue)other); [all...] |