Searched refs:before (Results 1 - 25 of 36) sorted by relevance

12

/dalvik/vm/mterp/armv5te/
H A DOP_MONITOR_EXIT.S13 EXPORT_PC() @ before fetch: export the PC
20 FETCH_ADVANCE_INST(1) @ before throw: advance rPC, load rINST
25 FETCH_ADVANCE_INST(1) @ advance before throw
H A DOP_CHECK_CAST.S21 cmp r1, #0 @ have we resolved this before?
H A DOP_INSTANCE_OF.S26 cmp r1, #0 @ have we resolved this before?
/dalvik/vm/mterp/x86/
H A DOP_MONITOR_EXIT.S34 ADVANCE_PC(1) # advance before throw
H A DOP_CHECK_CAST.S22 testl %eax,%eax # have we resolved this before?
H A DOP_INSTANCE_OF.S27 testl %ecx,%ecx # have we resolved this before?
/dalvik/vm/mterp/x86-atom/
H A DOP_MONITOR_EXIT.S42 FINISH_FETCH_ADVANCE 1, %edx # advance pc before exception
H A DOP_CONST_CLASS.S39 cmp $$0, %eax # check if classes is resolved before?
H A DOP_CHECK_CAST.S40 cmp $$0, %ecx # check if classes is resolved before?
H A DOP_INSTANCE_OF.S49 je .L${opcode}_resolve # not resolved before, so resolve now
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/
H A DProcessManagerTest.java227 int before = countLines(process);
237 assertEquals(before, after);
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DObjectTest.java530 long before = System.currentTimeMillis();
533 long error = (after - before - delay);
537 // Allow jit to warm up before testing
540 toLong[count][1] = before;
550 sb.append(", before: ");
H A DRuntimeTest.java119 long before = r.totalMemory() - r.freeMemory();
127 after != before);
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DDateTest.java184 * @tests java.util.Date#before(java.util.Date)
189 method = "before",
193 // Test for method boolean java.util.Date.before(java.util.Date)
196 assertTrue("Older was returned as newer", !d2.before(d1));
197 assertTrue("Newer was returned as older", d1.before(d2));
200 d1.before(null);
707 * is called before a test is executed.
H A DCalendarTest.java673 method = "before",
687 assertFalse(mc.before(mcBefore));
688 assertTrue(mc.before(mcAfter));
689 assertFalse(mc.before(mcSame));
690 assertFalse(mc.before(mc));
691 assertFalse(mc.before(new String()));
/dalvik/libcore/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTimestampTest.java64 static long TIME_EARLY = -2347889122L;// A time well before the Epoch
659 * Method test for before
664 method = "before",
673 assertTrue(theTimestamp.before(theTest));
681 assertFalse(theTimestamp.before(theTest));
688 assertFalse(theTimestamp.before(theTest));
690 assertTrue(theTimestamp.before(theTest));
/dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java144 Integer before = (Integer) table.get(key);
145 table.put(key, new Integer(before.intValue() + 1));
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
H A DX509V2AttributeCertificate.java141 if (date.before(this.getNotBefore()))
H A DPKIXCertPathReviewer.java2000 || new Date().before(crl.getNextUpdate()))
2033 || new Date().before(onlineCRL.getNextUpdate()))
2122 if (!validDate.before(crl_entry.getRevocationDate()))
2144 if (crl.getNextUpdate() != null && crl.getNextUpdate().before(new Date()))
/dalvik/libcore/sql/src/main/java/java/sql/
H A DTimestamp.java150 public boolean before(Timestamp theTimestamp) { method in class:Timestamp
185 * a value {@code < 0} if this {@code Timestamp} object is before
212 * <li>{@code < 0}, if this {@code Timestamp} object is before the
330 * negative, since then the time value is the time before the Epoch but
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DLogRecordTest.java452 long before = lr.getMillis();
460 assertTrue(after-before>0);
/dalvik/libcore/luni/src/main/java/java/util/
H A DCalendar.java90 * designate the week before week 1 of a year as week <em>n</em> of the
181 * before the call to {@code getTime()} sets the calendar to September
193 * call minus the value of field {@code f} before the call is
490 * define the value of {@code WEEK_OF_YEAR} for days before the first
503 * define the value of {@code WEEK_OF_MONTH} for days before the
565 * {@code DAY_OF_WEEK_IN_MONTH 0} indicates the week before
581 * whether the {@code HOUR} is before or after noon. E.g., at
649 * from midnight to just before noon.
655 * from noon to just before midnight.
731 * Returns whether the {@code Date} specified by this {@code Calendar} instance is before th
742 public boolean before(Object calendar) { method in class:Calendar
[all...]
H A DDate.java173 * Returns if this {@code Date} is before the specified Date.
177 * @return {@code true} if this {@code Date} is before the specified {@code Date},
180 public boolean before(Date date) { method in class:Date
H A DCollections.java533 * that JREs before 1.4 can deserialize this object without any
685 * compliance with JREs before 1.4.
1070 * so that JREs before 1.4 can deserialize this object without any
1189 * compliance with JREs before 1.4.
1411 public SortedMap<K, V> headMap(K before) { argument
1412 return new UnmodifiableSortedMap<K, V>(sm.headMap(before));
1447 public SortedSet<E> headSet(E before) { argument
1448 return new UnmodifiableSortedSet<E>(ss.headSet(before));
2224 // at the position before index.
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DX509CertificateObject.java92 if (date.before(this.getNotBefore()))

Completed in 399 milliseconds

12