Searched defs:other (Results 1 - 25 of 293) 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/support/room/migration/src/main/java/androidx/room/migration/bundle/
H A DSchemaEquality.java29 boolean isSchemaEqual(T other); argument
H A DPrimaryKeyBundle.java51 public boolean isSchemaEqual(PrimaryKeyBundle other) { argument
52 return mColumnNames.equals(other.mColumnNames) && mAutoGenerate == other.mAutoGenerate;
/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/core/tests/coretests/src/android/view/textclassifier/
H A DTextLinksTest.java42 private Map<String, Float> getEntityScores(float address, float phone, float other) { argument
50 if (other > 0.f) {
51 result.put(TextClassifier.TYPE_OTHER, other);
/frameworks/base/libs/hwui/hwui/
H A DPaintImpl.cpp49 Paint& Paint::operator=(const Paint& other) { argument
50 SkPaint::operator=(other);
51 mLetterSpacing = other.mLetterSpacing;
52 mWordSpacing = other.mWordSpacing;
53 mFontFeatureSettings = other.mFontFeatureSettings;
54 mMinikinLocaleListId = other.mMinikinLocaleListId;
55 mFamilyVariant = other.mFamilyVariant;
56 mHyphenEdit = other.mHyphenEdit;
57 mTypeface = other.mTypeface;
/frameworks/native/cmds/lshal/
H A DTextTable.cpp56 void TextTable::addAll(TextTable&& other) { argument
57 for (auto&& row : other.mTable) {
H A DNullableOStream.h39 NullableOStream &operator=(const NullableOStream<Other> &other) { argument
40 mOs = other.mOs;
/frameworks/native/libs/gui/
H A DLayerState.cpp139 void DisplayState::merge(const DisplayState& other) { argument
140 if (other.what & eSurfaceChanged) {
142 surface = other.surface;
144 if (other.what & eLayerStackChanged) {
146 layerStack = other.layerStack;
148 if (other.what & eDisplayProjectionChanged) {
150 orientation = other.orientation;
151 viewport = other.viewport;
152 frame = other.frame;
154 if (other
161 merge(const layer_state_t& other) argument
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/include/private/dvr/
H A Dbuffer_hub_queue_parcelable.h31 BufferHubQueueParcelable(BufferHubQueueParcelable&& other) = default; member in class:android::dvr::BufferHubQueueParcelable
32 BufferHubQueueParcelable& operator=(BufferHubQueueParcelable&& other) { argument
33 channel_parcelable_ = std::move(other.channel_parcelable_);
/frameworks/support/transition/src/main/java/androidx/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/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 mSessionId = other.mSessionId;
42 mSharingMode = other.mSharingMode;
43 mAudioFormat = other.mAudioFormat;
44 mDirection = other.mDirection;
45 mBufferCapacity = other.mBufferCapacity;
46 mUsage = other
[all...]
/frameworks/av/media/mtp/
H A DMtpStringBuffer.h48 inline void append(const char* other);
49 inline void append(MtpStringBuffer &other);
60 inline void MtpStringBuffer::append(const char* other) { argument
61 mString += other;
64 inline void MtpStringBuffer::append(MtpStringBuffer &other) { argument
65 mString += other.mString;
/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/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/androidTest/java/androidx/transition/
H A DChangeBoundsTest.java78 private static TypeSafeMatcher<View> below(final View other) { argument
82 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);

Completed in 557 milliseconds

1234567891011>>