Searched defs:limits (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/text/
H A DChoiceFormat.java72 * and an array of limits. The length of these arrays must be the same.
76 * <em>limits</em> = {1,2,3,4,5,6,7}<br>
79 * <em>limits</em> = {0, 1, ChoiceFormat.nextDouble(1)}<br>
89 * double[] limits = {1,2,3,4,5,6,7};
91 * ChoiceFormat form = new ChoiceFormat(limits, dayOfWeekNames);
307 * Constructs with limits and corresponding formats based on the pattern.
315 * Constructs with the limits and the corresponding formats.
318 public ChoiceFormat(double[] limits, String[] formats) { argument
319 setChoices(limits, formats);
324 * @param limits contain
336 setChoices(double[] limits, String formats[]) argument
[all...]
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp371 struct rlimit limits; local
372 getrlimit(RLIMIT_DATA, &limits);
373 _physical_memory = MIN2(_physical_memory, (julong)limits.rlim_cur);
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp372 struct rlimit limits; local
373 getrlimit(RLIMIT_STACK, &limits);
374 size = adjust_stack_size(os::Solaris::_main_stack_base, (size_t)limits.rlim_cur);
1524 struct rlimit limits;
1525 getrlimit(RLIMIT_STACK, &limits);
1526 size_t size = adjust_stack_size(base, (size_t)limits.rlim_cur);

Completed in 55 milliseconds