Searched defs:before (Results 26 - 32 of 32) sorted by relevance

12

/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInjectBytecodes.java49 private final Injector[] before = new Injector[256]; field in class:InjectBytecodes
116 before[code] = inj;
223 inj = before[opcode];
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultListSelectionModel.java146 /* Change the values before sending the event to the
202 /* Change the values before sending the event to the
589 * Insert length indices beginning before/after index. If the value
596 public void insertIndexInterval(int index, int length, boolean before) argument
601 int insMinIndex = (before) ? index : index + 1;
605 * index-1 if before is true, index+1 if it's false (i.e. with
621 if (leadIndex > index || (before && leadIndex == index)) {
625 if (anchorIndex > index || (before && anchorIndex == index)) {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java156 /* Change the values before sending the event to the
398 * Insert length indices beginning before/after index. If the value
404 public void insertIndexInterval(int index, int length, boolean before) argument
409 int insMinIndex = (before) ? index : index + 1;
413 * index-1 if before is true, index+1 if it's false (i.e. with
/openjdk7/hotspot/src/share/vm/opto/
H A DindexSet.hpp138 uint32 before = words()[word_index]; local
139 words()[word_index] = before | bit;
140 return ((before & bit) != 0);
148 uint32 before = words()[word_index]; local
149 words()[word_index] = before & ~bit;
150 return ((before & bit) != 0);
319 // cleared before the union is performed.
/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp64 st->print_cr("GC heap %s", m.is_before ? "before" : "after");
68 void GCHeapLog::log_heap(bool before) { argument
78 _records[index].data.is_before = before;
80 if (before) {
324 // so long as the card-mark is completed before the next
332 // used to card-mark the entire region either just before the next
333 // slow-path allocation by this thread or just before the next scavenge or
437 HandleMark hm; // Free handles before leaving.
444 HandleMark hm; // Free handles before leaving.
484 // The main thread starts allocating via a TLAB even before i
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java85 void wrap(String before, String after, String text) { argument
86 beginTag(before);
/openjdk7/jdk/src/share/classes/java/util/
H A DCalendar.java141 * designate the week before week 1 of a year as week <code><i>n</i></code> of
230 * call to <code>set(Calendar.DAY_OF_MONTH, 30)</code> before the call to
240 * after the call minus the value of field <code>f</code> before the
406 * the value of <code>WEEK_OF_YEAR</code> for days before the first week of
419 * the value of <code>WEEK_OF_MONTH</code> for days before the first week of
478 * <code>DAY_OF_WEEK_IN_MONTH 0</code> indicates the week before
494 * whether the <code>HOUR</code> is before or after noon.
695 * period of the day from midnight to just before noon.
701 * period of the day from noon to just before midnight.
1213 // fields before changin
1953 public boolean before(Object when) { method in class:Calendar
[all...]

Completed in 126 milliseconds

12