Searched defs:other (Results 1 - 25 of 195) sorted by last modified time

12345678

/frameworks/support/v17/leanback/src/android/support/v17/leanback/util/
H A DStateMachine.java109 public final boolean equals(Object other) { argument
110 return this == other;
/frameworks/support/v4/api23/android/support/v4/print/
H A DPrintHelperApi23.java27 protected PrintAttributes.Builder copyAttributes(PrintAttributes other) { argument
28 PrintAttributes.Builder b = super.copyAttributes(other);
30 if (other.getDuplexMode() != 0) {
31 b.setDuplexMode(other.getDuplexMode());
/frameworks/support/v4/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/appcompat/src/android/support/v7/widget/
H A DActionMenuView.java812 public LayoutParams(ViewGroup.LayoutParams other) { argument
813 super(other);
816 public LayoutParams(LayoutParams other) { argument
817 super((ViewGroup.LayoutParams) other);
818 isOverflowButton = other.isOverflowButton;
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DMediaRouteProviderService.java531 public boolean hasMessenger(Messenger other) { argument
532 return mMessenger.getBinder() == other.getBinder();
589 * This handler should not be used to handle any messages other than those
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceGroupAdapter.java84 public PreferenceLayout(PreferenceLayout other) { argument
85 resId = other.resId;
86 widgetResId = other.widgetResId;
87 name = other.name;
95 final PreferenceLayout other = (PreferenceLayout) o;
96 return resId == other.resId
97 && widgetResId == other.widgetResId
98 && TextUtils.equals(name, other.name);
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DOpReorderTest.java639 static Item clone(Item other) { argument
640 return new Item(other.id, other.version);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DLinearLayoutManager.java202 * this flag to <code>true</code> so that views will be avilable to other RecyclerViews
408 * <p>Laying out invisible elements will eventually come with performance cost. On the other
457 // 1) by checking children and other variables, find an anchor coordinate and an anchor
2127 public SavedState(SavedState other) { argument
2128 mAnchorPosition = other.mAnchorPosition;
2129 mAnchorOffset = other.mAnchorOffset;
2130 mAnchorLayoutFromEnd = other.mAnchorLayoutFromEnd;
H A DRecyclerView.java136 * The other set of position related methods are in the form of
196 * widgets that snap to a page or other coarse-grained barrier.
813 * on other factors (e.g. its parent's size) but this size calculation cannot depend on the
1038 * <p>In contrast to other adapter-backed views such as {@link android.widget.ListView}
2088 * that differs from other ViewGroups.
3038 * screen as a side-effect of other changes)
3041 * screen as a side-effect of other changes)
3302 // On the other hand, if it is the same view holder instance, we run a
3375 ViewHolder other = getChildViewHolderInt(view);
3376 if (other
10441 copyFrom(SavedState other) argument
[all...]
H A DStaggeredGridLayoutManager.java1944 final Span other = mSpans[i];
1945 int otherLine = other.getEndLine(defaultLine);
1947 min = other;
1957 final Span other = mSpans[i];
1958 int otherLine = other.getStartLine(defaultLine);
1960 max = other;
2792 FullSpanItem other = mFullSpanItems.get(i);
2793 if (other.mPosition == fullSpanItem.mPosition) {
2800 if (other.mPosition >= fullSpanItem.mPosition) {
2964 public SavedState(SavedState other) { argument
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseWrapContentTest.java331 public void assertSame(Snapshot other, int step) { argument
333 (!doesChildrenFitVertically() || !other.doesChildrenFitVertically())) {
340 (!doesChildrenFitHorizontally() || !other.doesChildrenFitHorizontally())) {
347 other.mChildCoordinates);
351 assertMap("appearing step:" + step, mAppear, other.mAppear);
352 assertMap("disappearing step:" + step, mDisappear, other.mDisappear);
353 assertMap("persistent step:" + step, mPersistent, other.mPersistent);
354 assertMap("changed step:" + step, mChanged, other.mChanged);
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java573 public int compareTo(Request<T> other) { argument
575 Priority right = other.getPriority();
580 this.mSequence - other.mSequence :
/frameworks/rs/cpp/util/
H A DStrongPointer.h68 sp(T* other);
69 sp(const sp<T>& other);
70 template<typename U> sp(U* other);
71 template<typename U> sp(const sp<U>& other);
77 sp& operator = (T* other);
78 sp& operator = (const sp<T>& other);
80 template<typename U> sp& operator = (const sp<U>& other);
81 template<typename U> sp& operator = (U* other);
84 void force_set(T* other);
121 sp<T>::sp(T* other)
141 sp(const sp<U>& other) argument
154 operator =(const sp<T>& other) argument
163 operator =(T* other) argument
172 operator =(const sp<U>& other) argument
182 operator =(U* other) argument
191 force_set(T* other) argument
[all...]
/frameworks/rs/server/
H A DStrongPointer.h67 sp(T* other);
68 sp(const sp<T>& other);
69 template<typename U> sp(U* other);
70 template<typename U> sp(const sp<U>& other);
76 sp& operator = (T* other);
77 sp& operator = (const sp<T>& other);
79 template<typename U> sp& operator = (const sp<U>& other);
80 template<typename U> sp& operator = (U* other);
83 void force_set(T* other);
120 sp<T>::sp(T* other)
140 sp(const sp<U>& other) argument
153 operator =(const sp<T>& other) argument
162 operator =(T* other) argument
171 operator =(const sp<U>& other) argument
181 operator =(U* other) argument
190 force_set(T* other) argument
[all...]
/frameworks/support/recommendation/src/android/support/app/recommendation/
H A DContentRecommendation.java673 public boolean equals(Object other) { argument
674 if (other instanceof ContentRecommendation) {
675 return TextUtils.equals(mIdTag, ((ContentRecommendation) other).getIdTag());
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DCatService.java63 RilMessage(RilMessage other) { argument
64 mId = other.mId;
65 mData = other.mData;
66 mResCode = other.mResCode;
733 /* TODO: eventDownload should be extended for other Envelope Commands */
H A DCommandDetails.java44 public boolean compareTo(CommandDetails other) { argument
45 return (this.compRequired == other.compRequired &&
46 this.commandNumber == other.commandNumber &&
47 this.commandQualifier == other.commandQualifier &&
48 this.typeOfCommand == other.typeOfCommand);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneInfo.java247 * Returns a negative integer if this instance is less than the other; a
248 * positive integer if this instance is greater than the other; 0 if this
249 * instance has the same order as the other.
252 public int compareTo(TimeZoneInfo other) { argument
253 if (this.getNowOffsetMillis() != other.getNowOffsetMillis()) {
254 return (other.getNowOffsetMillis() < this.getNowOffsetMillis()) ? -1 : 1;
259 if (other.mCountry != null) {
264 if (other.mCountry == null) {
267 int diff = this.mCountry.compareTo(other.mCountry);
275 if (mDisplayName != null && other
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/pps/
H A DCredential.java115 public Credential(Credential other, String password) { argument
116 mCtime = other.mCtime;
117 mExpTime = other.mExpTime;
118 mRealm = other.mRealm;
119 mCheckAAACert = other.mCheckAAACert;
120 mUserName = other.mUserName;
122 mDisregardPassword = other.mDisregardPassword;
123 mMachineManaged = other.mMachineManaged;
124 mSTokenApp = other.mSTokenApp;
125 mShare = other
[all...]
H A DHomeSP.java31 * As a convenience, the object also refers to the other sub-parts of the full
330 public boolean deepEquals(HomeSP other) { argument
331 return mFQDN.equals(other.mFQDN) &&
332 mSSIDs.equals(other.mSSIDs) &&
333 mOtherHomePartners.equals(other.mOtherHomePartners) &&
334 mRoamingConsortiums.equals(other.mRoamingConsortiums) &&
335 mMatchAnyOIs.equals(other.mMatchAnyOIs) &&
336 mMatchAllOIs.equals(other.mMatchAllOIs) &&
337 mFriendlyName.equals(other.mFriendlyName) &&
338 Utils.compare(mIconURL, other
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/util/
H A DInformationElementUtil.java281 public ExtendedCapabilities(ExtendedCapabilities other) { argument
282 extendedCapabilities = other.extendedCapabilities;
283 is80211McRTTResponder = other.is80211McRTTResponder;
/frameworks/opt/setupwizard/tools/docs/
H A Ddoclava.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/ccil/ org/ccil/cowan/ org/ccil/cowan/tagsoup/ ...
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/native/include/media/openmax/
H A DOMX_Component.h99 OMX_OTHER_PORTDEFINITIONTYPE other; member in union:OMX_PARAM_PORTDEFINITIONTYPE::__anon1395
/frameworks/native/include/ui/
H A DHdrCapabilities.h35 HdrCapabilities(HdrCapabilities&& other) = default; member in class:android::HdrCapabilities
36 HdrCapabilities& operator=(HdrCapabilities&& other) = default; member in class:android::HdrCapabilities

Completed in 3796 milliseconds

12345678