Searched defs:other (Results 126 - 150 of 293) sorted by relevance

1234567891011>>

/frameworks/base/core/java/com/android/server/net/
H A DNetlinkTracker.java59 * - All accesses to mLinkProperties must be synchronized(this). All the other
226 public int compareTo(DnsServerEntry other) { argument
227 return Long.compare(other.expiry, this.expiry);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DRemoteViewsAdapterTest.java360 public boolean filterEquals(Intent other) { argument
/frameworks/base/graphics/java/android/graphics/
H A DRect.java494 public void intersectUnchecked(Rect other) { argument
495 left = Math.max(left, other.left);
496 top = Math.max(top, other.top);
497 right = Math.min(right, other.right);
498 bottom = Math.min(bottom, other.bottom);
617 * the edges are computed separately, and may have crossed over each other.
/frameworks/base/libs/hwui/
H A DRect.h199 /* For other geometry, we do the regular rounding in order to snap, but also outset the
228 void expandToCover(const Rect& other) { argument
229 left = std::min(left, other.left);
230 top = std::min(top, other.top);
231 right = std::max(right, other.right);
232 bottom = std::max(bottom, other.bottom);
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.h11 * documentation and/or other materials provided with the distribution.
120 LinearAllocator(const LinearAllocator& other);
161 LinearStdAllocator(const LinearStdAllocator& other) : linearAllocator(other.linearAllocator) {} argument
167 typedef LinearStdAllocator<U> other; typedef in struct:android::uirenderer::LinearStdAllocator::rebind
169 // enable allocators to be constructed from other templated types
171 LinearStdAllocator(const LinearStdAllocator<U>& other) // NOLINT(implicit) argument
172 : linearAllocator(other.linearAllocator) {}
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipper.java278 public LayoutParams(ViewGroup.LayoutParams other) { argument
279 super(other);
282 public LayoutParams(LayoutParams other) { argument
283 super(other);
285 maxWidth = other.maxWidth;
286 maxHeight = other.maxHeight;
/frameworks/base/services/core/java/com/android/server/display/
H A DDisplayDeviceInfo.java68 * and that no other application should be able to interact with it.
145 * other sources. The name may be localized and displayed to the user.
298 public boolean equals(DisplayDeviceInfo other) { argument
299 return other != null && diff(other) == 0;
304 * Assumes other is not null.
306 public int diff(DisplayDeviceInfo other) { argument
308 if (state != other.state) {
311 if (colorMode != other.colorMode) {
314 if (!Objects.equals(name, other
346 copyFrom(DisplayDeviceInfo other) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DCellIdentityGsm.java203 public boolean equals(Object other) { argument
204 if (this == other) {
208 if (!(other instanceof CellIdentityGsm)) {
212 CellIdentityGsm o = (CellIdentityGsm) other;
219 && super.equals(other);
H A DCellIdentityLte.java205 public boolean equals(Object other) { argument
206 if (this == other) {
210 if (!(other instanceof CellIdentityLte)) {
214 CellIdentityLte o = (CellIdentityLte) other;
222 && super.equals(other);
H A DCellInfo.java169 public boolean equals(Object other) { argument
170 if (other == null) {
173 if (this == other) {
177 CellInfo o = (CellInfo) other;
/frameworks/base/telephony/java/android/telephony/mbms/
H A DDownloadRequest.java98 // Do version checks here -- future versions may have other fields.
112 * @param other The {@link DownloadRequest} from which the data for the {@link Builder}
117 public static Builder fromDownloadRequest(DownloadRequest other) { argument
118 Builder result = new Builder(other.sourceUri, other.destinationUri)
119 .setServiceId(other.fileServiceId)
120 .setSubscriptionId(other.subscriptionId);
121 result.appIntent = other.serializedResultIntentForApp;
/frameworks/base/tests/testables/src/android/testing/
H A DTestableLooper.java237 public LooperFrameworkMethod(TestableLooper other, FrameworkMethod base) { argument
239 mLooper = other.mLooper;
240 mTestableLooper = other;
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h277 typedef LinearAllocator<NewDataType, ChunkSize> other; typedef in struct:mcld::LinearAllocator::rebind
292 typedef LinearAllocator<NewDataType, 0> other; typedef in struct:mcld::LinearAllocator::rebind
317 typedef MallocAllocator<OtherDataType> other; typedef in struct:mcld::MallocAllocator::rebind
362 typedef MallocAllocator<OtherDataType> other; typedef in struct:mcld::MallocAllocator::rebind
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Settings.java138 public AndroidCamera2Settings(AndroidCamera2Settings other) { argument
139 super(other);
140 mTemplateSettings = other.mTemplateSettings;
141 mRequestSettings = new Camera2RequestSettingsSet(other.mRequestSettings);
142 mActiveArray = other.mActiveArray;
143 mCropRectangle = new Rect(other.mCropRectangle);
529 // not use other fields sometimes. Setting processing
530 // method to null means the other fields should not be used.
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Dvariant.h149 Union(const Union& other, std::int32_t index) { argument
151 new (&first_) Type(other.first_);
153 Union(Union&& other, std::int32_t index) { argument
155 new (&first_) Type(std::move(other.first_));
252 Union(const Union& other, std::int32_t index) { argument
254 new (&first_) First(other.first_);
256 new (&rest_) Union<Rest...>(other.rest_, index - 1);
258 Union(Union&& other, std::int32_t index) { argument
260 new (&first_) First(std::move(other.first_));
262 new (&rest_) Union<Rest...>(std::move(other
448 Variant(const Variant& other) argument
450 Variant(Variant&& other) argument
461 Variant(const Variant<OtherTypes...>& other) argument
467 Variant(Variant<OtherTypes...>&& other) argument
471 operator =(const Variant& other) argument
475 operator =(Variant&& other) argument
513 operator =(const Variant<OtherTypes...>& other) argument
518 operator =(Variant<OtherTypes...>&& other) argument
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/
H A Dutility.h22 ByteBuffer(const ByteBuffer& other) { argument
23 resize(other.size());
24 if (other.size())
25 memcpy(data_, other.data(), other.size());
29 ByteBuffer& operator=(const ByteBuffer& other) { argument
30 resize(other.size());
31 if (other.size())
32 memcpy(data_, other.data(), other
36 operator =(ByteBuffer&& other) argument
214 Payload(const Payload& other) argument
220 operator =(const Payload& other) argument
[all...]
/frameworks/native/libs/vr/libpdx/
H A Dvariant_tests.cpp48 InstrumentType(const InstrumentType& other) : value_(other.value_) { argument
51 InstrumentType(InstrumentType&& other) : value_(std::move(other.value_)) { argument
54 InstrumentType(const TestType<T>& other) : value_(other.get()) { argument
57 InstrumentType(TestType<T>&& other) : value_(other.take()) { argument
62 InstrumentType& operator=(const InstrumentType& other) { argument
64 value_ = other
67 operator =(InstrumentType&& other) argument
73 operator =(const TestType<T>& other) argument
78 operator =(TestType<T>&& other) argument
[all...]
/frameworks/native/opengl/libs/EGL/
H A Degl_display.h148 // egl_display_ptr(egl_display_ptr&& other) {
149 // mDpy = other.mDpy;
150 // other.mDpy = NULL;
153 egl_display_ptr(const egl_display_ptr& other): mDpy(other.mDpy) {} argument
/frameworks/native/services/inputflinger/
H A DInputListener.cpp34 const NotifyConfigurationChangedArgs& other) :
35 eventTime(other.eventTime) {
54 NotifyKeyArgs::NotifyKeyArgs(const NotifyKeyArgs& other) : argument
55 eventTime(other.eventTime), deviceId(other.deviceId), source(other.source),
56 policyFlags(other.policyFlags),
57 action(other.action), flags(other.flags),
58 keyCode(other
33 NotifyConfigurationChangedArgs( const NotifyConfigurationChangedArgs& other) argument
88 NotifyMotionArgs(const NotifyMotionArgs& other) argument
115 NotifySwitchArgs(const NotifySwitchArgs& other) argument
131 NotifyDeviceResetArgs(const NotifyDeviceResetArgs& other) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DTransform.cpp36 Transform::Transform(const Transform& other) argument
37 : mMatrix(other.mMatrix), mType(other.mType) {
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneInfo.java247 * Returns a negative integer if this instance is less than the other; a
248 * positive integer if this instance is greater than the other; 0 if this
249 * instance has the same order as the other.
252 public int compareTo(TimeZoneInfo other) { argument
253 if (this.getNowOffsetMillis() != other.getNowOffsetMillis()) {
254 return (other.getNowOffsetMillis() < this.getNowOffsetMillis()) ? -1 : 1;
259 if (other.mCountry != null) {
264 if (other.mCountry == null) {
267 int diff = this.mCountry.compareTo(other.mCountry);
275 if (mDisplayName != null && other
[all...]
/frameworks/support/compat/src/main/java/androidx/core/os/
H A DLocaleListHelper.java108 public boolean equals(Object other) { argument
109 if (other == this) {
112 if (!(other instanceof LocaleListHelper)) {
115 final Locale[] otherList = ((LocaleListHelper) other).mList;
489 * is an indication that the system has set the default locale to one of the user's other
556 * default locale may have been chosen to be a locale other than the first locale in the locale
/frameworks/support/leanback/src/main/java/androidx/leanback/graphics/
H A DCompositeDrawable.java46 CompositeState(CompositeState other, CompositeDrawable parent, Resources res) { argument
47 final int n = other.mChildren.size();
50 mChildren.add(new ChildDrawable(other.mChildren.get(k), parent, res));
/frameworks/support/paging/common/src/main/java/androidx/paging/
H A DPagedStorage.java80 private PagedStorage(PagedStorage<T> other) { argument
81 mLeadingNullCount = other.mLeadingNullCount;
82 mPages = new ArrayList<>(other.mPages);
83 mTrailingNullCount = other.mTrailingNullCount;
84 mPositionOffset = other.mPositionOffset;
85 mStorageCount = other.mStorageCount;
86 mPageSize = other.mPageSize;
87 mNumberPrepended = other.mNumberPrepended;
88 mNumberAppended = other.mNumberAppended;
322 // Trailing nulls for first page includes other page
[all...]
/frameworks/support/preference/src/main/java/androidx/preference/
H A DPreferenceGroupAdapter.java94 PreferenceLayout(PreferenceLayout other) { argument
95 mResId = other.mResId;
96 mWidgetResId = other.mWidgetResId;
97 mName = other.mName;
105 final PreferenceLayout other = (PreferenceLayout) o;
106 return mResId == other.mResId
107 && mWidgetResId == other.mWidgetResId
108 && TextUtils.equals(mName, other.mName);

Completed in 485 milliseconds

1234567891011>>