Searched refs:other (Results 251 - 275 of 409) sorted by relevance

<<11121314151617

/frameworks/av/services/audiopolicy/common/managerdefinitions/include/
H A DAudioSession.h54 bool matches(const sp<AudioSession> &other) const;
/frameworks/av/services/audiopolicy/common/managerdefinitions/src/
H A DDeviceDescriptor.cpp49 bool DeviceDescriptor::equals(const sp<DeviceDescriptor>& other) const
54 if (other == 0) {
57 return (mDeviceType == other->mDeviceType) && (mAddress == other->mAddress);
/frameworks/base/core/java/android/net/
H A DNetworkTemplate.java231 final NetworkTemplate other = (NetworkTemplate) obj;
232 return mMatchRule == other.mMatchRule
233 && Objects.equals(mSubscriberId, other.mSubscriberId)
234 && Objects.equals(mNetworkId, other.mNetworkId);
445 * for key purposes, and expand the template to match all other merged
/frameworks/base/core/java/android/view/
H A DInputChannel.java54 private native void nativeTransferTo(InputChannel other); argument
80 * dispatcher and the other to the application's input queue.
119 * @param other The other input channel instance.
H A DKeyEvent.java60 * Ice Cream Sandwich or earlier. Be aware that other software input methods may
433 * This key alters the behavior of other keys on the numeric keypad. */
498 * On TV remotes, toggles picture-in-picture mode or other windowing functions. */
643 * devices or game controllers, especially if no other input mode is
1577 public static KeyEvent obtain(KeyEvent other) { argument
1579 ev.mDownTime = other.mDownTime;
1580 ev.mEventTime = other.mEventTime;
1581 ev.mAction = other.mAction;
1582 ev.mKeyCode = other.mKeyCode;
1583 ev.mRepeatCount = other
[all...]
H A DPointerIcon.java375 public boolean equals(Object other) { argument
376 if (this == other) {
380 if (other == null || !(other instanceof PointerIcon)) {
384 PointerIcon otherIcon = (PointerIcon) 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/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/native/services/surfaceflinger/
H A DTransform.h40 Transform(const Transform& other);
/frameworks/base/core/java/android/content/
H A DComponentName.java288 ComponentName other = (ComponentName)obj;
291 return mPackage.equals(other.mPackage)
292 && mClass.equals(other.mClass);
/frameworks/base/core/java/android/content/pm/
H A DSignature.java207 Signature other = (Signature)obj;
208 return this == other || Arrays.equals(mSignature, other.mSignature);
/frameworks/base/core/java/android/printservice/
H A DPrintServiceInfo.java285 PrintServiceInfo other = (PrintServiceInfo) obj;
287 if (other.mId != null) {
290 } else if (!mId.equals(other.mId)) {
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
H A DAccessPoint.java173 public int compareTo(@NonNull AccessPoint other) { argument
175 if (isActive() && !other.isActive()) return -1;
176 if (!isActive() && other.isActive()) return 1;
179 if (mRssi != Integer.MAX_VALUE && other.mRssi == Integer.MAX_VALUE) return -1;
180 if (mRssi == Integer.MAX_VALUE && other.mRssi != Integer.MAX_VALUE) return 1;
184 && other.networkId == WifiConfiguration.INVALID_NETWORK_ID) return -1;
186 && other.networkId != WifiConfiguration.INVALID_NETWORK_ID) return 1;
189 int difference = WifiManager.calculateSignalLevel(other.mRssi, SIGNAL_LEVELS)
195 return ssid.compareToIgnoreCase(other.ssid);
199 public boolean equals(Object other) { argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DIntentTile.java215 final PackageDrawableIcon other = (PackageDrawableIcon) o;
216 return Objects.equals(other.mPackage, mPackage) && other.mResId == mResId;
/frameworks/base/test-runner/src/android/test/suitebuilder/
H A DTestGrouping.java96 TestGrouping other = (TestGrouping) o;
97 if (!this.testCaseClasses.equals(other.testCaseClasses)) {
100 return this.testCaseClasses.comparator().equals(other.testCaseClasses.comparator());
/frameworks/native/include/input/
H A DKeyCharacterMap.h41 * Also specifies other functions of the keyboard such as the keyboard type
149 Behavior(const Behavior& other);
169 Key(const Key& other);
234 KeyCharacterMap(const KeyCharacterMap& other);
/frameworks/support/compat/java/android/support/v4/view/
H A DWindowInsetsCompat.java283 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
296 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
309 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
322 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
335 * partially or fully obscured by the status bar, navigation bar, IME or other system windows.
513 WindowInsetsCompat other = (WindowInsetsCompat) o;
514 return mInsets == null ? other.mInsets == null : mInsets.equals(other.mInsets);
/frameworks/support/compat/java/android/support/v4/view/accessibility/
H A DAccessibilityWindowInfoCompat.java432 * @param info The other info.
467 AccessibilityWindowInfoCompat other = (AccessibilityWindowInfoCompat) obj;
469 if (other.mInfo != null) {
472 } else if (!mInfo.equals(other.mInfo)) {
/frameworks/volley/src/main/java/com/android/volley/
H A DRequest.java573 public int compareTo(Request<T> other) { argument
575 Priority right = other.getPriority();
580 this.mSequence - other.mSequence :
/frameworks/base/services/net/java/android/net/ip/
H A DRouterAdvertisementDaemon.java133 public RaParams(RaParams other) { argument
134 hasDefaultRoute = other.hasDefaultRoute;
135 mtu = other.mtu;
136 prefixes = (HashSet) other.prefixes.clone();
137 dnses = (HashSet) other.dnses.clone();
/frameworks/base/core/java/android/widget/
H A DActivityChooserModel.java68 * views is used for sharing but the other for importing, for example, then each
845 HistoricalRecord other = (HistoricalRecord) obj;
847 if (other.activity != null) {
850 } else if (!activity.equals(other.activity)) {
853 if (time != other.time) {
856 if (Float.floatToIntBits(weight) != Float.floatToIntBits(other.weight)) {
914 ActivityResolveInfo other = (ActivityResolveInfo) obj;
915 if (Float.floatToIntBits(weight) != Float.floatToIntBits(other.weight)) {
/frameworks/base/services/core/java/com/android/server/am/
H A DRecentTasks.java219 * Removes recent tasks and any other state kept in memory for the passed in user. Does not
563 TaskRecord other = task.mNextAffiliate;
564 if (other == null) {
565 other = task.mPrevAffiliate;
567 if (other != null) {
568 int otherIndex = indexOf(other);
572 if (other == task.mNextAffiliate) {
596 "addRecent: couldn't find other affiliation " + other);
719 // There is still a slim chance that there are other task
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActivityChooserModel.java63 * views is used for sharing but the other for importing, for example, then each
821 HistoricalRecord other = (HistoricalRecord) obj;
823 if (other.activity != null) {
826 } else if (!activity.equals(other.activity)) {
829 if (time != other.time) {
832 if (Float.floatToIntBits(weight) != Float.floatToIntBits(other.weight)) {
890 ActivityResolveInfo other = (ActivityResolveInfo) obj;
891 if (Float.floatToIntBits(weight) != Float.floatToIntBits(other.weight)) {
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java896 // typically coupled to some other runtime state (like a band).
1061 // The band selection model only operates on documents and directories. Exclude other
1780 public int compareTo(Limits other) { argument
1781 return lowerLimit - other.lowerLimit;
1785 public boolean equals(Object other) { argument
1786 if (!(other instanceof Limits)) {
1790 return ((Limits) other).lowerLimit == lowerLimit &&
1791 ((Limits) other).upperLimit == upperLimit;
1907 public boolean equals(Object other) { argument
1908 if (!(other instanceo
1917 compareTo(RelativeCoordinate other) argument
1936 equals(Object other) argument
[all...]
/frameworks/native/opengl/libagl/
H A Dlight.cpp767 GLfixed* other=0; local
775 other = c->lighting.front.diffuse.v;
789 if (other) {
790 other[0] = what[0];
791 other[1] = what[1];
792 other[2] = what[2];
793 other[3] = what[3];
807 GLfixed* other=0; local
815 other = c->lighting.front.diffuse.v;
829 if (other) {
[all...]

Completed in 811 milliseconds

<<11121314151617