Searched defs:other (Results 26 - 50 of 260) sorted by relevance

1234567891011

/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/content/
H A DPeriodicSync.java64 public PeriodicSync(PeriodicSync other) { argument
65 this.account = other.account;
66 this.authority = other.authority;
67 this.extras = new Bundle(other.extras);
68 this.period = other.period;
69 this.flexTime = other.flexTime;
127 final PeriodicSync other = (PeriodicSync) o;
128 return account.equals(other.account)
129 && authority.equals(other.authority)
130 && period == other
[all...]
/frameworks/base/core/java/android/content/pm/
H A DVerifierDeviceIdentity.java194 public boolean equals(Object other) { argument
195 if (!(other instanceof VerifierDeviceIdentity)) {
199 final VerifierDeviceIdentity o = (VerifierDeviceIdentity) other;
/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/android/net/
H A DUidRange.java56 * @return {@code true} if this range contains every UID contained by the {@param other} range.
58 public boolean containsRange(UidRange other) { argument
59 return start <= other.start && other.stop <= stop;
76 UidRange other = (UidRange) o;
77 return start == other.start && stop == other.stop;
/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/base/core/java/android/view/
H A DMagnificationSpec.java65 public static MagnificationSpec obtain(MagnificationSpec other) { argument
67 info.scale = other.scale;
68 info.offsetX = other.offsetX;
69 info.offsetY = other.offsetY;
89 public void setTo(MagnificationSpec other) { argument
90 scale = other.scale;
91 offsetX = other.offsetX;
92 offsetY = other.offsetY;
109 public boolean equals(Object other) { argument
110 if (this == other) {
[all...]
H A DWindowInfo.java64 public static WindowInfo obtain(WindowInfo other) { argument
66 window.type = other.type;
67 window.layer = other.layer;
68 window.token = other.token;
69 window.parentToken = other.parentToken;
70 window.activityToken = other.activityToken;
71 window.focused = other.focused;
72 window.boundsInScreen.set(other.boundsInScreen);
73 window.title = other.title;
74 window.accessibilityIdOfAnchor = other
[all...]
/frameworks/base/core/java/com/android/internal/inputmethod/
H A DLocaleUtils.java129 public int compareTo(final ScoreEntry other) { argument
130 return -1 * compare(mScore, other.mScore); // Order by descending order.
/frameworks/base/libs/hwui/
H A DProfileData.cpp86 void ProfileData::mergeWith(const ProfileData& other) { argument
92 for (size_t i = 0; i < other.mJankTypeCounts.size(); i++) {
94 mJankTypeCounts[i] += other.mJankTypeCounts[i];
96 for (size_t i = 0; i < other.mFrameCounts.size(); i++) {
98 mFrameCounts[i] += other.mFrameCounts[i];
101 mJankFrameCount += other.mJankFrameCount;
103 mTotalFrameCount += other.mTotalFrameCount;
104 if (mStatStartTime > other.mStatStartTime
106 mStatStartTime = other.mStatStartTime;
/frameworks/base/libs/hwui/utils/
H A DFatVector.h11 * documentation and/or other materials provided with the distribution.
58 InlineStdAllocator(const InlineStdAllocator& other) argument
59 : mAllocation(other.mAllocation) {}
/frameworks/base/media/java/android/media/
H A DMediaRouterClientState.java110 public RouteInfo(RouteInfo other) { argument
111 id = other.id;
112 name = other.name;
113 description = other.description;
114 supportedTypes = other.supportedTypes;
115 enabled = other.enabled;
116 statusCode = other.statusCode;
117 playbackType = other.playbackType;
118 playbackStream = other.playbackStream;
119 volume = other
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/job/
H A DMockPriorityJobService.java89 public boolean equals(Object other) { argument
90 if (other instanceof Event) {
91 Event otherEvent = (Event) other;
/frameworks/base/telecomm/java/android/telecom/
H A DPhoneAccountHandle.java83 * collide with values generated on other phones or after a data wipe of a given phone.
119 public boolean equals(Object other) { argument
120 return other != null &&
121 other instanceof PhoneAccountHandle &&
122 Objects.equals(((PhoneAccountHandle) other).getComponentName(),
124 Objects.equals(((PhoneAccountHandle) other).getId(), getId()) &&
125 Objects.equals(((PhoneAccountHandle) other).getUserHandle(), getUserHandle());
H A DStatusHints.java140 public boolean equals(Object other) { argument
141 if (other != null && other instanceof StatusHints) {
142 StatusHints otherHints = (StatusHints) other;
/frameworks/base/telephony/java/android/telephony/
H A DCellInfoCdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoCdma o = (CellInfoCdma) other;
H A DCellInfoGsm.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoGsm o = (CellInfoGsm) other;
H A DCellInfoLte.java77 public boolean equals(Object other) { argument
78 if (!super.equals(other)) {
82 CellInfoLte o = (CellInfoLte) other;
H A DCellInfoWcdma.java73 public boolean equals(Object other) { argument
74 if (!super.equals(other)) {
78 CellInfoWcdma o = (CellInfoWcdma) other;
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h91 uint8_t other() const { function in class:mcld::LDSymbol
93 return m_pResolveInfo->other();
98 return m_pResolveInfo->other();
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp71 ResolveInfo::Visibility other = ResolveInfo::Default; local
74 name, isDyn, type, desc, binding, size, other, NULL, result1);
83 EXPECT_EQ(other, result1.info->visibility());
87 name, isDyn, type, desc, binding, size, other, NULL, result2);
96 EXPECT_EQ(other, result1.info->visibility());
108 ResolveInfo::Visibility other = ResolveInfo::Default; local
111 name, isDyn, type, desc, binding, size, other, NULL, result1);
120 EXPECT_EQ(other, result1.info->visibility());
124 name, isDyn, type, desc, binding, size, other, NULL, result2);
135 other,
150 uint8_t other = 0; local
176 uint8_t other = 0; local
[all...]
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DDependency.java29 public Dependency(Expr dependant, Expr other) { argument
31 mOther = other;
37 public Dependency(Expr dependant, Expr other, Expr condition, boolean expectedOutput) { argument
39 mOther = other;
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DCallbackBindingObject.java53 boolean onClickWithParam(NotBindableVo other); argument
54 boolean onClickWithParam(View view, NotBindableVo other); argument
55 boolean onLongClickWithParam(NotBindableVo other); argument
56 boolean onLongClickWithParam(View view, NotBindableVo other); argument
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DSize.java105 public Size(Size other) { argument
106 if (other == null) {
109 val = new Point(other.width(), other.height());
116 * @param other The source size.
118 public Size(Camera.Size other) { argument
119 if (other == null) {
122 val = new Point(other.width, other.height);
129 * @param other Th
131 Size(android.util.Size other) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java53 * @param other The reference instance.
55 * @throws NullPointerException If {@code other} is {@code null}.
57 public Camera2RequestSettingsSet(Camera2RequestSettingsSet other) { argument
58 if (other == null) {
62 mDictionary = new HashMap<>(other.mDictionary);
63 mRevision = other.mRevision;

Completed in 3340 milliseconds

1234567891011