Searched defs:other (Results 1 - 25 of 87) sorted by relevance

1234

/frameworks/native/libs/utils/tests/
H A DVector_test.cpp41 Vector<int> other; local
51 other = vector;
53 EXPECT_EQ(other.size(), 3);
60 EXPECT_EQ(other.size(), 3);
63 other.add(5);
67 EXPECT_EQ(other.size(), 4);
71 EXPECT_EQ(other[3], 5);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabaseConfiguration.java94 * database and default values for all other parameters.
116 * @param other The other configuration.
118 public SQLiteDatabaseConfiguration(SQLiteDatabaseConfiguration other) { argument
119 if (other == null) {
120 throw new IllegalArgumentException("other must not be null.");
123 this.path = other.path;
124 this.label = other.label;
125 updateParametersFrom(other);
130 * from the other configuratio
134 updateParametersFrom(SQLiteDatabaseConfiguration other) argument
[all...]
/frameworks/base/services/java/com/android/server/power/
H A DDisplayPowerRequest.java29 * have to micro-manage screen off animations, auto-brightness and other effects.
74 public DisplayPowerRequest(DisplayPowerRequest other) { argument
75 copyFrom(other);
78 public void copyFrom(DisplayPowerRequest other) { argument
79 screenState = other.screenState;
80 useProximitySensor = other.useProximitySensor;
81 screenBrightness = other.screenBrightness;
82 screenAutoBrightnessAdjustment = other.screenAutoBrightnessAdjustment;
83 useAutoBrightness = other.useAutoBrightness;
84 blockScreenOn = other
93 equals(DisplayPowerRequest other) argument
[all...]
/frameworks/native/include/utils/
H A DStrongPointer.h67 sp(T* other);
68 sp(const sp<T>& other);
69 template<typename U> sp(U* other);
70 template<typename U> sp(const sp<U>& other);
76 sp& operator = (T* other);
77 sp& operator = (const sp<T>& other);
79 template<typename U> sp& operator = (const sp<U>& other);
80 template<typename U> sp& operator = (U* other);
83 void force_set(T* other);
120 sp<T>::sp(T* other)
140 sp(const sp<U>& other) argument
153 operator =(const sp<T>& other) argument
162 operator =(T* other) argument
171 operator =(const sp<U>& other) argument
181 operator =(U* other) argument
190 force_set(T* other) argument
[all...]
H A DString16.h62 void setTo(const String16& other);
63 status_t setTo(const char16_t* other);
64 status_t setTo(const char16_t* other, size_t len);
65 status_t setTo(const String16& other,
69 status_t append(const String16& other);
70 status_t append(const char16_t* other, size_t len);
72 inline String16& operator=(const String16& other);
74 inline String16& operator+=(const String16& other);
75 inline String16 operator+(const String16& other) const;
94 inline int compare(const String16& other) cons
150 operator =(const String16& other) argument
156 operator +=(const String16& other) argument
[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/hardware/display/
H A DWifiDisplay.java103 public boolean equals(WifiDisplay other) { argument
104 return other != null
105 && mDeviceAddress.equals(other.mDeviceAddress)
106 && mDeviceName.equals(other.mDeviceName)
107 && Objects.equal(mDeviceAlias, other.mDeviceAlias);
/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 DCellIdentityCdma.java146 public boolean equals(Object other) { argument
147 if (super.equals(other)) {
149 CellIdentityCdma o = (CellIdentityCdma)other;
H A DCellIdentityGsm.java131 public boolean equals(Object other) { argument
132 if (super.equals(other)) {
134 CellIdentityGsm o = (CellIdentityGsm)other;
H A DCellIdentityLte.java126 public boolean equals(Object other) { argument
127 if (super.equals(other)) {
129 CellIdentityLte o = (CellIdentityLte)other;
H A DCellInfo.java116 public boolean equals(Object other) { argument
117 if (other == null) {
120 if (this == other) {
124 CellInfo o = (CellInfo) other;
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h76 uint8_t other() const { function in class:mcld::LDSymbol
78 return m_pResolveInfo->other();
83 return m_pResolveInfo->other();
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp77 ResolveInfo::Visibility other = ResolveInfo::Default; local
85 other,
96 EXPECT_EQ(other, result1.info->visibility());
105 other,
116 EXPECT_EQ(other, result1.info->visibility());
128 ResolveInfo::Visibility other = ResolveInfo::Default; local
136 other,
147 EXPECT_EQ(other, result1.info->visibility());
156 other,
169 other,
186 uint8_t other = 0; local
219 uint8_t other = 0; local
[all...]
/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);
428 * any other types to byte arrays.
H A DSyncOperation.java78 SyncOperation(SyncOperation other) { argument
79 this.account = other.account;
80 this.userId = other.userId;
81 this.syncSource = other.syncSource;
82 this.authority = other.authority;
83 this.extras = new Bundle(other.extras);
84 this.expedited = other.expedited;
86 this.backoff = other.backoff;
87 this.delayUntil = other.delayUntil;
88 this.allowParallelSyncs = other
[all...]
/frameworks/base/core/java/android/os/
H A DWorkSource.java99 * @param other The WorkSource to compare against.
102 public boolean diff(WorkSource other) { argument
104 if (N != other.mNum) {
108 final int[] uids2 = other.mUids;
119 * work source. If <var>other</var> is null, the current work source
122 public void set(WorkSource other) { argument
123 if (other == null) {
127 mNum = other.mNum;
128 if (other.mUids != null) {
130 System.arraycopy(other
147 setReturningDiffs(WorkSource other) argument
168 add(WorkSource other) argument
175 addReturningNewbs(WorkSource other) argument
201 remove(WorkSource other) argument
223 updateLocked(WorkSource other, boolean set, boolean returnNewbs) argument
[all...]
/frameworks/base/core/java/android/util/
H A DDisplayMetrics.java44 * density, instead allow the platform to scale from other densities
229 * Returns true if these display metrics equal the other display metrics.
231 * @param other The display metrics with which to compare.
234 public boolean equals(DisplayMetrics other) { argument
235 return other != null
236 && widthPixels == other.widthPixels
237 && heightPixels == other.heightPixels
238 && density == other.density
239 && densityDpi == other.densityDpi
240 && scaledDensity == other
[all...]
/frameworks/base/core/java/android/view/
H A DInputChannel.java54 private native void nativeTransferTo(InputChannel other); argument
79 * dispatcher and the other to the application's input queue.
116 * @param other The other input channel instance.
H A DWindowInfo.java91 public static WindowInfo obtain(WindowInfo other) { argument
93 info.token = other.token;
94 info.frame.set(other.frame);
95 info.touchableRegion.set(other.touchableRegion);
96 info.type = other.type;
97 info.compatibilityScale = other.compatibilityScale;
98 info.visible = other.visible;
99 info.displayId = other.displayId;
100 info.layer = other.layer;
/frameworks/base/libs/androidfw/
H A DInputDevice.cpp133 InputDeviceInfo::InputDeviceInfo(const InputDeviceInfo& other) : argument
134 mId(other.mId), mGeneration(other.mGeneration), mIdentifier(other.mIdentifier),
135 mAlias(other.mAlias), mIsExternal(other.mIsExternal), mSources(other.mSources),
136 mKeyboardType(other.mKeyboardType),
137 mKeyCharacterMap(other.mKeyCharacterMap),
138 mHasVibrator(other
[all...]
/frameworks/base/services/java/com/android/server/display/
H A DDisplayDeviceInfo.java80 * EDID or other sources. The name may be displayed to the user.
166 public boolean equals(DisplayDeviceInfo other) { argument
167 return other != null
168 && Objects.equal(name, other.name)
169 && width == other.width
170 && height == other.height
171 && refreshRate == other.refreshRate
172 && densityDpi == other.densityDpi
173 && xDpi == other.xDpi
174 && yDpi == other
187 copyFrom(DisplayDeviceInfo other) argument
[all...]
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java338 public boolean equals(Object other) { argument
339 if (other == null) return false;
340 if (!(other instanceof ProcessError)) return false;
341 ProcessError peOther = (ProcessError) other;

Completed in 1462 milliseconds

1234