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

1234567891011

/frameworks/base/core/java/android/net/
H A DNetworkSpecifier.java23 * subclasses of this class via other APIs.
35 public abstract boolean satisfiedBy(NetworkSpecifier other); argument
H A DMatchAllNetworkSpecifier.java41 public boolean satisfiedBy(NetworkSpecifier other) { argument
H A DStringNetworkSpecifier.java40 public boolean satisfiedBy(NetworkSpecifier other) { argument
41 return equals(other);
/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.cpp41 Paint& Paint::operator=(const Paint& other) { argument
42 SkPaint::operator=(other);
43 mLetterSpacing = other.mLetterSpacing;
44 mWordSpacing = other.mWordSpacing;
45 mFontFeatureSettings = other.mFontFeatureSettings;
46 mMinikinLangListId = other.mMinikinLangListId;
47 mFontVariant = other.mFontVariant;
48 mHyphenEdit = other.mHyphenEdit;
/frameworks/av/media/libaaudio/src/core/
H A DAAudioStreamParameters.cpp37 void AAudioStreamParameters::copyFrom(const AAudioStreamParameters &other) { argument
38 mSamplesPerFrame = other.mSamplesPerFrame;
39 mSampleRate = other.mSampleRate;
40 mDeviceId = other.mDeviceId;
41 mSharingMode = other.mSharingMode;
42 mAudioFormat = other.mAudioFormat;
43 mDirection = other.mDirection;
44 mBufferCapacity = other.mBufferCapacity;
/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;
/frameworks/base/core/java/android/content/pm/
H A DFeatureGroupInfo.java38 public FeatureGroupInfo(FeatureGroupInfo other) { argument
39 features = other.features;
/frameworks/base/services/backup/java/com/android/server/backup/fullbackup/
H A DFullBackupEntry.java30 public int compareTo(FullBackupEntry other) { argument
31 if (lastBackup < other.lastBackup) {
33 } else if (lastBackup > other.lastBackup) {
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCameraSettings.java75 public AndroidCameraSettings(AndroidCameraSettings other) { argument
76 super(other);
/frameworks/native/cmds/lshal/
H A DNullableOStream.h39 NullableOStream &operator=(const NullableOStream<Other> &other) { argument
40 mOs = other.mOs;
/frameworks/native/libs/ui/
H A DHdrCapabilities.cpp27 HdrCapabilities::HdrCapabilities(HdrCapabilities&& other) = default; member in class:android::HdrCapabilities
28 HdrCapabilities& HdrCapabilities::operator=(HdrCapabilities&& other) = default; member in class:android::HdrCapabilities
/frameworks/support/transition/src/android/support/transition/
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/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/accounts/
H A DAccount.java51 final Account other = (Account)o;
52 return name.equals(other.name) && type.equals(other.type);
69 public Account(@NonNull Account other, @NonNull String accessId) { argument
70 this(other.name, other.type, accessId);
/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/base/core/java/android/text/
H A DTextPaint.java84 public boolean hasEqualAttributes(@NonNull TextPaint other) { argument
85 return bgColor == other.bgColor
86 && baselineShift == other.baselineShift
87 && linkColor == other.linkColor
88 && drawableState == other.drawableState
89 && density == other.density
90 && underlineColor == other.underlineColor
91 && underlineThickness == other.underlineThickness
92 && super.hasEqualAttributes((Paint) other);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskKeyStrongCache.java36 final void copyEntries(TaskKeyStrongCache<V> other) { argument
37 for (int i = other.mKeys.size() - 1; i >= 0; i--) {
38 TaskKey key = other.mKeys.valueAt(i);
39 put(key, other.mCache.get(key.id));
/frameworks/base/services/core/java/com/android/server/twilight/
H A DTwilightState.java87 public boolean equals(TwilightState other) { argument
88 return other != null
89 && mSunriseTimeMillis == other.mSunriseTimeMillis
90 && mSunsetTimeMillis == other.mSunsetTimeMillis;
/frameworks/native/libs/vr/libvrflinger/
H A Dacquired_buffer.cpp34 AcquiredBuffer::AcquiredBuffer(AcquiredBuffer&& other) { argument
35 *this = std::move(other);
40 AcquiredBuffer& AcquiredBuffer::operator=(AcquiredBuffer&& other) { argument
41 if (this != &other) {
45 swap(buffer_, other.buffer_);
46 swap(acquire_fence_, other.acquire_fence_);
47 swap(slot_, other.slot_);
/frameworks/rs/cpp/util/
H A DStrongPointer.h68 sp(T* other); // NOLINT, implicit
69 sp(const sp<T>& other);
70 template<typename U> sp(U* other); // NOLINT, implicit
71 template<typename U> sp(const sp<U>& other); // NOLINT, implicit
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/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...]

Completed in 5714 milliseconds

1234567891011