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

/libcore/ojluni/src/main/java/sun/security/x509/
H A DGeneralSubtree.java37 * minimum [0] BaseDistance DEFAULT 0,
51 private int minimum = MIN_DEFAULT; field in class:GeneralSubtree
60 * @params min the minimum BaseDistance
65 this.minimum = min;
88 minimum = opt.getInteger();
109 * Return the minimum BaseDistance.
111 * @return the minimum BaseDistance. Default is 0 if not set.
114 return minimum;
132 "\n Minimum: " + minimum;
159 if (this.minimum !
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/apache/harmony/kernel/dalvik/
H A DThreadsTest.java237 long minimum = (long) ((double) expectedMillis * 0.80);
243 if (duration < minimum) {
245 " minimum duration: " + minimum +
/libcore/support/src/test/java/libcore/java/security/
H A DStandardNames.java143 private static void provideSslContextEnabledProtocols(String algorithm, TLSVersion minimum, argument
145 if (minimum.ordinal() > maximum.ordinal()) {
146 throw new RuntimeException("TLS version: minimum > maximum");
148 int versionsLength = maximum.ordinal() - minimum.ordinal() + 1;
151 versionNames[i] = TLSVersion.values()[i + minimum.ordinal()].name;
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlParser.java1477 * Returns true once {@code limit - position >= minimum}. If the data is
1481 private boolean fillBuffer(int minimum) throws IOException, XmlPullParserException { argument
1488 if (limit - position >= minimum) {
1518 if (limit >= minimum) {
/libcore/
H A DJavaLibrary.mk105 # For now it represents the minimum sdk version required for invoke-polymorphic.
/libcore/ojluni/src/main/java/java/time/format/
H A DDateTimeFormatterBuilder.java469 * In strict parsing mode, the minimum number of parsed digits is {@code minWidth}
471 * In lenient parsing mode, the minimum number of parsed digits is one
474 * If this method is invoked with equal minimum and maximum widths and a sign style of
479 * @param minWidth the minimum field width of the printed field, from 1 to 19
493 throw new IllegalArgumentException("The minimum width must be from 1 to 19 inclusive but was " + minWidth);
499 throw new IllegalArgumentException("The maximum width must exceed or equal the minimum width but " +
666 * minimum width to zero will cause no output to be generated.
667 * The printed fraction will have the minimum width necessary between
668 * the minimum and maximum widths - trailing zeroes are omitted.
672 * the minimum an
[all...]

Completed in 515 milliseconds