Searched defs:form (Results 1 - 5 of 5) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DNormalizer.java43 * text into an equivalent composed or decomposed form, allowing for easier
52 * In Unicode, this can be encoded as a single character (the "composed" form):
58 * or as two separate characters (the "decomposed" form):
160 * @param form The normalization form; one of
166 * @throws NullPointerException If <code>src</code> or <code>form</code>
169 public static String normalize(CharSequence src, Form form) { argument
170 return android.icu.text.Normalizer.normalize(src.toString(), form.icuMode);
177 * @param form The normalization form; on
187 isNormalized(CharSequence src, Form form) argument
[all...]
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerOutputStream.java42 * in the form of a byte array; there is no advance limit on the size of
112 * explicit tagging the form is always constructed.
161 * @param i the integer in the form of a BigInteger.
172 * @param i the integer in the form of an Integer.
555 * @params form if true, the value is constructed, otherwise it is
559 public void putTag(byte tagClass, boolean form, byte val) { argument
561 if (form) {
H A DDerValue.java76 * The original encoded form of the whole value (tag, length, and value)
77 * or null if the form was not provided or was not retained during parsing.
280 // indefinite form is encoded by sending a length field with a
838 * Returns the original encoded form or {@code null} if the form was not
926 * @params form if true, the value is constructed, otherwise it
930 public static byte createTag(byte tagClass, boolean form, byte val) { argument
932 if (form) {
/libcore/ojluni/src/main/java/sun/misc/
H A DFormattedFloatingDecimal.java49 private Form form; field in class:FormattedFloatingDecimal
51 private FormattedFloatingDecimal( boolean negSign, int decExponent, char []digits, int n, boolean e, int precision, Form form )
59 this.form = form;
472 public FormattedFloatingDecimal( double d, int precision, Form form )
480 this.form = form;
539 public FormattedFloatingDecimal( float f, int precision, Form form )
547 this.form = form;
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DFormatter.java551 * <td> The result should use a conversion-dependent alternate form
761 * <td> Requires the output use an alternate form. The definition of the
762 * form is specified by the conversion.
1265 * form. No localization is applied.
3753 public BigDecimalLayout(BigInteger intVal, int scale, BigDecimalLayoutForm form) { argument
3754 layout(intVal, scale, form);
3793 private void layout(BigInteger intVal, int scale, BigDecimalLayoutForm form) { argument
3808 if (form == BigDecimalLayoutForm.SCIENTIFIC) {
3822 if (form == BigDecimalLayoutForm.SCIENTIFIC)
3828 if (form
[all...]

Completed in 168 milliseconds