Searched refs:hashCode (Results 1 - 25 of 1622) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DOptions.java144 * @see java.lang.Object#hashCode()
146 public int hashCode() method in class:Options
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DMediaConstraints.java73 public int hashCode() { method in class:MediaConstraints.KeyValuePair
74 return key.hashCode() + value.hashCode();
/external/vogar/src/vogar/
H A DOutcome.java168 @Override public int hashCode() { method in class:Outcome
169 int hashCode = 17;
170 hashCode = 37 * hashCode + outcomeName.hashCode();
171 hashCode = 37 * hashCode + result.hashCode();
172 hashCode = 37 * hashCode
[all...]
/external/volley/src/main/java/com/android/volley/
H A DRequest.java185 return host.hashCode();
/external/volley/src/main/java/com/android/volley/toolbox/
H A DDiskBasedCache.java244 String localFilename = String.valueOf(key.substring(0, firstHalfLength).hashCode());
245 localFilename += String.valueOf(key.substring(firstHalfLength).hashCode());
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/testng/ant/3rdparty/
H A Dcobertura.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/sourceforge/ net/sourceforge/cobertura/ net/sourceforge/cobertura/ant/ ...
H A Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data.hdf assets/templates/assets/ ...
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
H A Djarjar-issue-21.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/tonicsystems/ com/tonicsystems/jarjar/ com/tonicsystems/jarjar/AbstractDepHandler ...
/external/testng/src/main/java/org/testng/
H A DReporter.java41 /** The key is the hashCode of the ITestResult */
90 List<Integer> lines = m_methodOutputMap.get(m.hashCode());
93 m_methodOutputMap.put(m.hashCode(), lines);
175 List<Integer> lines = m_methodOutputMap.get(tr.hashCode());
/external/testng/src/main/java/org/testng/internal/
H A DBaseTestMethod.java429 public int hashCode() { method in class:BaseTestMethod
430 return m_method.hashCode();
H A DClassImpl.java199 m_instanceHashCodes[i] = m_instances.get(i).hashCode();
H A DConstructorOrMethod.java46 public int hashCode() { method in class:ConstructorOrMethod
49 result = prime * result + ((getConstructor() == null) ? 0 : getConstructor().hashCode());
50 result = prime * result + ((getMethod() == null) ? 0 : getMethod().hashCode());
H A DGraph.java31 ppp("ADDING NODE " + tm + " " + tm.hashCode());
H A DInvokedMethod.java43 result.append(" ").append(m_instance != null ? m_instance.hashCode() : " <static>");
H A DInvoker.java1712 Utils.log("Invoker " + Thread.currentThread().hashCode(), level, s);
H A DMethodInvocationHelper.java271 Utils.log("Invoker " + Thread.currentThread().hashCode(), 3, "Method " + tm.getMethodName()
/external/testng/src/main/java/org/testng/internal/collections/
H A DPair.java27 public int hashCode() { method in class:Pair
30 result = prime * result + ((first == null) ? 0 : first.hashCode());
31 result = prime * result + ((second == null) ? 0 : second.hashCode());
/external/testng/src/main/java/org/testng/internal/thread/
H A DThreadUtil.java89 return String.valueOf(thread.getName() + "@" + thread.hashCode());
/external/testng/src/main/java/org/testng/junit/
H A DJUnitTestClass.java30 m_instanceHashes = new long[]{test.hashCode()};
/external/testng/src/main/java/org/testng/remote/strprotocol/
H A DTestResultMessage.java293 public int hashCode() { method in class:TestResultMessage
294 int result = (m_suiteName != null ? m_suiteName.hashCode() : 0);
295 result = 29 * result + (m_testName != null ? m_testName.hashCode() : 0);
296 result = 29 * result + m_testClassName.hashCode();
297 result = 29 * result + toDisplayString().hashCode();
/external/testng/src/main/java/org/testng/reporters/
H A DSuiteHTMLReporter.java449 long color = tm.getRealClass() != null ? tm.getRealClass().hashCode() & 0xffffff: 0xffffff;

Completed in 492 milliseconds

1234567891011>>