Searched refs:diff (Results 1 - 6 of 6) sorted by relevance

/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java314 private String diff = null; field in class:TestCertUtils.TestCertificate
328 public TestCertificate(String diff) { argument
330 this.diff = diff;
335 * diff. Leave the <code>diff</code> null when no difference needed.
337 * @param diff
340 public TestCertificate(String diff, String type) { argument
342 this.diff = diff;
[all...]
/libcore/luni/src/main/java/java/util/
H A DUUID.java422 int diff = 16 - msbStr.length();
423 for (int i = 0; i < diff; i++) {
433 int diff = 16 - lsbStr.length();
434 for (int i = 0; i < diff; i++) {
/libcore/luni/src/main/java/java/util/zip/
H A DZipInputStream.java165 int diff = entryIn - inB;
167 if (diff != 0) {
168 ((PushbackInputStream) in).unread(buf, len - diff, diff);
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DSSLSessionTest.java101 long diff = currentTime - sessionTime;
102 assertTrue("diff between " + currentTime + " and " + sessionTime + " should be < 10000",
103 diff < 10000);
123 long diff = currentTime - sessionTime;
124 assertTrue("diff between " + currentTime + " and " + sessionTime + " should be < 10000",
125 diff < 10000);
126 assertTrue ("diff should be < 10000 but is " + diff, diff < 10000);
/libcore/luni/src/main/java/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java217 long diff = time - x.time;
218 if (diff < 0)
220 else if (diff > 0)
227 long diff = (getDelay(NANOSECONDS) -
229 return (diff < 0) ? -1 : (diff > 0) ? 1 : 0;
/libcore/luni/src/main/java/java/lang/
H A DAbstractStringBuilder.java412 int diff = end - start - stringLength;
413 if (diff > 0) { // replacing with fewer characters
427 } else if (diff < 0) {
429 move(-diff, end);
435 count -= diff;

Completed in 195 milliseconds