Searched refs:other (Results 226 - 250 of 409) sorted by relevance

1234567891011>>

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DScanResults.java58 for (ScanResults other : others) {
59 scanDetails.addAll(other.getScanDetailArrayList());
60 scanDataResults.addAll(Arrays.asList(other.getScanData().getResults()));
61 rawScanResults.addAll(Arrays.asList(other.getRawScanResults()));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsBroadcastUndelivered.java187 // to state machine which will find the other pieces to broadcast
265 SmsReferenceKey other = (SmsReferenceKey) o;
266 return other.mAddress.equals(mAddress)
267 && (other.mReferenceNumber == mReferenceNumber)
268 && (other.mMessageCount == mMessageCount);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DItemAnimatorV2ApiTest.java77 // I don't think we can do much better since other option is to bind a fresh view
202 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
203 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
206 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
207 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
227 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
228 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
231 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
232 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
257 RecyclerView.ViewHolder other
[all...]
H A DBaseWrapContentTest.java330 public void assertSame(Snapshot other, int step) { argument
332 (!doesChildrenFitVertically() || !other.doesChildrenFitVertically())) {
339 (!doesChildrenFitHorizontally() || !other.doesChildrenFitHorizontally())) {
346 other.mChildCoordinates);
350 assertMap("appearing step:" + step, mAppear, other.mAppear);
351 assertMap("disappearing step:" + step, mDisappear, other.mDisappear);
352 assertMap("persistent step:" + step, mPersistent, other.mPersistent);
353 assertMap("changed step:" + step, mChanged, other.mChanged);
/frameworks/base/core/java/android/hardware/camera2/
H A DCaptureRequest.java394 * @param other Another instance of CaptureRequest.
399 public boolean equals(Object other) { argument
400 return other instanceof CaptureRequest
401 && equals((CaptureRequest)other);
404 private boolean equals(CaptureRequest other) { argument
405 return other != null
406 && Objects.equals(mUserTag, other.mUserTag)
407 && mSurfaceSet.equals(other.mSurfaceSet)
408 && mSettings.equals(other.mSettings)
409 && mIsReprocess == other
[all...]
/frameworks/base/core/java/android/text/
H A DSpannableStringInternal.java445 Spanned other = (Spanned) o;
447 Object[] otherSpans = other.getSpans(0, other.length(), Object.class);
453 if (other != otherSpan ||
454 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
455 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
456 getSpanFlags(thisSpan) != other.getSpanFlags(otherSpan)) {
460 getSpanStart(thisSpan) != other.getSpanStart(otherSpan) ||
461 getSpanEnd(thisSpan) != other.getSpanEnd(otherSpan) ||
462 getSpanFlags(thisSpan) != other
[all...]
/frameworks/compile/mclinker/unittests/
H A DStaticResolverTest.cpp281 ASSERT_TRUE(0 == sym->other());
297 ASSERT_TRUE(0 == sym->other());
313 ASSERT_TRUE(0 == sym->other());
329 ASSERT_TRUE(0 == sym->other());
344 ASSERT_TRUE(0 == sym->other());
359 ASSERT_TRUE(0 == sym->other());
380 ASSERT_TRUE(0 == sym->other());
395 ASSERT_TRUE(0 == sym->other());
410 ASSERT_TRUE(0 == sym->other());
425 ASSERT_TRUE(0 == sym->other());
[all...]
/frameworks/base/libs/hwui/
H A DRect.h239 /* For other geometry, we do the regular rounding in order to snap, but also outset the
268 void expandToCover(const Rect& other) { argument
269 left = std::min(left, other.left);
270 top = std::min(top, other.top);
271 right = std::max(right, other.right);
272 bottom = std::max(bottom, other.bottom);
H A DClipArea.h37 bool canSimplyIntersectWith(const TransformedRectangle& other) const;
38 void intersectWith(const TransformedRectangle& other);
/frameworks/minikin/libs/minikin/
H A DLayout.cpp121 bool operator==(const LayoutCacheKey &other) const;
225 bool LayoutCacheKey::operator==(const LayoutCacheKey& other) const {
226 return mId == other.mId
227 && mStart == other.mStart
228 && mCount == other.mCount
229 && mStyle == other.mStyle
230 && mSize == other.mSize
231 && mScaleX == other.mScaleX
232 && mSkewX == other.mSkewX
233 && mLetterSpacing == other
[all...]
H A DFontLanguage.cpp40 // We don't understand anything other than two-letter or three-letter
125 bool FontLanguage::isEqualScript(const FontLanguage& other) const {
126 return other.mScript == mScript;
/frameworks/native/libs/input/
H A DKeyCharacterMap.cpp94 KeyCharacterMap::KeyCharacterMap(const KeyCharacterMap& other) : argument
95 RefBase(), mType(other.mType), mKeysByScanCode(other.mKeysByScanCode),
96 mKeysByUsageCode(other.mKeysByUsageCode) {
97 for (size_t i = 0; i < other.mKeys.size(); i++) {
98 mKeys.add(other.mKeys.keyAt(i), new Key(*other.mKeys.valueAt(i)));
689 KeyCharacterMap::Key::Key(const Key& other) : argument
690 label(other.label), number(other
710 Behavior(const Behavior& other) argument
[all...]
/frameworks/base/core/java/android/accessibilityservice/
H A DAccessibilityServiceInfo.java554 * @param other The info from which to update the properties.
558 public void updateDynamicallyConfigurableProperties(AccessibilityServiceInfo other) { argument
559 eventTypes = other.eventTypes;
560 packageNames = other.packageNames;
561 feedbackType = other.feedbackType;
562 notificationTimeout = other.notificationTimeout;
563 flags = other.flags;
749 AccessibilityServiceInfo other = (AccessibilityServiceInfo) obj;
751 if (other.mId != null) {
754 } else if (!mId.equals(other
[all...]
/frameworks/base/core/java/android/content/
H A DClipData.java76 * creating shortcuts (such as placing icons on the home screen) or other
103 * or other binary data as an attachment. This is accomplished through the
126 * URI consisting of a complicated structure that only other applications with
195 public Item(Item other) { argument
196 mText = other.mText;
197 mHtmlText = other.mHtmlText;
198 mIntent = other.mIntent;
199 mUri = other.mUri;
319 * and other things can be retrieved.
394 * and other thing
685 ClipData(ClipData other) argument
[all...]
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DInputMethodSubtypeSwitchingController.java99 public int compareTo(ImeSubtypeListItem other) { argument
103 if (TextUtils.isEmpty(other.mImeName)) {
106 if (!TextUtils.equals(mImeName, other.mImeName)) {
107 return mImeName.toString().compareTo(other.mImeName.toString());
109 if (TextUtils.equals(mSubtypeName, other.mSubtypeName)) {
115 if (other.mIsSystemLocale) {
121 if (other.mIsSystemLanguage) {
127 if (TextUtils.isEmpty(other.mSubtypeName)) {
130 return mSubtypeName.toString().compareTo(other.mSubtypeName.toString());
H A DLocaleUtils.java170 public int compareTo(final ScoreEntry other) { argument
171 return -1 * compare(mScore, other.mScore); // Order by descending order.
/frameworks/base/core/java/android/content/res/
H A DResources.java318 * some other type of CharSequence if it is styled.
471 * some other type of CharSequence if it is styled.
684 * @param base The base value of this fraction. In other words, a
686 * @param pbase The parent base value of this fraction. In other
1338 * In other words, a Theme is a set of values for resource attributes;
1384 * <var>other</var>. If both of these themes are from the same
1389 * @param other The existing Theme to copy from.
1391 public void setTo(Theme other) { argument
1392 mThemeImpl.setTo(other.mThemeImpl);
1466 * taking precedence over the following ones. In other word
1675 setTo(ThemeKey other) argument
[all...]
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Settings.java138 public AndroidCamera2Settings(AndroidCamera2Settings other) { argument
139 super(other);
140 mTemplateSettings = other.mTemplateSettings;
141 mRequestSettings = new Camera2RequestSettingsSet(other.mRequestSettings);
142 mActiveArray = other.mActiveArray;
143 mCropRectangle = new Rect(other.mCropRectangle);
529 // not use other fields sometimes. Setting processing
530 // method to null means the other fields should not be used.
/frameworks/support/core-utils/kitkat/android/support/v4/print/
H A DPrintHelperKitkat.java200 * Create a build with a copy from the other print attributes.
202 * @param other The other print attributes
204 * @return A builder that will build print attributes that match the other attributes
206 protected PrintAttributes.Builder copyAttributes(PrintAttributes other) { argument
208 .setMediaSize(other.getMediaSize())
209 .setResolution(other.getResolution())
210 .setMinMargins(other.getMinMargins());
212 if (other.getColorMode() != 0) {
213 b.setColorMode(other
[all...]
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
H A DDiffUtilTest.java465 public Item(Item other) { argument
466 id = other.id;
467 newItem = other.newItem;
468 changed = other.changed;
469 payload = other.payload;
470 data = other.data;
/frameworks/base/core/java/android/util/
H A DMemoryIntArray.java35 * each other.
64 * @param clientWritable Whether other processes can write to the array.
196 MemoryIntArray other = (MemoryIntArray) obj;
197 return mFd == other.mFd;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DRemoteInputView.java374 public void stealFocusFrom(RemoteInputView other) { argument
375 other.close();
376 setPendingIntent(other.mPendingIntent);
377 setRemoteInput(other.mRemoteInputs, other.mRemoteInput);
378 setRevealParameters(other.mRevealCx, other.mRevealCy, other.mRevealR);
474 // We might get reattached but then the other one of HUN / expanded might steal
/frameworks/native/opengl/libagl/
H A DTokenizer.cpp32 Tokenizer::Tokenizer(const Tokenizer& other) argument
33 : mRanges(other.mRanges)
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h206 // egl_display_ptr(egl_display_ptr&& other) {
207 // mDpy = other.mDpy;
208 // other.mDpy = NULL;
211 egl_display_ptr(const egl_display_ptr& other): mDpy(other.mDpy) { argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/util/
H A DStateMachine.java114 public final boolean equals(Object other) { argument
115 return this == other;

Completed in 921 milliseconds

1234567891011>>