Searched refs:other (Results 1 - 25 of 525) sorted by relevance

1234567891011>>

/frameworks/av/camera/include/camera/camera2/
H A DOutputConfiguration.h69 bool operator == (const OutputConfiguration& other) const {
70 return ( mRotation == other.mRotation &&
71 mSurfaceSetID == other.mSurfaceSetID &&
72 mSurfaceType == other.mSurfaceType &&
73 mWidth == other.mWidth &&
74 mHeight == other.mHeight &&
75 mIsDeferred == other.mIsDeferred &&
76 mIsShared == other.mIsShared &&
77 gbpsEqual(other));
79 bool operator != (const OutputConfiguration& other) cons
[all...]
/frameworks/av/include/camera/camera2/
H A DOutputConfiguration.h69 bool operator == (const OutputConfiguration& other) const {
70 return ( mRotation == other.mRotation &&
71 mSurfaceSetID == other.mSurfaceSetID &&
72 mSurfaceType == other.mSurfaceType &&
73 mWidth == other.mWidth &&
74 mHeight == other.mHeight &&
75 mIsDeferred == other.mIsDeferred &&
76 mIsShared == other.mIsShared &&
77 gbpsEqual(other));
79 bool operator != (const OutputConfiguration& other) cons
[all...]
/frameworks/av/camera/ndk/impl/
H A DACaptureRequest.h27 bool operator == (const ACameraOutputTarget& other) const {
28 return mWindow == other.mWindow;
30 bool operator != (const ACameraOutputTarget& other) const {
31 return mWindow != other.mWindow;
33 bool operator < (const ACameraOutputTarget& other) const {
34 return mWindow < other.mWindow;
36 bool operator > (const ACameraOutputTarget& other) const {
37 return mWindow > other.mWindow;
H A DACameraCaptureSession.h29 bool operator == (const ACaptureSessionOutput& other) const {
30 return mWindow == other.mWindow;
32 bool operator != (const ACaptureSessionOutput& other) const {
33 return mWindow != other.mWindow;
35 bool operator < (const ACaptureSessionOutput& other) const {
36 return mWindow < other.mWindow;
38 bool operator > (const ACaptureSessionOutput& other) const {
39 return mWindow > other.mWindow;
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabaseConfiguration.java115 * database and default values for all other parameters.
137 * @param other The other configuration.
139 public SQLiteDatabaseConfiguration(SQLiteDatabaseConfiguration other) { argument
140 if (other == null) {
141 throw new IllegalArgumentException("other must not be null.");
144 this.path = other.path;
145 this.label = other.label;
146 updateParametersFrom(other);
151 * from the other configuratio
155 updateParametersFrom(SQLiteDatabaseConfiguration other) argument
[all...]
/frameworks/base/core/java/com/android/internal/os/
H A DBatterySipper.java143 public int compareTo(BatterySipper other) { argument
145 if (drainType != other.drainType) {
149 } else if (other.drainType == DrainType.OVERCOUNTED) {
154 return Double.compare(other.totalPowerMah, totalPowerMah);
173 * Add stats from other to this BatterySipper.
175 public void add(BatterySipper other) { argument
176 totalPowerMah += other.totalPowerMah;
177 usageTimeMs += other.usageTimeMs;
178 usagePowerMah += other.usagePowerMah;
179 cpuTimeMs += other
[all...]
/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.
293 public boolean equals(DisplayDeviceInfo other) { argument
294 return other != null && diff(other) == 0;
299 * Assumes other is not null.
301 public int diff(DisplayDeviceInfo other) { argument
303 if (state != other.state) {
306 if (colorMode != other.colorMode) {
309 if (!Objects.equal(name, other
340 copyFrom(DisplayDeviceInfo other) argument
[all...]
/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
/frameworks/native/include/input/
H A DDisplayViewport.h51 bool operator==(const DisplayViewport& other) const {
52 return displayId == other.displayId
53 && orientation == other.orientation
54 && logicalLeft == other.logicalLeft
55 && logicalTop == other.logicalTop
56 && logicalRight == other.logicalRight
57 && logicalBottom == other.logicalBottom
58 && physicalLeft == other.physicalLeft
59 && physicalTop == other.physicalTop
60 && physicalRight == other
[all...]
/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/base/core/java/android/hardware/display/
H A DDisplayManagerInternal.java127 * may choose to make the physical display mirror some other logical display.
184 * have to micro-manage screen off animations, auto-brightness and other effects.
259 public DisplayPowerRequest(DisplayPowerRequest other) { argument
260 copyFrom(other);
271 public void copyFrom(DisplayPowerRequest other) { argument
272 policy = other.policy;
273 useProximitySensor = other.useProximitySensor;
274 screenBrightness = other.screenBrightness;
275 screenAutoBrightnessAdjustment = other.screenAutoBrightnessAdjustment;
276 screenLowPowerBrightnessFactor = other
292 equals(DisplayPowerRequest 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...]
/frameworks/av/media/libmedia/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...]
/frameworks/base/core/java/android/util/
H A DDisplayMetrics.java44 * density, instead allow the platform to scale from other densities
314 * Returns true if these display metrics equal the other display metrics.
316 * @param other The display metrics with which to compare.
319 public boolean equals(DisplayMetrics other) { argument
320 return equalsPhysical(other)
321 && scaledDensity == other.scaledDensity
322 && noncompatScaledDensity == other.noncompatScaledDensity;
330 * @param other The display metrics with which to compare.
334 public boolean equalsPhysical(DisplayMetrics other) { argument
335 return other !
[all...]
/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
86 NotifyMotionArgs(const NotifyMotionArgs& other) argument
112 NotifySwitchArgs(const NotifySwitchArgs& other) argument
128 NotifyDeviceResetArgs(const NotifyDeviceResetArgs& other) argument
[all...]
/frameworks/native/libs/vr/libpdx/private/pdx/rpc/
H A Darray_wrapper.h40 ArrayWrapper(const ArrayWrapper& other) { *this = other; } argument
42 ArrayWrapper(ArrayWrapper&& other) { *this = std::move(other); } argument
44 ArrayWrapper& operator=(const ArrayWrapper& other) { argument
45 if (&other == this) {
48 buffer_ = other.buffer_;
49 capacity_ = other.capacity_;
50 end_ = other.end_;
56 ArrayWrapper& operator=(ArrayWrapper&& other) { argument
[all...]
/frameworks/base/core/java/android/accounts/
H A DAccountAndUser.java36 final AccountAndUser other = (AccountAndUser) o;
37 return this.account.equals(other.account)
38 && this.userId == other.userId;
/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/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/native/libs/vr/libpdx/private/pdx/
H A Dchannel_handle.h53 ChannelHandle(ChannelHandle&& other) : ChannelHandleBase{other.value_} { argument
54 other.value_ = kEmptyHandle;
60 ChannelHandle& operator=(ChannelHandle&& other) { argument
61 value_ = other.value_;
62 other.value_ = kEmptyHandle;
77 ChannelHandle(ChannelHandle&& other) argument
78 : ChannelHandleBase{other.value_}, manager_{other.manager_} {
79 other
83 operator =(ChannelHandle&& other) argument
[all...]
/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/base/core/java/android/os/
H A DBatteryProperties.java40 public void set(BatteryProperties other) { argument
41 chargerAcOnline = other.chargerAcOnline;
42 chargerUsbOnline = other.chargerUsbOnline;
43 chargerWirelessOnline = other.chargerWirelessOnline;
44 maxChargingCurrent = other.maxChargingCurrent;
45 maxChargingVoltage = other.maxChargingVoltage;
46 batteryStatus = other.batteryStatus;
47 batteryHealth = other.batteryHealth;
48 batteryPresent = other.batteryPresent;
49 batteryLevel = other
[all...]
/frameworks/av/media/libaaudio/examples/input_monitor/jni/
H A DApplication.mk1 # TODO remove then when we support other architectures
/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/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;

Completed in 703 milliseconds

1234567891011>>