HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 601 - 625 of 8492) sorted by null

<<21222324252627282930>>

  /libcore/support/src/test/java/tests/support/
Support_GetPutFieldsDefaulted.java 82 SimpleClass other = (SimpleClass) obj; local
83 return (a == other.getA() && b.equals(other.getB()));
104 Support_GetPutFieldsDefaulted other = (Support_GetPutFieldsDefaulted) obj; local
105 return (booleanValue == other.booleanValue &&
106 byteValue == other.byteValue &&
107 charValue == other.charValue &&
108 doubleValue == other.doubleValue &&
109 floatValue == other.floatValue &&
110 longValue == other.longValue &
    [all...]
Support_GetPutFieldsDeprecated.java 73 SimpleClass other = (SimpleClass) obj; local
74 return (a == other.getA() && b.equals(other.getB()));
95 Support_GetPutFields other = (Support_GetPutFields) obj; local
96 return (booleanValue == other.booleanValue &&
97 byteValue == other.byteValue &&
98 charValue == other.charValue &&
99 doubleValue == other.doubleValue &&
100 floatValue == other.floatValue &&
101 longValue == other.longValue &
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/calllog/
ContactInfo.java 82 ContactInfo other = (ContactInfo) obj;
83 if (!UriUtils.areEqual(lookupUri, other.lookupUri)) return false;
84 if (!TextUtils.equals(name, other.name)) return false;
85 if (!TextUtils.equals(nameAlternative, other.nameAlternative)) return false;
86 if (type != other.type) return false;
87 if (!TextUtils.equals(label, other.label)) return false;
88 if (!TextUtils.equals(number, other.number)) return false;
89 if (!TextUtils.equals(formattedNumber, other.formattedNumber)) return false;
90 if (!TextUtils.equals(normalizedNumber, other.normalizedNumber)) return false;
91 if (photoId != other.photoId) return false
    [all...]
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
Phonenumber.java 194 public PhoneNumber mergeFrom(PhoneNumber other) {
195 if (other.hasCountryCode()) {
196 setCountryCode(other.getCountryCode());
198 if (other.hasNationalNumber()) {
199 setNationalNumber(other.getNationalNumber());
201 if (other.hasExtension()) {
202 setExtension(other.getExtension());
204 if (other.hasItalianLeadingZero()) {
205 setItalianLeadingZero(other.isItalianLeadingZero());
207 if (other.hasNumberOfLeadingZeros())
    [all...]
  /external/blktrace/
rbtree.c 139 struct rb_node *other; local
145 other = parent->rb_right;
146 if (rb_is_red(other))
148 rb_set_black(other);
151 other = parent->rb_right;
153 if ((!other->rb_left || rb_is_black(other->rb_left)) &&
154 (!other->rb_right || rb_is_black(other->rb_right)))
156 rb_set_red(other);
    [all...]
  /external/icu/icu4c/source/i18n/
affixpatternparser.h 56 equals(const CurrencyAffixInfo &other) const {
57 return (fSymbol == other.fSymbol)
58 && (fISO == other.fISO)
59 && (fLong.equals(other.fLong))
60 && (fIsDefault == other.fIsDefault);
207 * Appends other to this instance mutating this instance in place.
208 * @param other The pattern appended to the end of this one.
211 AffixPattern &append(const AffixPattern &other);
244 * any other character. If an apostrophe prefixes a non special
272 UBool equals(const AffixPattern &other) const
    [all...]
scriptset.h 37 ScriptSet(const ScriptSet &other);
40 UBool operator == (const ScriptSet &other) const;
41 ScriptSet & operator = (const ScriptSet &other);
44 ScriptSet &Union(const ScriptSet &other);
47 ScriptSet &intersect(const ScriptSet &other);
49 UBool intersects(const ScriptSet &other) const; // Sets contain at least one script in commmon.
50 UBool contains(const ScriptSet &other) const; // All set bits in other are also set in this.
  /external/replicaisland/src/com/replica/replicaisland/
SphereCollisionVolume.java 85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other,
89 if (other instanceof AABoxCollisionVolume) {
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
97 if (other instanceof SphereCollisionVolume) {
98 SphereCollisionVolume sphereOther = (SphereCollisionVolume)other;
105 final float deltaX = other.getMaxXPosition(otherFlip)
106 - other.getMinXPosition(otherFlip);
107 final float deltaY = other.getMaxYPosition(otherFlip)
108 - other.getMinYPosition(otherFlip);
129 public void growBy(CollisionVolume other) {
    [all...]
  /external/webrtc/webrtc/
common_types.h 200 void Add(const RtcpPacketTypeCounter& other) {
201 nack_packets += other.nack_packets;
202 fir_packets += other.fir_packets;
203 pli_packets += other.pli_packets;
204 nack_requests += other.nack_requests;
205 unique_nack_requests += other.unique_nack_requests;
206 if (other.first_packet_time_ms != -1 &&
207 (other.first_packet_time_ms < first_packet_time_ms ||
210 first_packet_time_ms = other.first_packet_time_ms;
297 bool operator==(const CodecInst& other) const
    [all...]
  /frameworks/base/core/java/android/view/
DisplayInfo.java 259 public DisplayInfo(DisplayInfo other) {
260 copyFrom(other);
272 public boolean equals(DisplayInfo other) {
273 return other != null
274 && layerStack == other.layerStack
275 && flags == other.flags
276 && type == other.type
277 && Objects.equal(address, other.address)
278 && Objects.equal(uniqueId, other.uniqueId)
279 && appWidth == other.appWidt
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
constructors_destructor_fn_imps.hpp 76 PB_DS_BIN_TREE_NAME(const PB_DS_CLASS_C_DEC& other) :
78 debug_base(other),
81 PB_DS_TREE_TRACE_BASE_C_DEC(other),
83 Cmp_Fn(other),
84 node_update(other),
89 m_size = other.m_size;
90 PB_DS_STRUCT_ONLY_ASSERT_VALID(other)
94 m_p_head->m_p_parent = recursive_copy_node(other.m_p_head->m_p_parent);
97 m_size = other.m_size;
112 swap(PB_DS_CLASS_C_DEC& other)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/bin_search_tree_/
constructors_destructor_fn_imps.hpp 76 PB_DS_BIN_TREE_NAME(const PB_DS_CLASS_C_DEC& other) :
78 debug_base(other),
81 PB_DS_TREE_TRACE_BASE_C_DEC(other),
83 Cmp_Fn(other),
84 node_update(other),
89 m_size = other.m_size;
90 PB_DS_STRUCT_ONLY_ASSERT_VALID(other)
94 m_p_head->m_p_parent = recursive_copy_node(other.m_p_head->m_p_parent);
97 m_size = other.m_size;
112 swap(PB_DS_CLASS_C_DEC& other)
    [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/bin_search_tree_/
constructors_destructor_fn_imps.hpp 76 PB_DS_BIN_TREE_NAME(const PB_DS_CLASS_C_DEC& other) :
78 debug_base(other),
81 PB_DS_TREE_TRACE_BASE_C_DEC(other),
83 Cmp_Fn(other),
84 node_update(other),
89 m_size = other.m_size;
90 PB_DS_STRUCT_ONLY_ASSERT_VALID(other)
94 m_p_head->m_p_parent = recursive_copy_node(other.m_p_head->m_p_parent);
97 m_size = other.m_size;
112 swap(PB_DS_CLASS_C_DEC& other)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_coercion.py 14 def __coerce__(self, other):
15 if isinstance(other, CoerceNumber):
16 return self.arg, other.arg
18 return (self.arg, other)
24 def __coerce__(self, other):
25 if isinstance(other, CoerceTo):
26 return self.arg, other.arg
28 return self.arg, other
39 def __add__(self,other):
40 return self.arg + other
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_coercion.py 14 def __coerce__(self, other):
15 if isinstance(other, CoerceNumber):
16 return self.arg, other.arg
18 return (self.arg, other)
24 def __coerce__(self, other):
25 if isinstance(other, CoerceTo):
26 return self.arg, other.arg
28 return self.arg, other
39 def __add__(self,other):
40 return self.arg + other
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/bin_search_tree_/
constructors_destructor_fn_imps.hpp 76 PB_DS_BIN_TREE_NAME(const PB_DS_CLASS_C_DEC& other) :
78 debug_base(other),
81 PB_DS_TREE_TRACE_BASE_C_DEC(other),
83 Cmp_Fn(other),
84 node_update(other),
89 m_size = other.m_size;
90 PB_DS_STRUCT_ONLY_ASSERT_VALID(other)
94 m_p_head->m_p_parent = recursive_copy_node(other.m_p_head->m_p_parent);
97 m_size = other.m_size;
112 swap(PB_DS_CLASS_C_DEC& other)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_coercion.py 14 def __coerce__(self, other):
15 if isinstance(other, CoerceNumber):
16 return self.arg, other.arg
18 return (self.arg, other)
24 def __coerce__(self, other):
25 if isinstance(other, CoerceTo):
26 return self.arg, other.arg
28 return self.arg, other
39 def __add__(self,other):
40 return self.arg + other
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_coercion.py 14 def __coerce__(self, other):
15 if isinstance(other, CoerceNumber):
16 return self.arg, other.arg
18 return (self.arg, other)
24 def __coerce__(self, other):
25 if isinstance(other, CoerceTo):
26 return self.arg, other.arg
28 return self.arg, other
39 def __add__(self,other):
40 return self.arg + other
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/sh/sh64/
movi64-3.d 28 [ ]+20:[ ]+R_SH_IMM_HI16 \.text\.other\+0x35
30 [ ]+24:[ ]+R_SH_IMM_MEDHI16 \.text\.other\+0x35
32 [ ]+28:[ ]+R_SH_IMM_MEDLOW16 \.text\.other\+0x35
34 [ ]+2c:[ ]+R_SH_IMM_LOW16 \.text\.other\+0x35
38 [ ]+30:[ ]+R_SH_IMM_HI16 \.data\.other\+0x38
40 [ ]+34:[ ]+R_SH_IMM_MEDHI16 \.data\.other\+0x38
42 [ ]+38:[ ]+R_SH_IMM_MEDLOW16 \.data\.other\+0x38
44 [ ]+3c:[ ]+R_SH_IMM_LOW16 \.data\.other\+0x38
45 Disassembly of section \.text\.other:
  /art/tools/checker/file_format/c1visualizer/
struct.py 33 def __eq__(self, other):
34 return isinstance(other, self.__class__) \
35 and self.passes == other.passes
57 def __eq__(self, other):
58 return isinstance(other, self.__class__) \
59 and self.name == other.name \
60 and self.body == other.body
  /external/deqp/framework/common/
tcuPixelFormat.hpp 99 inline bool operator== (const PixelFormat& other) const
101 return redBits == other.redBits &&
102 greenBits == other.greenBits &&
103 blueBits == other.blueBits &&
104 alphaBits == other.alphaBits;
107 inline bool operator!= (const PixelFormat& other) const
109 return !(*this == other);
  /external/eigen/Eigen/src/StlSupport/
details.h 36 typedef aligned_allocator_indirection<U> other; typedef in struct:Eigen::aligned_allocator_indirection::rebind
65 inline workaround_msvc_stl_support(const T& other) : T(other) {}
69 inline T& operator=(const OtherT& other)
70 { T::operator=(other); return *this; }
71 inline workaround_msvc_stl_support& operator=(const workaround_msvc_stl_support& other)
72 { T::operator=(other); return *this; }
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionData.java 104 * this probe or the corresponding other probe was executed. So the result
111 * The probe array of the other object is not modified.
113 * @param other
116 public void merge(final ExecutionData other) {
117 merge(other, true);
123 * corresponding other probe was executed. For <code>flag==true</code> this
136 * The probe array of the other object is not modified.
138 * @param other
143 public void merge(final ExecutionData other, final boolean flag) {
144 assertCompatibility(other.getId(), other.getName()
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/address/
UserInfo.java 82 UserInfo other = (UserInfo) obj; local
83 if (this.userType != other.userType) {
86 if (!this.user.equalsIgnoreCase(other.user)) {
89 if (this.password != null && other.password == null)
92 if (other.password != null && this.password == null)
95 if (this.password == other.password)
98 return (this.password.equals(other.password));
  /external/pdfium/xfa/src/fxbarcode/common/
BC_CommonPerspectiveTransform.cpp 137 CBC_CommonPerspectiveTransform& other) {
139 m_a11 * other.m_a11 + m_a21 * other.m_a12 + m_a31 * other.m_a13,
140 m_a11 * other.m_a21 + m_a21 * other.m_a22 + m_a31 * other.m_a23,
141 m_a11 * other.m_a31 + m_a21 * other.m_a32 + m_a31 * other.m_a33,
    [all...]

Completed in 1416 milliseconds

<<21222324252627282930>>