/external/parameter-framework/asio-1.10.6/include/asio/impl/ |
write.hpp | 102 write_op(const write_op& other) 103 : detail::base_from_completion_cond<CompletionCondition>(other), 104 stream_(other.stream_), 105 buffers_(other.buffers_), 106 start_(other.start_), 107 total_transferred_(other.total_transferred_), 108 handler_(other.handler_) 112 write_op(write_op&& other) 113 : detail::base_from_completion_cond<CompletionCondition>(other), 114 stream_(other.stream_) [all...] |
/art/test/utils/python/testgen/ |
mixins.py | 94 def __lt__(self, other): 95 return self.get_name() < other.get_name() 97 def __gt__(self, other): 98 return self.get_name() > other.get_name() 100 def __eq__(self, other): 101 return self.get_name() == other.get_name() 103 def __le__(self, other): 104 return self.get_name() <= other.get_name() 106 def __ge__(self, other): 107 return self.get_name() >= other.get_name( [all...] |
/dalvik/dexgen/src/com/android/dexgen/rop/cst/ |
CstKnownNull.java | 38 public boolean equals(Object other) { 39 return (other instanceof CstKnownNull); 50 protected int compareTo0(Constant other) {
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
CstKnownNull.java | 38 public boolean equals(Object other) { 39 return (other instanceof CstKnownNull); 50 protected int compareTo0(Constant other) {
|
/external/autotest/frontend/client/src/autotest/afe/models/ |
Host.java | 16 public boolean equals(Object other) { 17 if (!(other instanceof Host)) { 21 Host otherHost = (Host) other;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/ |
DHValidationParameters.java | 36 DHValidationParameters other = (DHValidationParameters)o; local 38 if (other.counter != this.counter) 43 return Arrays.areEqual(this.seed, other.seed);
|
DSAValidationParameters.java | 56 DSAValidationParameters other = (DSAValidationParameters)o; local 58 if (other.counter != this.counter) 63 return Arrays.areEqual(this.seed, other.seed);
|
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/ |
CstKnownNull.java | 38 public boolean equals(Object other) { 39 return (other instanceof CstKnownNull); 50 protected int compareTo0(Constant other) {
|
/external/google-tv-pairing-protocol/cpp/src/polo/encoding/ |
encodingoption.cc | 36 bool EncodingOption::Equals(const EncodingOption& other) const { 37 return encoding_type_ == other.encoding_type_ 38 && symbol_length_ == other.symbol_length_;
|
/external/harfbuzz_ng/src/ |
hb-set.cc | 277 * @other: 287 const hb_set_t *other) 289 return set->is_equal (other); 295 * @other: 303 const hb_set_t *other) 305 set->set (other); 311 * @other: 319 const hb_set_t *other) 321 set->union_ (other); 327 * @other: [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
InitialTimeZoneRule.java | 39 public boolean isEquivalentTo(TimeZoneRule other) { 40 if (other instanceof InitialTimeZoneRule) { 41 return super.isEquivalentTo(other);
|
/external/icu/icu4c/source/i18n/unicode/ |
measure.h | 60 Measure(const Measure& other); 66 Measure& operator=(const Measure& other); 86 UBool operator==(const UObject& other) const; 123 * other classes have different class IDs.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
InitialTimeZoneRule.java | 42 public boolean isEquivalentTo(TimeZoneRule other) { 43 if (other instanceof InitialTimeZoneRule) { 44 return super.isEquivalentTo(other);
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/data/ |
SessionInfo.java | 69 public int compareTo(final SessionInfo other) { 70 if (this.dump < other.dump) { 73 if (this.dump > other.dump) {
|
/external/libchrome/base/ |
callback_internal.cc | 31 bool CallbackBase::Equals(const CallbackBase& other) const { 32 return bind_state_.get() == other.bind_state_.get() && 33 polymorphic_invoke_ == other.polymorphic_invoke_;
|
/external/libchrome/dbus/ |
file_descriptor.h | 51 FileDescriptor(FileDescriptor&& other); 55 FileDescriptor& operator=(FileDescriptor&& other); 79 void Swap(FileDescriptor* other);
|
/external/libgdx/gdx/src/com/badlogic/gdx/math/ |
GridPoint2.java | 75 * @param other The other point 76 * @return the squared distance between this point and the other point. 78 public float dst2 (GridPoint2 other) { 79 int xd = other.x - x; 80 int yd = other.y - y; 86 * @param x The x-coordinate of the other point 87 * @param y The y-coordinate of the other point 88 * @return the squared distance between this point and the other point. 98 * @param other The other poin [all...] |
/external/libweave/third_party/chromium/base/ |
callback_internal.cc | 31 bool CallbackBase::Equals(const CallbackBase& other) const { 32 return bind_state_.get() == other.bind_state_.get() && 33 polymorphic_invoke_ == other.polymorphic_invoke_;
|
/external/skia/src/core/ |
SkBitmapProvider.h | 19 SkBitmapProvider(const SkBitmapProvider& other) 20 : fBitmap(other.fBitmap) 21 , fImage(SkSafeRef(other.fImage.get()))
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue29/ |
BigJavaBean.java | 97 BigJavaBean other = (BigJavaBean) obj; 99 if (other.address != null) 101 } else if (!address.equals(other.address)) 104 if (other.data != null) 106 } else if (!data.equals(other.data)) 109 if (other.description != null) 111 } else if (!description.equals(other.description)) 113 if (id != other.id) 116 if (other.name != null) 118 } else if (!name.equals(other.name) [all...] |
/libcore/ojluni/src/main/java/java/text/ |
ParsePosition.java | 118 ParsePosition other = (ParsePosition) obj; 119 return (index == other.index && errorIndex == other.errorIndex);
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
FileKey.java | 61 FileKey other = (FileKey)obj; 62 if ((this.st_dev != other.st_dev) || 63 (this.st_ino != other.st_ino)) {
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
CertificatePolicyId.java | 94 public boolean equals(Object other) { 95 if (other instanceof CertificatePolicyId) 96 return id.equals(((CertificatePolicyId) other).getIdentifier());
|
/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_/ |
entry_pred.hpp | 67 typedef typename __rebind_v::other::const_pointer entry; 75 type(const Pred& other) : Pred(other) { }
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/resize_policy/ |
hash_load_check_resize_trigger_size_base.hpp | 63 swap(hash_load_check_resize_trigger_size_base& other) 64 { std::swap(m_size, other.m_size); } 86 swap(hash_load_check_resize_trigger_size_base& other) { }
|