OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:identityHashCode
(Results
1 - 25
of
164
) sorted by null
1
2
3
4
5
6
7
/external/mockito/src/org/mockito/internal/util/collections/
HashCodeAndEqualsMockWrapper.java
20
* <li>For hashCode : <strong>use {@link System#
identityHashCode
}</strong></li>
51
return System.
identityHashCode
(mockInstance);
66
return mockInstance.getClass().getSimpleName() + "(" + System.
identityHashCode
(mockInstance) + ")";
/frameworks/base/core/tests/coretests/src/android/app/activity/
TestedScreen.java
41
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
48
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
54
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
70
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
87
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
103
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
120
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
/frameworks/base/services/java/com/android/server/pm/
BasePermission.java
56
return "BasePermission{" + Integer.toHexString(System.
identityHashCode
(this)) + " " + name
PackageSetting.java
53
+ Integer.toHexString(System.
identityHashCode
(this))
SharedUserSetting.java
44
return "SharedUserSetting{" + Integer.toHexString(System.
identityHashCode
(this)) + " "
/frameworks/support/v4/java/android/support/v4/util/
DebugUtils.java
41
out.append(Integer.toHexString(System.
identityHashCode
(cls)));
/frameworks/base/core/java/android/content/pm/
FeatureInfo.java
70
+ Integer.toHexString(System.
identityHashCode
(this))
74
+ Integer.toHexString(System.
identityHashCode
(this))
ConfigurationInfo.java
96
+ Integer.toHexString(System.
identityHashCode
(this))
PackageInfoLite.java
56
+ Integer.toHexString(System.
identityHashCode
(this))
PermissionGroupInfo.java
98
+ Integer.toHexString(System.
identityHashCode
(this))
ServiceInfo.java
84
+ Integer.toHexString(System.
identityHashCode
(this))
/external/guava/guava/src/com/google/common/base/
Equivalences.java
54
* System#
identityHashCode
(Object)} to compute the hash code. {@link Equivalence#equivalent}
89
return System.
identityHashCode
(o);
/external/jmdns/src/javax/jmdns/impl/
NetworkTopologyEventImpl.java
63
buf.append("[" + this.getClass().getSimpleName() + "@" + System.
identityHashCode
(this) + " ");
ServiceEventImpl.java
91
buf.append("[" + this.getClass().getSimpleName() + "@" + System.
identityHashCode
(this) + " ");
/frameworks/base/services/java/com/android/server/am/
BackupRecord.java
52
.append(Integer.toHexString(System.
identityHashCode
(this)))
ReceiverList.java
63
return System.
identityHashCode
(this);
90
pw.print(Integer.toHexString(System.
identityHashCode
(bf)));
102
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
112
sb.append(Integer.toHexString(System.
identityHashCode
(receiver.asBinder())));
ConnectionRecord.java
64
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
106
sb.append(Integer.toHexString(System.
identityHashCode
(conn.asBinder())));
IntentBindRecord.java
69
pw.print(Integer.toHexString(System.
identityHashCode
(a)));
99
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
AppBindRecord.java
60
+ Integer.toHexString(System.
identityHashCode
(this))
BroadcastFilter.java
66
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
/libcore/libart/src/main/java/java/lang/
Object.java
270
return System.
identityHashCode
(this);
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java
174
return System.
identityHashCode
(object) * ((1 << 16) - 1) + number;
/external/protobuf/java/src/main/java/com/google/protobuf/
ExtensionRegistryLite.java
158
return System.
identityHashCode
(object) * ((1 << 16) - 1) + number;
/frameworks/base/core/java/android/content/res/
ObbInfo.java
65
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
/frameworks/base/services/java/com/android/server/wm/
WindowToken.java
97
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
Completed in 362 milliseconds
1
2
3
4
5
6
7