OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:identityHashCode
(Results
26 - 50
of
135
) sorted by null
1
2
3
4
5
6
/frameworks/base/services/java/com/android/server/wm/
WindowToken.java
98
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/util/
ArrayUtils.java
107
int bucket = ((System.
identityHashCode
(kind) / 8) & 0x7FFFFFFF) % CACHE_SIZE;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
SystemTest.java
246
* @tests java.lang.System#
identityHashCode
(java.lang.Object)
250
// java.lang.System.
identityHashCode
(java.lang.Object)
254
0, System.
identityHashCode
(null));
256
.
identityHashCode
(o) == o.hashCode());
258
.
identityHashCode
(s) != s.hashCode());
/frameworks/base/core/tests/coretests/src/android/app/activity/
LaunchpadActivity.java
173
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
204
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
219
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
326
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
334
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
367
+ Integer.toHexString(System.
identityHashCode
(this)) + ": " + getIntent());
/dalvik/dexgen/src/com/android/dexgen/rop/code/
BasicBlock.java
134
return System.
identityHashCode
(this);
/dalvik/dx/src/com/android/dx/rop/code/
BasicBlock.java
134
return System.
identityHashCode
(this);
Insn.java
91
return System.
identityHashCode
(this);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
BasicBlock.java
134
return System.
identityHashCode
(this);
Insn.java
91
return System.
identityHashCode
(this);
/external/easymock/src/org/easymock/internal/
ObjectMethodsFilter.java
67
return Integer.valueOf(System.
identityHashCode
(proxy));
/external/guava/guava/src/com/google/common/collect/
Ordering.java
195
* {@link System#
identityHashCode
(Object)}, so its behavior cannot be
224
int leftCode =
identityHashCode
(left);
225
int rightCode =
identityHashCode
(right);
230
//
identityHashCode
collision (rare, but not as rare as you'd think)
243
* We need to be able to mock
identityHashCode
() calls for tests, because it
250
int
identityHashCode
(Object object) {
251
return System.
identityHashCode
(object);
/frameworks/base/core/java/android/content/pm/
PermissionInfo.java
197
+ Integer.toHexString(System.
identityHashCode
(this))
PackageInfo.java
226
+ Integer.toHexString(System.
identityHashCode
(this))
PackageStats.java
84
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
/frameworks/base/core/java/android/os/
Looper.java
279
return "Looper{" + Integer.toHexString(System.
identityHashCode
(this)) + "}";
PowerManager.java
820
+ Integer.toHexString(System.
identityHashCode
(this))
/frameworks/base/services/java/com/android/server/am/
UriPermission.java
77
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
ContentProviderRecord.java
202
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
216
sb.append(Integer.toHexString(System.
identityHashCode
(this)));
ServiceRecord.java
147
.append(Integer.toHexString(System.
identityHashCode
(sr)))
150
.append(Integer.toHexString(System.
identityHashCode
(this)))
263
pw.print(Integer.toHexString(System.
identityHashCode
(b)));
427
.append(Integer.toHexString(System.
identityHashCode
(this)))
/libcore/luni/src/main/java/java/io/
SerializationHandleMap.java
92
return (System.
identityHashCode
(key) & 0x7FFFFFFF) % length;
/frameworks/base/services/java/com/android/server/pm/
PackageSignatures.java
192
buf.append(Integer.toHexString(System.
identityHashCode
(this)));
198
System.
identityHashCode
(mSignatures[i])));
/external/emma/core/java12/com/vladium/emma/rt/
RT.java
218
if (DEBUG) System.out.println ("RT[" + System.
identityHashCode
(RT.class) + "]::<clinit>: loaded by " + RT.class.getClassLoader ());
/frameworks/base/core/java/android/view/
DragEvent.java
441
return "DragEvent{" + Integer.toHexString(System.
identityHashCode
(this))
/frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java
106
int bucket = ((System.
identityHashCode
(kind) / 8) & 0x7FFFFFFF) % CACHE_SIZE;
/libcore/luni/src/main/java/java/util/concurrent/
ForkJoinTask.java
408
int h = System.
identityHashCode
(this);
433
int h = System.
identityHashCode
(this);
477
int h = System.
identityHashCode
(this);
525
int i = System.
identityHashCode
(key) & (t.length - 1);
[
all
...]
Completed in 632 milliseconds
1
2
3
4
5
6