Searched defs:form (Results 1 - 6 of 6) 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):
57 * or as two separate characters (the "decomposed" form):
156 * @param form The normalization form; one of
162 * @throws NullPointerException If <code>src</code> or <code>form</code>
165 public static String normalize(CharSequence src, Form form) { argument
167 return android.icu.text.Normalizer.normalize(src.toString(), form.icuMode);
173 * @param form The normalization form; on
183 isNormalized(CharSequence src, Form form) argument
[all...]
/libcore/ojluni/src/main/java/sun/misc/
H A DFormattedFloatingDecimal.java35 public static FormattedFloatingDecimal valueOf(double d, int precision, Form form){ argument
37 FloatingDecimal.getBinaryToASCIIConverter(d, form == Form.COMPATIBLE);
38 return new FormattedFloatingDecimal(precision,form, fdConverter);
57 private FormattedFloatingDecimal(int precision, Form form, FloatingDecimal.BinaryToASCIIConverter fdConverter) { argument
68 switch (form) {
89 // form = Form.SCIENTIFIC;
93 // form = Form.DECIMAL_FLOAT;
/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.java75 // BEGIN Android-added: Original encoded form needed for APKs parsing/validation
77 * The original encoded form of the whole value (tag, length, and value)
78 * or null if the form was not provided or was not retained during parsing.
81 // END Android-added: Original encoded form needed for APKs parsing/validation
254 // BEGIN Android-changed: Original encoded form needed for APKs parsing/validation
283 // indefinite form is encoded by sending a length field with a
300 // END Android-changed: Original encoded form needed for APKs parsing/validation
841 // BEGIN Android-added: Original encoded form needed for APKs parsing/validation
843 * Returns the original encoded form or {@code null} if the form wa
936 createTag(byte tagClass, boolean form, byte val) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodType.java98 private @Stable MethodTypeForm form; // erased form, plus cached data about primitives field in class:MethodType
126 /*trusted*/ MethodTypeForm form() { return form; } method in class:MethodType
131 // good reason to allow the form to be set externally.
133 // void setForm(MethodTypeForm f) { form = f; }
313 mt.form = MethodTypeForm.findForm(mt);
597 return form.hasPrimitives();
618 return form.erasedType();
628 return form
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DFormatter.java560 * <td> The result should use a conversion-dependent alternate form
769 * <td> Requires the output use an alternate form. The definition of the
770 * form is specified by the conversion.
1273 * form. No localization is applied.
3785 public BigDecimalLayout(BigInteger intVal, int scale, BigDecimalLayoutForm form) { argument
3786 layout(intVal, scale, form);
3825 private void layout(BigInteger intVal, int scale, BigDecimalLayoutForm form) { argument
3840 if (form == BigDecimalLayoutForm.SCIENTIFIC) {
3854 if (form == BigDecimalLayoutForm.SCIENTIFIC)
3860 if (form
[all...]

Completed in 97 milliseconds