HomeSort by relevance Sort by last modified time
    Searched defs:other (Results 276 - 300 of 3919) sorted by null

<<11121314151617181920>>

  /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/proguard/src/proguard/classfile/attribute/preverification/
MoreZeroFrame.java 110 MoreZeroFrame other = (MoreZeroFrame)object; local
112 if (this.u2offsetDelta != other.u2offsetDelta ||
113 this.additionalVariablesCount != other.additionalVariablesCount)
121 VerificationType otherType = other.additionalVariables[index];
ObjectType.java 90 ObjectType other = (ObjectType)object; local
92 return this.u2classIndex == other.u2classIndex;
SameOneFrame.java 98 SameOneFrame other = (SameOneFrame)object; local
100 return this.u2offsetDelta == other.u2offsetDelta &&
101 this.stackItem.equals(other.stackItem);
UninitializedType.java 89 UninitializedType other = (UninitializedType)object; local
91 return this.u2newInstructionOffset == other.u2newInstructionOffset;
  /external/python/cpython2/Lib/plat-mac/
MiniAEFrame.py 186 self.installaehandler('****', '****', self.other)
195 def other(self, _object=None, _class=None, _type=None, **args): member in class:_Test
196 print 'AppleEvent', (_class, _type), 'for', _object, 'Other args:', args
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowPaintTest.java 54 Paint other = new Paint(paint); local
55 assertThat(other.getColor()).isEqualTo(Color.RED);
56 assertThat(other.getAlpha()).isEqualTo(72);
57 assertThat(other.getFlags()).isEqualTo(2345);
  /external/skia/src/gpu/effects/
GrSRGBEffect.cpp 92 const GrSRGBEffect& other = s.cast<GrSRGBEffect>(); local
93 return other.fMode == fMode;
  /external/skqp/src/gpu/effects/
GrSRGBEffect.cpp 92 const GrSRGBEffect& other = s.cast<GrSRGBEffect>(); local
93 return other.fMode == fMode;
  /external/testng/src/main/java/org/testng/
SuiteResult.java 52 SuiteResult other = (SuiteResult) o; local
54 String n2 = other.getTestContext().getName();
  /external/v8/src/heap/
store-buffer.cc 88 int other = (current_ + 1) % kStoreBuffers; local
89 MoveEntriesToRememberedSet(other);
91 current_ = other;
131 int other = (current_ + 1) % kStoreBuffers; local
132 MoveEntriesToRememberedSet(other);
140 int other = (current_ + 1) % kStoreBuffers; local
141 MoveEntriesToRememberedSet(other);
  /external/wayland/tests/
list-test.c 20 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
22 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
151 struct wl_list list, other; local
171 wl_list_init(&other);
172 wl_list_insert(&other, &e4.link);
173 wl_list_insert(other.prev, &e5.link);
174 wl_list_insert(other.prev, &e6.link);
175 assert(validate_list(&other, reference2, ARRAY_LENGTH(reference2)));
177 wl_list_insert_list(list.next, &other);
  /external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
dlrr.h 36 Dlrr(const Dlrr& other) = default; member in class:webrtc::rtcp::Dlrr
39 Dlrr& operator=(const Dlrr& other) = default; member in class:webrtc::rtcp::Dlrr
  /frameworks/base/core/java/android/app/
ResultInfo.java 90 final ResultInfo other = (ResultInfo) obj; local
91 final boolean intentsEqual = mData == null ? (other.mData == null)
92 : mData.filterEquals(other.mData);
93 return intentsEqual && Objects.equals(mResultWho, other.mResultWho)
94 && mResultCode == other.mResultCode
95 && mRequestCode == other.mRequestCode;
  /frameworks/base/core/java/android/app/servertransaction/
ConfigurationChangeItem.java 100 final ConfigurationChangeItem other = (ConfigurationChangeItem) o; local
101 return Objects.equals(mConfiguration, other.mConfiguration);
  /frameworks/base/core/java/android/content/
PeriodicSync.java 64 public PeriodicSync(PeriodicSync other) {
65 this.account = other.account;
66 this.authority = other.authority;
67 this.extras = new Bundle(other.extras);
68 this.period = other.period;
69 this.flexTime = other.flexTime;
127 final PeriodicSync other = (PeriodicSync) o; local
128 return account.equals(other.account)
129 && authority.equals(other.authority)
130 && period == other.perio
    [all...]
  /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/core/java/android/net/
UidRange.java 61 * @return {@code true} if this range contains every UID contained by the {@param other} range.
63 public boolean containsRange(UidRange other) {
64 return start <= other.start && other.stop <= stop;
81 UidRange other = (UidRange) o; local
82 return start == other.start && stop == other.stop;
  /frameworks/base/core/java/android/print/
PrinterId.java 96 PrinterId other = (PrinterId) object; local
97 if (!mServiceName.equals(other.mServiceName)) {
100 if (!mLocalId.equals(other.mLocalId)) {
  /frameworks/base/core/java/android/util/
Range.java 156 Range other = (Range) obj; local
157 return mLower.equals(other.mLower) && mUpper.equals(other.mUpper);
199 * @return the intersection of this range and the other range.
231 * @return the intersection of this range and the other range
268 * @return the extension of this range and the other range.
279 // other includes this
282 // this inludes other
299 * @return the extension of this range and the other range.
312 // this inludes other
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreKey.java 83 AndroidKeyStoreKey other = (AndroidKeyStoreKey) obj; local
85 if (other.mAlgorithm != null) {
88 } else if (!mAlgorithm.equals(other.mAlgorithm)) {
92 if (other.mAlias != null) {
95 } else if (!mAlias.equals(other.mAlias)) {
98 if (mUid != other.mUid) {
  /frameworks/base/media/java/android/media/projection/
MediaProjectionInfo.java 51 final MediaProjectionInfo other = (MediaProjectionInfo) o; local
52 return Objects.equals(other.mPackageName, mPackageName)
53 && Objects.equals(other.mUserHandle, mUserHandle);
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsCbLocation.java 117 SmsCbLocation other = (SmsCbLocation) o; local
118 return mPlmn.equals(other.mPlmn) && mLac == other.mLac && mCid == other.mCid;

Completed in 791 milliseconds

<<11121314151617181920>>