Searched refs:identityHashCode (Results 1 - 19 of 19) sorted by relevance

/external/guava/guava/src/com/google/common/base/
H A DEquivalences.java54 * System#identityHashCode(Object)} to compute the hash code. {@link Equivalence#equivalent}
89 return System.identityHashCode(o);
/external/jmdns/src/javax/jmdns/impl/
H A DNetworkTopologyEventImpl.java63 buf.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this) + " ");
H A DServiceEventImpl.java91 buf.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this) + " ");
H A DDNSEntry.java279 aLog.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this));
H A DServiceInfoImpl.java1151 buf.append("[" + this.getClass().getSimpleName() + "@" + System.identityHashCode(this) + " ");
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DExtensionRegistryLite.java158 return System.identityHashCode(object) * ((1 << 16) - 1) + number;
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DSystemTest.java246 * @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());
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DBasicBlock.java134 return System.identityHashCode(this);
H A DInsn.java91 return System.identityHashCode(this);
/external/easymock/src/org/easymock/internal/
H A DObjectMethodsFilter.java67 return Integer.valueOf(System.identityHashCode(proxy));
/external/guava/guava/src/com/google/common/collect/
H A DOrdering.java195 * {@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) { method in class:Ordering.ArbitraryOrdering
251 return System.identityHashCode(object);
/external/emma/core/java12/com/vladium/emma/rt/
H A DRT.java218 if (DEBUG) System.out.println ("RT[" + System.identityHashCode (RT.class) + "]::<clinit>: loaded by " + RT.class.getClassLoader ());
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvInsn.java327 return Hex.u4(System.identityHashCode(this));
/external/emma/core/java12/com/vladium/util/
H A DSoftValueMap.java414 out.append (getClass ().getName ().concat ("@").concat (Integer.toHexString (System.identityHashCode (this)))); out.append (EOL);
/external/apache-http/src/org/apache/commons/logging/
H A DLogFactory.java1707 return o.getClass().getName() + "@" + System.identityHashCode(o);
/external/apache-http/src/org/apache/commons/logging/impl/
H A DLogFactoryImpl.java484 diagnosticPrefix = "[LogFactoryImpl@" + System.identityHashCode(this) + " from " + classLoaderName + "] ";
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
H A DBaseTreeAdaptor.as11 /** System.identityHashCode() is not always unique; we have to
/external/guava/guava-tests/test/com/google/common/collect/
H A DOrderingTest.java180 @Override int identityHashCode(Object object) {
/external/dexmaker/src/test/java/com/google/dexmaker/
H A DDexMakerTest.java256 assertEquals(System.identityHashCode(instance), method.invoke(instance));

Completed in 366 milliseconds