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

123456

/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/core/java/android/content/
H A DSyncInfo.java56 public SyncInfo(SyncInfo other) { argument
57 this.authorityId = other.authorityId;
58 this.account = new Account(other.account.name, other.account.type);
59 this.authority = other.authority;
60 this.startTime = other.startTime;
H A DPeriodicSync.java62 public PeriodicSync(PeriodicSync other) { argument
63 this.account = other.account;
64 this.authority = other.authority;
65 this.extras = new Bundle(other.extras);
66 this.period = other.period;
67 this.flexTime = other.flexTime;
125 final PeriodicSync other = (PeriodicSync) o;
126 return account.equals(other.account)
127 && authority.equals(other.authority)
128 && 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/core/jni/android/graphics/
H A DPaintImpl.cpp37 Paint& Paint::operator=(const Paint& other) { argument
38 SkPaint::operator=(other);
39 mLetterSpacing = other.mLetterSpacing;
40 mFontFeatureSettings = other.mFontFeatureSettings;
41 mTextLocale = other.mTextLocale;
42 mFontVariant = other.mFontVariant;
/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.h33 inline FloatRect(const Rect& other) argument
34 : left(other.left), top(other.top), right(other.right), bottom(other.bottom) { }
/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.java112 public boolean equals(Object other) { argument
113 if (other instanceof MarshalToken<?>) {
114 MarshalToken<?> otherToken = (MarshalToken<?>)other;
/frameworks/base/core/java/android/os/
H A DBatteryProperties.java36 public void set(BatteryProperties other) { argument
37 chargerAcOnline = other.chargerAcOnline;
38 chargerUsbOnline = other.chargerUsbOnline;
39 chargerWirelessOnline = other.chargerWirelessOnline;
40 batteryStatus = other.batteryStatus;
41 batteryHealth = other.batteryHealth;
42 batteryPresent = other.batteryPresent;
43 batteryLevel = other.batteryLevel;
44 batteryVoltage = other.batteryVoltage;
45 batteryTemperature = other
[all...]
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DDisplayAdjustmentUtils.java107 private static float[] multiply(float[] matrix, float[] other) { argument
109 return other;
112 Matrix.multiplyMM(result, 0, matrix, 0, other, 0);
/frameworks/native/services/sensorservice/
H A DSensorDevice.h50 bool operator != (const BatchParams& other) { argument
51 return other.batchDelay != batchDelay || other.batchTimeout != batchTimeout ||
52 other.flags != flags;
/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/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;
/frameworks/base/core/java/android/view/
H A DMagnificationSpec.java54 public static MagnificationSpec obtain(MagnificationSpec other) { argument
56 info.scale = other.scale;
57 info.offsetX = other.offsetX;
58 info.offsetY = other.offsetY;
H A DWindowInfo.java60 public static WindowInfo obtain(WindowInfo other) { argument
62 window.type = other.type;
63 window.layer = other.layer;
64 window.token = other.token;
65 window.parentToken = other.parentToken;
66 window.focused = other.focused;
67 window.boundsInScreen.set(other.boundsInScreen);
69 if (other.childTokens != null && !other.childTokens.isEmpty()) {
71 window.childTokens = new ArrayList<IBinder>(other
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouterClientState.java39 * Globally selected routes override any other route selections that applications
118 public RouteInfo(RouteInfo other) { argument
119 id = other.id;
120 name = other.name;
121 description = other.description;
122 supportedTypes = other.supportedTypes;
123 enabled = other.enabled;
124 statusCode = other.statusCode;
125 playbackType = other.playbackType;
126 playbackStream = other
[all...]
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightState.java88 public boolean equals(TwilightState other) { argument
89 return other != null
90 && mIsNight == other.mIsNight
91 && mYesterdaySunset == other.mYesterdaySunset
92 && mTodaySunrise == other.mTodaySunrise
93 && mTodaySunset == other.mTodaySunset
94 && mTomorrowSunrise == other.mTomorrowSunrise;
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java83 * collide with values generated on other phones or after a data wipe of a given phone.
117 public boolean equals(Object other) { argument
118 return other != null &&
119 other instanceof PhoneAccountHandle &&
120 Objects.equals(((PhoneAccountHandle) other).getComponentName(),
122 Objects.equals(((PhoneAccountHandle) other).getId(), getId()) &&
123 Objects.equals(((PhoneAccountHandle) other).getUserHandle(), getUserHandle());
H A DStatusHints.java137 public boolean equals(Object other) { argument
138 if (other != null && other instanceof StatusHints) {
139 StatusHints otherHints = (StatusHints) other;
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoCdma o = (CellInfoCdma) other;
H A DCellInfoGsm.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoGsm o = (CellInfoGsm) other;
H A DCellInfoLte.java77 public boolean equals(Object other) { argument
78 if (!super.equals(other)) {
82 CellInfoLte o = (CellInfoLte) other;

Completed in 449 milliseconds

123456