Searched refs:other (Results 1 - 25 of 525) sorted by last modified time

1234567891011>>

/frameworks/support/v17/leanback/src/android/support/v17/leanback/graphics/
H A DCompositeDrawable.java45 CompositeState(CompositeState other, CompositeDrawable parent, Resources res) { argument
46 final int n = other.mChildren.size();
49 mChildren.add(new ChildDrawable(other.mChildren.get(k), parent, res));
H A DFitWidthBitmapDrawable.java51 BitmapState(BitmapState other) { argument
52 mBitmap = other.mBitmap;
53 mPaint = new Paint(other.mPaint);
54 mSource = other.mSource != null ? new Rect(other.mSource) : null;
55 mDefaultSource.set(other.mDefaultSource);
56 mOffset = other.mOffset;
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java835 public LayoutParams(ViewGroup.LayoutParams other) { argument
836 super(other);
839 public LayoutParams(LayoutParams other) { argument
840 super((ViewGroup.LayoutParams) other);
841 isOverflowButton = other.isOverflowButton;
H A DActivityChooserModel.java62 * views is used for sharing but the other for importing, for example, then each
820 HistoricalRecord other = (HistoricalRecord) obj;
822 if (other.activity != null) {
825 } else if (!activity.equals(other.activity)) {
828 if (time != other.time) {
831 if (Float.floatToIntBits(weight) != Float.floatToIntBits(other.weight)) {
889 ActivityResolveInfo other = (ActivityResolveInfo) obj;
890 if (Float.floatToIntBits(weight) != Float.floatToIntBits(other.weight)) {
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteDiscoveryRequest.java92 MediaRouteDiscoveryRequest other = (MediaRouteDiscoveryRequest)o;
93 return getSelector().equals(other.getSelector())
94 && isActiveScan() == other.isActiveScan();
H A DMediaRouteProviderService.java582 public boolean hasMessenger(Messenger other) { argument
583 return mMessenger.getBinder() == other.getBinder();
641 * This handler should not be used to handle any messages other than those
H A DMediaRouteSelector.java166 MediaRouteSelector other = (MediaRouteSelector)o;
168 other.ensureControlCategories();
169 return mControlCategories.equals(other.mControlCategories);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceGroupAdapter.java92 public PreferenceLayout(PreferenceLayout other) { argument
93 resId = other.resId;
94 widgetResId = other.widgetResId;
95 name = other.name;
103 final PreferenceLayout other = (PreferenceLayout) o;
104 return resId == other.resId
105 && widgetResId == other.widgetResId
106 && TextUtils.equals(name, other.name);
/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/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java641 static Item clone(Item other) { argument
642 return new Item(other.id, other.version);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java215 * this flag to <code>true</code> so that views will be available to other RecyclerViews
472 // 1) by checking children and other variables, find an anchor coordinate and an anchor
2330 public SavedState(SavedState other) { argument
2331 mAnchorPosition = other.mAnchorPosition;
2332 mAnchorOffset = other.mAnchorOffset;
2333 mAnchorLayoutFromEnd = other.mAnchorLayoutFromEnd;
H A DRecyclerView.java140 * The other set of position related methods are in the form of
233 * widgets that snap to a page or other coarse-grained barrier.
951 * on other factors (e.g. its parent's size) but this size calculation cannot depend on the
1199 * <p>In contrast to other adapter-backed views such as {@link android.widget.ListView}
1992 // This is necessary since eatRequest calls can be nested in which case the other
2365 * that differs from other ViewGroups.
3405 * screen as a side-effect of other changes)
3408 * screen as a side-effect of other changes)
3761 // On the other hand, if it is the same view holder instance, we run a
3842 ViewHolder other
11642 copyFrom(SavedState other) argument
[all...]
H A DStaggeredGridLayoutManager.java1959 final Span other = mSpans[i];
1960 int otherLine = other.getEndLine(defaultLine);
1962 min = other;
1972 final Span other = mSpans[i];
1973 int otherLine = other.getStartLine(defaultLine);
1975 max = other;
2974 FullSpanItem other = mFullSpanItems.get(i);
2975 if (other.mPosition == fullSpanItem.mPosition) {
2982 if (other.mPosition >= fullSpanItem.mPosition) {
3147 public SavedState(SavedState other) { argument
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/helper/
H A DItemTouchHelper.java279 * that it can be drawn above other children.
618 // Animation might be ended by other animators during a layout.
673 // if animator is running or we have other active recover animations, we try
781 View other = lm.getChildAt(i);
782 if (other == viewHolder.itemView) {
785 if (other.getBottom() < top || other.getTop() > bottom
786 || other.getRight() < left || other.getLeft() > right) {
789 final ViewHolder otherVh = mRecyclerView.getChildViewHolder(other);
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java321 public void assertSame(Snapshot other, int step) { argument
323 (!doesChildrenFitVertically() || !other.doesChildrenFitVertically())) {
330 (!doesChildrenFitHorizontally() || !other.doesChildrenFitHorizontally())) {
337 other.mChildCoordinates);
341 assertMap("appearing step:" + step, mAppear, other.mAppear);
342 assertMap("disappearing step:" + step, mDisappear, other.mDisappear);
343 assertMap("persistent step:" + step, mPersistent, other.mPersistent);
344 assertMap("changed step:" + step, mChanged, other.mChanged);
H A DItemAnimatorV2ApiTest.java76 // I don't think we can do much better since other option is to bind a fresh view
201 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
202 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
205 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
206 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
226 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
227 assertEquals(0, mAnimator.preLayoutInfoMap.get(other).changeFlags);
230 RecyclerView.ViewHolder other = mRecyclerView.findViewHolderForAdapterPosition(i);
231 assertEquals(FLAG_MOVED, mAnimator.preLayoutInfoMap.get(other).changeFlags);
256 RecyclerView.ViewHolder other
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/transition/src/android/support/transition/
H A DMatrixUtils.java134 public boolean preConcat(Matrix other) {
182 public boolean postConcat(Matrix other) {
H A DTransitionValues.java30 * be unique to avoid clobbering values stored by other transitions,
61 public boolean equals(Object other) { argument
62 if (other instanceof TransitionValues) {
63 if (view == ((TransitionValues) other).view) {
64 if (values.equals(((TransitionValues) other).values)) {
/frameworks/support/transition/tests/src/android/support/transition/
H A DChangeBoundsTest.java77 private static TypeSafeMatcher<View> below(final View other) { argument
81 return other.getBottom() == item.getTop();
/frameworks/support/tv-provider/src/android/support/media/tv/
H A DBasePreviewProgram.java301 public boolean equals(Object other) { argument
302 if (!(other instanceof BasePreviewProgram)) {
305 return mValues.equals(((BasePreviewProgram) other).mValues);
538 * @param other The Program you're copying from.
540 public Builder(BasePreviewProgram other) { argument
541 mValues = new ContentValues(other.mValues);
H A DBaseProgram.java274 public boolean equals(Object other) { argument
275 if (!(other instanceof BaseProgram)) {
278 return mValues.equals(((BaseProgram) other).mValues);
513 * @param other The Program you're copying from.
515 public Builder(BaseProgram other) { argument
516 mValues = new ContentValues(other.mValues);
759 * Sets whether this channel can be searched for in other applications.
840 * thumbs-up count and the other for thumbs-down count, with a comma between them.

Completed in 393 milliseconds

1234567891011>>