OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:otherIcon
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/graphics/java/android/graphics/drawable/
Icon.java
468
* @param
otherIcon
the other icon
472
public boolean sameAs(Icon
otherIcon
) {
473
if (
otherIcon
== this) {
476
if (mType !=
otherIcon
.getType()) {
481
return getBitmap() ==
otherIcon
.getBitmap();
483
return getDataLength() ==
otherIcon
.getDataLength()
484
&& getDataOffset() ==
otherIcon
.getDataOffset()
485
&& getDataBytes() ==
otherIcon
.getDataBytes();
487
return getResId() ==
otherIcon
.getResId()
488
&& Objects.equals(getResPackage(),
otherIcon
.getResPackage())
[
all
...]
/frameworks/base/core/java/android/view/
PointerIcon.java
384
PointerIcon
otherIcon
= (PointerIcon) other;
385
if (mType !=
otherIcon
.mType
386
|| mSystemIconResourceId !=
otherIcon
.mSystemIconResourceId) {
390
if (mSystemIconResourceId == 0 && (mBitmap !=
otherIcon
.mBitmap
391
|| mHotSpotX !=
otherIcon
.mHotSpotX
392
|| mHotSpotY !=
otherIcon
.mHotSpotY)) {
Completed in 141 milliseconds