Searched defs:other (Results 1 - 25 of 195) sorted by relevance

12345678

/frameworks/base/core/java/android/security/net/config/
H A DDomain.java46 public boolean equals(Object other) { argument
47 if (other == this) {
50 if (!(other instanceof Domain)) {
53 Domain otherDomain = (Domain) other;
/frameworks/base/core/java/android/transition/
H A DTransitionValues.java31 * be unique to avoid clobbering values stored by other transitions,
62 public boolean equals(Object other) { argument
63 if (other instanceof TransitionValues) {
64 if (view == ((TransitionValues) other).view) {
65 if (values.equals(((TransitionValues) other).values)) {
/frameworks/base/libs/hwui/hwui/
H A DPaintImpl.cpp40 Paint& Paint::operator=(const Paint& other) { argument
41 SkPaint::operator=(other);
42 mLetterSpacing = other.mLetterSpacing;
43 mFontFeatureSettings = other.mFontFeatureSettings;
44 mMinikinLangListId = other.mMinikinLangListId;
45 mFontVariant = other.mFontVariant;
46 mHyphenEdit = other.mHyphenEdit;
/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/av/services/camera/libcameraservice/utils/
H A DAutoConditionLock.h68 AutoConditionLock(const AutoConditionLock& other) = delete; member in class:android::final
/frameworks/base/core/java/android/content/
H A DSyncInfo.java74 public SyncInfo(SyncInfo other) { argument
75 this.authorityId = other.authorityId;
76 this.account = new Account(other.account.name, other.account.type);
77 this.authority = other.authority;
78 this.startTime = other.startTime;
H A DPeriodicSync.java64 public PeriodicSync(PeriodicSync other) { argument
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;
128 return account.equals(other.account)
129 && authority.equals(other.authority)
130 && period == other
[all...]
/frameworks/base/core/java/android/content/pm/
H A DFeatureGroupInfo.java38 public FeatureGroupInfo(FeatureGroupInfo other) { argument
39 features = other.features;
H A DVerifierDeviceIdentity.java194 public boolean equals(Object other) { argument
195 if (!(other instanceof VerifierDeviceIdentity)) {
199 final VerifierDeviceIdentity o = (VerifierDeviceIdentity) other;
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightState.java55 public boolean equals(TwilightState other) { argument
56 return other != null
57 && mIsNight == other.mIsNight
58 && mAmount == other.mAmount;
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraSettings.java75 public AndroidCameraSettings(AndroidCameraSettings other) { argument
76 super(other);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DFloatRect.h35 inline FloatRect(const Rect& other) argument
36 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.h46 ACameraMetadata(const ACameraMetadata& other) : argument
47 mData(other.mData), mType(other.mType) {};
87 // exact copy of internal data type but they do not inherit from each other
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabaseConfiguration.java94 * database and default values for all other parameters.
116 * @param other The other configuration.
118 public SQLiteDatabaseConfiguration(SQLiteDatabaseConfiguration other) { argument
119 if (other == null) {
120 throw new IllegalArgumentException("other must not be null.");
123 this.path = other.path;
124 this.label = other.label;
125 updateParametersFrom(other);
130 * from the other configuratio
134 updateParametersFrom(SQLiteDatabaseConfiguration other) argument
[all...]
/frameworks/base/core/java/android/hardware/camera2/marshal/
H A DMarshalRegistry.java117 public boolean equals(Object other) { argument
118 if (other instanceof MarshalToken<?>) {
119 MarshalToken<?> otherToken = (MarshalToken<?>)other;
/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
/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/av/include/media/
H A DModulo.h65 // or equal to the rank of the type of the other operand, the operand with signed
102 Modulo<T> operator +=(const Modulo<S> &other) { argument
104 mValue += other.unsignedValue();
110 Modulo<T> operator -=(const Modulo<S> &other) { argument
112 mValue -= other.unsignedValue();
120 const Modulo<T> operator +(const Modulo<S> &other) const {
122 return Modulo<T>(mValue + other.unsignedValue());
127 const Modulo<T> operator -(const Modulo<S> &other) const {
129 return Modulo<T>(mValue - other.unsignedValue());
139 bool operator >(const Modulo<S> &other) cons
177 operator +=(const S &other) argument
184 operator -=(const S &other) argument
[all...]
/frameworks/base/core/java/android/net/
H A DLinkAddress.java205 * the other is not.
236 * @param other the {@code LinkAddress} to compare to.
241 public boolean isSameAddressAs(LinkAddress other) { argument
242 return address.equals(other.address) && prefixLength == other.prefixLength;
H A DUidRange.java56 * @return {@code true} if this range contains every UID contained by the {@param other} range.
58 public boolean containsRange(UidRange other) { argument
59 return start <= other.start && other.stop <= stop;
76 UidRange other = (UidRange) o;
77 return start == other.start && stop == other.stop;
/frameworks/base/core/java/android/os/
H A DBatteryProperties.java39 public void set(BatteryProperties other) { argument
40 chargerAcOnline = other.chargerAcOnline;
41 chargerUsbOnline = other.chargerUsbOnline;
42 chargerWirelessOnline = other.chargerWirelessOnline;
43 maxChargingCurrent = other.maxChargingCurrent;
44 maxChargingVoltage = other.maxChargingVoltage;
45 batteryStatus = other.batteryStatus;
46 batteryHealth = other.batteryHealth;
47 batteryPresent = other.batteryPresent;
48 batteryLevel = other
[all...]
/frameworks/base/core/java/android/view/
H A DMagnificationSpec.java65 public static MagnificationSpec obtain(MagnificationSpec other) { argument
67 info.scale = other.scale;
68 info.offsetX = other.offsetX;
69 info.offsetY = other.offsetY;
89 public void setTo(MagnificationSpec other) { argument
90 scale = other.scale;
91 offsetX = other.offsetX;
92 offsetY = other.offsetY;
109 public boolean equals(Object other) { argument
110 if (this == other) {
[all...]
H A DWindowInfo.java62 public static WindowInfo obtain(WindowInfo other) { argument
64 window.type = other.type;
65 window.layer = other.layer;
66 window.token = other.token;
67 window.parentToken = other.parentToken;
68 window.focused = other.focused;
69 window.boundsInScreen.set(other.boundsInScreen);
70 window.title = other.title;
71 window.accessibilityIdOfAnchor = other.accessibilityIdOfAnchor;
73 if (other
[all...]
/frameworks/base/libs/hwui/utils/
H A DFatVector.h11 * documentation and/or other materials provided with the distribution.
58 InlineStdAllocator(const InlineStdAllocator& other) argument
59 : mAllocation(other.mAllocation) {}

Completed in 1111 milliseconds

12345678