HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 926 - 950 of 9808) sorted by null

<<31323334353637383940>>

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Attribute.java 68 protected boolean equals (Attribute other) {
69 return other.hashCode() == hashCode();
77 final Attribute other = (Attribute)obj;
78 if (this.type != other.type) return false;
79 return equals(other);
Material.java 83 public boolean equals (Object other) {
84 return (other instanceof Material) && ((other == this) || ((((Material)other).id.equals(id)) && super.equals(other)));
  /external/libweave/third_party/chromium/base/
location.cc 34 Location::Location(const Location& other)
35 : function_name_(other.function_name_),
36 file_name_(other.file_name_),
37 line_number_(other.line_number_),
38 program_counter_(other.program_counter_) {
  /external/nist-sip/java/gov/nist/javax/sip/header/
AddressParametersHeader.java 94 public boolean equals(Object other) {
95 if (this==other) return true;
99 if (other instanceof HeaderAddress && other instanceof Parameters) {
100 final HeaderAddress o = (HeaderAddress) other;
  /external/replicaisland/src/com/replica/replicaisland/
InputXY.java 89 public void clone(InputXY other) {
90 if (other.getPressed()) {
91 press(other.getLastPressedTime(), other.getX(), other.getY());
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/base/reference/
BaseMethodReference.java 13 * in the documentation and/or other materials provided with the
54 MethodReference other = (MethodReference)o; local
55 return getDefiningClass().equals(other.getDefiningClass()) &&
56 getName().equals(other.getName()) &&
57 getReturnType().equals(other.getReturnType()) &&
58 CharSequenceUtils.listEquals(getParameterTypes(), other.getParameterTypes());
  /external/testng/src/main/java/org/testng/internal/
ConstructorOrMethod.java 62 ConstructorOrMethod other = (ConstructorOrMethod) obj;
64 if (other.getConstructor() != null)
66 } else if (!getConstructor().equals(other.getConstructor()))
69 if (other.getMethod() != null)
71 } else if (!getMethod().equals(other.getMethod()))
  /external/testng/src/main/java/org/testng/internal/collections/
Pair.java 46 final Pair other = (Pair) obj; local
48 if (other.first != null) {
52 else if (!first.equals(other.first)) {
56 if (other.second != null) {
60 else if (!second.equals(other.second)) {
  /external/v8/src/
diy-fp.h 27 // this = this - other.
29 // must be bigger than the significand of other.
31 void Subtract(const DiyFp& other) {
32 DCHECK(e_ == other.e_);
33 DCHECK(f_ >= other.f_);
34 f_ -= other.f_;
39 // than other. The result will not be normalized.
47 // this = this * other.
48 void Multiply(const DiyFp& other);
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaConstraints.java 12 * and/or other materials provided with the distribution.
61 public boolean equals(Object other) {
62 if (this == other) {
65 if (other == null || getClass() != other.getClass()) {
68 KeyValuePair that = (KeyValuePair)other;
  /frameworks/base/core/java/android/hardware/camera2/params/
StreamConfiguration.java 150 final StreamConfiguration other = (StreamConfiguration) obj; local
151 return mFormat == other.mFormat &&
152 mWidth == other.mWidth &&
153 mHeight == other.mHeight &&
154 mInput == other.mInput;
StreamConfigurationDuration.java 129 final StreamConfigurationDuration other = (StreamConfigurationDuration) obj; local
130 return mFormat == other.mFormat &&
131 mWidth == other.mWidth &&
132 mHeight == other.mHeight &&
133 mDurationNs == other.mDurationNs;
  /frameworks/base/media/java/android/media/
VolumePolicy.java 67 final VolumePolicy other = (VolumePolicy) o;
68 return other.volumeDownToEnterSilent == volumeDownToEnterSilent
69 && other.volumeUpToExitSilent == volumeUpToExitSilent
70 && other.doNotDisturbWhenSilent == doNotDisturbWhenSilent
71 && other.vibrateToSilentDebounce == vibrateToSilentDebounce;
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
Identifier.java 45 final Identifier other = (Identifier) obj;
46 return mDeviceId == other.mDeviceId && mStorageId == other.mStorageId &&
47 mObjectHandle == other.mObjectHandle && mDocumentId.equals(other.mDocumentId);
  /frameworks/native/services/inputflinger/
InputWindow.cpp 57 bool InputWindowInfo::overlaps(const InputWindowInfo* other) const {
58 return frameLeft < other->frameRight && frameRight > other->frameLeft
59 && frameTop < other->frameBottom && frameBottom > other->frameTop;
  /libcore/dex/src/main/java/com/android/dex/
TypeList.java 37 @Override public int compareTo(TypeList other) {
38 for (int i = 0; i < types.length && i < other.types.length; i++) {
39 if (types[i] != other.types[i]) {
40 return Unsigned.compare(types[i], other.types[i]);
43 return Unsigned.compare(types.length, other.types.length);
  /libcore/ojluni/src/main/java/java/util/
LongSummaryStatistics.java 105 * @param other another {@code LongSummaryStatistics}
106 * @throws NullPointerException if {@code other} is null
108 public void combine(LongSummaryStatistics other) {
109 count += other.count;
110 sum += other.sum;
111 min = Math.min(min, other.min);
112 max = Math.max(max, other.max);
  /libcore/ojluni/src/main/java/javax/crypto/spec/
RC5ParameterSpec.java 181 RC5ParameterSpec other = (RC5ParameterSpec) obj; local
183 return ((version == other.version) &&
184 (rounds == other.rounds) &&
185 (wordSize == other.wordSize) &&
186 java.util.Arrays.equals(iv, other.iv));
  /libcore/support/src/test/java/tests/util/
Pair.java 90 Pair other = (Pair) obj; local
92 if (other.mFirst != null) {
95 } else if (!mFirst.equals(other.mFirst)) {
99 if (other.mSecond != null) {
102 } else if (!mSecond.equals(other.mSecond)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 125 private boolean equals(final KeyboardId other) {
126 if (other == this)
128 return other.mElementId == mElementId
129 && other.mMode == mMode
130 && other.mWidth == mWidth
131 && other.mHeight == mHeight
132 && other.passwordInput() == passwordInput()
133 && other.mClobberSettingsKey == mClobberSettingsKey
134 && other.mHasShortcutKey == mHasShortcutKey
135 && other.mLanguageSwitchKeyEnabled == mLanguageSwitchKeyEnable
    [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_/
point_iterators.hpp 122 bin_search_tree_const_it_(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other)
123 : m_p_nd(other.m_p_nd)
128 operator=(const PB_DS_TREE_CONST_IT_C_DEC& other)
130 m_p_nd = other.m_p_nd;
136 operator=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other)
138 m_p_nd = other.m_p_nd;
157 operator==(const PB_DS_TREE_CONST_IT_C_DEC & other) const
158 { return m_p_nd == other.m_p_nd; }
161 operator==(const PB_DS_TREE_CONST_ODIR_IT_C_DEC & other) const
162 { return m_p_nd == other.m_p_nd;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 81 PB_DS_OV_TREE_NAME(const PB_DS_CLASS_C_DEC& other) :
83 trace_base(other),
85 cmp_fn(other),
86 node_update(other),
92 copy_from_ordered_range(other.begin(), other.end());
104 typename _Alloc::template rebind<value_type>::other>
108 typename _Alloc::template rebind<Key>::other>
204 swap(PB_DS_CLASS_C_DEC& other)
207 PB_DS_ASSERT_VALID(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/thin_heap_/
constructors_destructor_fn_imps.hpp 71 thin_heap(const PB_DS_CLASS_C_DEC& other)
72 : base_type(other)
87 swap(PB_DS_CLASS_C_DEC& other)
90 base_type::swap(other);
91 std::swap(m_p_max, other.m_p_max);
  /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_/
point_iterators.hpp 122 bin_search_tree_const_it_(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other)
123 : m_p_nd(other.m_p_nd)
128 operator=(const PB_DS_TREE_CONST_IT_C_DEC& other)
130 m_p_nd = other.m_p_nd;
136 operator=(const PB_DS_TREE_CONST_ODIR_IT_C_DEC& other)
138 m_p_nd = other.m_p_nd;
157 operator==(const PB_DS_TREE_CONST_IT_C_DEC & other) const
158 { return m_p_nd == other.m_p_nd; }
161 operator==(const PB_DS_TREE_CONST_ODIR_IT_C_DEC & other) const
162 { return m_p_nd == other.m_p_nd;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
constructors_destructor_fn_imps.hpp 81 PB_DS_OV_TREE_NAME(const PB_DS_CLASS_C_DEC& other) :
83 trace_base(other),
85 cmp_fn(other),
86 node_update(other),
92 copy_from_ordered_range(other.begin(), other.end());
104 typename _Alloc::template rebind<value_type>::other>
108 typename _Alloc::template rebind<Key>::other>
204 swap(PB_DS_CLASS_C_DEC& other)
207 PB_DS_ASSERT_VALID(other)
    [all...]

Completed in 875 milliseconds

<<31323334353637383940>>