Searched refs:form (Results 1 – 6 of 6) sorted by relevance
/libcore/luni/src/main/java/libcore/icu/ |
D | NativeNormalizer.java | 22 public static boolean isNormalized(CharSequence src, Form form) { in isNormalized() argument 23 return isNormalizedImpl(src.toString(), toUNormalizationMode(form)); in isNormalized() 26 public static String normalize(CharSequence src, Form form) { in normalize() argument 27 return normalizeImpl(src.toString(), toUNormalizationMode(form)); in normalize() 30 private static int toUNormalizationMode(Form form) { in toUNormalizationMode() argument 33 switch (form) { in toUNormalizationMode() 39 throw new AssertionError("unknown Normalizer.Form " + form); in toUNormalizationMode() 42 private static native String normalizeImpl(String src, int form); in normalizeImpl() argument 44 private static native boolean isNormalizedImpl(String src, int form); in isNormalizedImpl() argument
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | DecimalFormatTest.java | 63 DecimalFormat form = (DecimalFormat) DecimalFormat.getInstance(Locale.US); in test_parse_bigDecimal() local 64 assertFalse(form.isParseBigDecimal()); in test_parse_bigDecimal() 65 form.setParseBigDecimal(true); in test_parse_bigDecimal() 66 assertTrue(form.isParseBigDecimal()); in test_parse_bigDecimal() 68 Number result = form.parse("123.123"); in test_parse_bigDecimal() 71 form.setParseBigDecimal(false); in test_parse_bigDecimal() 72 assertFalse(form.isParseBigDecimal()); in test_parse_bigDecimal() 74 result = form.parse("123.123"); in test_parse_bigDecimal() 95 DecimalFormat form = (DecimalFormat) NumberFormat.getInstance(Locale.US); in test_parse_returnType() local 96 Number number = form.parse("23.1", new ParsePosition(0)); in test_parse_returnType() [all …]
|
/libcore/luni/src/main/java/java/text/ |
D | Normalizer.java | 65 public static boolean isNormalized(CharSequence src, Form form) { in isNormalized() argument 66 return NativeNormalizer.isNormalized(src, form); in isNormalized() 77 public static String normalize(CharSequence src, Form form) { in normalize() argument 78 return NativeNormalizer.normalize(src, form); in normalize()
|
/libcore/benchmarks/libs/ |
D | caliper.jar.txt | 27 "Source" form shall mean the preferred form for making modifications, 31 "Object" form shall mean any form resulting from mechanical 32 transformation or translation of a Source form, including but 37 Object form, made available under the License, as indicated by a 42 form, that is based on (or derived from) the Work and for which the 55 means any form of electronic, verbal, or written communication sent 72 Work and such Derivative Works in Source or Object form. 92 modifications, and in Source or Object form, provided that You 101 (c) You must retain, in the Source form of any Derivative Works 103 attribution notices from the Source form of the Work, [all …]
|
/libcore/support/src/test/java/tests/resources/x509/ |
D | default.cnf | 13 # 2. Redistributions in binary form must reproduce the above copyright 32 # 6. Redistributions of any form whatsoever must retain the following
|
/libcore/expectations/ |
D | knownfailures.txt | 1417 …description: "java.util.logging: the serialized form references org.apache not com.android.org.apa… 1440 …description: "java.util.beans: the serialized form references org.apache not com.android.org.apach…
|