Searched defs:other (Results 76 - 100 of 260) sorted by relevance

1234567891011

/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityLte.java153 public boolean equals(Object other) { argument
154 if (this == other) {
158 if (!(other instanceof CellIdentityLte)) {
162 CellIdentityLte o = (CellIdentityLte) other;
H A DCellIdentityWcdma.java154 public boolean equals(Object other) { argument
155 if (this == other) {
159 if (!(other instanceof CellIdentityWcdma)) {
163 CellIdentityWcdma o = (CellIdentityWcdma) other;
H A DCellInfo.java118 public boolean equals(Object other) { argument
119 if (other == null) {
122 if (this == other) {
126 CellInfo o = (CellInfo) other;
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java349 public boolean equals(Object other) { argument
350 if (other == null) return false;
351 if (!(other instanceof ProcessError)) return false;
352 ProcessError peOther = (ProcessError) other;
/frameworks/base/wifi/java/android/net/wifi/aware/
H A DWifiAwareAgentNetworkSpecifier.java124 public boolean satisfiedBy(NetworkSpecifier other) { argument
125 if (!(other instanceof WifiAwareAgentNetworkSpecifier)) {
128 WifiAwareAgentNetworkSpecifier otherNs = (WifiAwareAgentNetworkSpecifier) other;
H A DWifiAwareNetworkSpecifier.java194 public boolean satisfiedBy(NetworkSpecifier other) { argument
196 if (other instanceof WifiAwareAgentNetworkSpecifier) {
197 return ((WifiAwareAgentNetworkSpecifier) other).satisfiesAwareNetworkSpecifier(this);
199 return equals(other);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelMethod.java92 public boolean isBetterArgMatchThan(ModelMethod other, List<ModelClass> args) { argument
94 final ModelClass[] otherParameterTypes = other.getParameterTypes();
98 final ModelClass thatParameter = other.getParameter(i, otherParameterTypes);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
H A DFlagSet.java66 public boolean intersect(FlagSet other, int bucketIndex) { argument
67 return (buckets[bucketIndex] & other.buckets[bucketIndex]) != 0;
90 public FlagSet andNot(FlagSet other) { argument
92 final int min = Math.min(buckets.length, other.buckets.length);
94 result.buckets[i] &= ~(other.buckets[i]);
99 public FlagSet or(FlagSet other) { argument
100 final FlagSet result = new FlagSet(buckets, other.buckets.length);
101 for (int i = 0; i < other.buckets.length; i ++) {
102 result.buckets[i] |= other.buckets[i];
132 public boolean bitsEqual(FlagSet other) { argument
[all...]
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLocation.java58 public Location(Location other) { argument
59 startOffset = other.startOffset;
60 endOffset = other.endOffset;
61 startLine = other.startLine;
62 endLine = other.endLine;
152 public boolean contains(Location other) { argument
153 if (startLine > other.startLine) {
156 if (startLine == other.startLine && startOffset > other.startOffset) {
159 if (endLine < other
[all...]
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DNotBindableVo.java70 public String mergeStringFields(NotBindableVo other) { argument
71 return mStringValue + (other == null ? "" : other.mStringValue);
/frameworks/native/libs/input/
H A DInputDevice.cpp140 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) : argument
141 mId(other.mId), mGeneration(other.mGeneration), mControllerNumber(other.mControllerNumber),
142 mIdentifier(other.mIdentifier), mAlias(other.mAlias), mIsExternal(other.mIsExternal),
143 mHasMic(other.mHasMic), mSources(other.mSources),
144 mKeyboardType(other
[all...]
/frameworks/native/libs/vr/libbufferhub/
H A Dion_buffer.cpp52 IonBuffer::IonBuffer(IonBuffer&& other) : IonBuffer() { argument
53 *this = std::move(other);
56 IonBuffer& IonBuffer::operator=(IonBuffer&& other) { argument
57 ALOGD_IF(TRACE, "IonBuffer::operator=: handle_=%p other.handle_=%p", handle(),
58 other.handle());
60 if (this != &other) {
61 buffer_ = other.buffer_;
62 other.FreeHandle();
161 int IonBuffer::Duplicate(const IonBuffer* other) { argument
162 if (!other
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dfile_handle.h45 // other FileHandle object empty.
46 FileHandle(FileHandle&& other) { argument
47 fd_ = other.fd_;
48 other.fd_ = kEmptyFileHandle;
64 // descriptor, leaving the other FileHandle object empty.
65 FileHandle& operator=(FileHandle&& other) { argument
66 if (this != &other) {
67 Reset(other.fd_);
68 other.fd_ = kEmptyFileHandle;
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dbuffer_wrapper.h40 BufferWrapper(const BufferWrapper& other) { *this = other; } argument
42 BufferWrapper(BufferWrapper&& other) { *this = std::move(other); } argument
44 BufferWrapper& operator=(const BufferWrapper& other) { argument
45 if (&other == this) {
48 buffer_ = other.buffer_;
49 capacity_ = other.capacity_;
50 end_ = other.end_;
56 BufferWrapper& operator=(BufferWrapper&& other) { argument
[all...]
H A Dstring_wrapper.h45 StringWrapper(const StringWrapper& other) { *this = other; } argument
47 StringWrapper(StringWrapper&& other) { *this = std::move(other); } argument
49 StringWrapper& operator=(const StringWrapper& other) { argument
50 if (&other == this) {
53 buffer_ = other.buffer_;
54 capacity_ = other.capacity_;
55 end_ = other.end_;
61 StringWrapper& operator=(StringWrapper&& other) { argument
[all...]
/frameworks/native/opengl/libagl/
H A DTokenizer.cpp32 Tokenizer::Tokenizer(const Tokenizer& other) argument
33 : mRanges(other.mRanges)
/frameworks/native/services/sensorservice/
H A DSensorDevice.h122 bool operator != (const BatchParams& other) { argument
123 return !(mTSample == other.mTSample && mTBatch == other.mTBatch);
127 // of the other. the apparent batch is the maximum of mTBatch and mTSample,
128 void merge(const BatchParams &other) { argument
129 mTSample = std::min(mTSample, other.mTSample);
130 mTBatch = std::min(mTBatch, std::max(other.mTBatch, other.mTSample));
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
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/support/compat/java/android/support/v4/os/
H A DLocaleListCompat.java73 public boolean equals(Object other) { argument
74 return mLocaleList.equals(((LocaleListCompat) other).unwrap());
139 public boolean equals(Object other) { argument
140 return mLocaleList.equals(((LocaleListCompat) other).unwrap());
320 * is an indication that the system has set the default locale to one of the user's other
338 public boolean equals(Object other) { argument
339 return IMPL.equals(other);
/frameworks/support/paging/common/src/main/java/android/arch/paging/
H A DNullPaddedList.java97 * @param other Other list to copy.
99 NullPaddedList(NullPaddedList<Type> other) { argument
100 mLeadingNullCount = other.getLeadingNullCount();
101 mList = other.isImmutable() ? other.mList : new ArrayList<>(other.mList);
102 mTrailingNullCount = other.getTrailingNullCount();
104 mNumberPrepended = other.getNumberPrepended();
105 mNumberAppended = other.getNumberAppended();
/frameworks/support/tv-provider/src/android/support/media/tv/
H A DProgram.java134 public boolean equals(Object other) { argument
135 if (!(other instanceof Program)) {
138 return mValues.equals(((Program) other).mValues);
142 * @param other The program you're comparing to.
146 public int compareTo(@NonNull Program other) { argument
148 other.mValues.getAsLong(Programs.COLUMN_START_TIME_UTC_MILLIS));
236 * @param other The Program you're copying from.
238 public Builder(Program other) { argument
239 mValues = new ContentValues(other.mValues);
/frameworks/av/media/libstagefright/webm/
H A DWebmWriter.h105 WebmStream &operator=(const WebmStream &other) { argument
106 mType = other.mType;
107 mName = other.mName;
108 mMakeTrack = other.mMakeTrack;
/frameworks/base/core/java/android/content/
H A DContentValues.java102 * @param other the ContentValues from which to copy
104 public void putAll(ContentValues other) { argument
105 mValues.putAll(other.mValues);
444 * any other types to byte arrays.
H A DSyncStatusInfo.java162 public SyncStatusInfo(SyncStatusInfo other) { argument
163 authorityId = other.authorityId;
164 totalElapsedTime = other.totalElapsedTime;
165 numSyncs = other.numSyncs;
166 numSourcePoll = other.numSourcePoll;
167 numSourceServer = other.numSourceServer;
168 numSourceLocal = other.numSourceLocal;
169 numSourceUser = other.numSourceUser;
170 numSourcePeriodic = other.numSourcePeriodic;
171 lastSuccessTime = other
[all...]
/frameworks/base/core/java/android/hardware/camera2/params/
H A DOutputConfiguration.java341 * <p> If the OutputConfiguration was constructed by other constructors, the added
394 * @param other Another {@link OutputConfiguration} instance to be copied.
398 public OutputConfiguration(@NonNull OutputConfiguration other) { argument
399 if (other == null) {
403 this.mSurfaces = other.mSurfaces;
404 this.mRotation = other.mRotation;
405 this.mSurfaceGroupId = other.mSurfaceGroupId;
406 this.mSurfaceType = other.mSurfaceType;
407 this.mConfiguredDataspace = other.mConfiguredDataspace;
408 this.mConfiguredFormat = other
[all...]

Completed in 646 milliseconds

1234567891011