HomeSort by relevance Sort by last modified time
    Searched defs:Normalizer (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/test/java/libcore/java/text/
NormalizerTest.java 19 import java.text.Normalizer;
26 assertEquals(src, Normalizer.normalize(src, Normalizer.Form.NFC));
30 Normalizer.normalize(src, Normalizer.Form.NFD));
33 assertEquals("\u038e\u03ab\u1e61", Normalizer.normalize(src, Normalizer.Form.NFKC));
37 Normalizer.normalize(src, Normalizer.Form.NFKD));
40 assertEquals("\u00e9", Normalizer.normalize("\u0065\u0301", Normalizer.Form.NFC))
    [all...]
  /libcore/luni/src/main/java/java/text/
Normalizer.java 29 public final class Normalizer {
31 * The normalization forms supported by the Normalizer. These are specified in
81 private Normalizer() {}
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
NormalizerTest.java 20 import java.text.Normalizer;
21 import java.text.Normalizer.Form;
27 * @tests java.text.Normalizer.Form#values()
39 * @tests java.text.Normalizer.Form#valueOf(String)
77 * @tests java.text.Normalizer#isNormalized(CharSequence, Form)
81 assertTrue(Normalizer.isNormalized(src, Form.NFC));
82 assertFalse(Normalizer.isNormalized(src, Form.NFD));
83 assertTrue(Normalizer.isNormalized(src, Form.NFKC));
84 assertFalse(Normalizer.isNormalized(src, Form.NFKD));
87 assertFalse(Normalizer.isNormalized(src, Form.NFC))
    [all...]
  /external/icu4c/common/unicode/
normlzr.h 29 * The Normalizer class supports the standard normalization forms described in
35 * There is one exception: The new API does not provide a replacement for Normalizer::compare().
37 * The Normalizer class consists of two parts:
39 * - a Normalizer object is an iterator that takes any kind of text and
42 * The Normalizer class is not suitable for subclassing.
47 * The iterator API with the Normalizer constructors and the non-static functions
56 * A possible use of the Normalizer iterator is also to report an index into the
63 * Normalizer allows to start normalizing from anywhere in the input text by
99 * Internally, the Normalizer iterator normalizes a small piece of text
125 * It is for this reason that Normalizer does not implement the CharacterIterator interface
    [all...]
urename.h     [all...]
  /external/icu4c/common/
normlzr.cpp 25 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(Normalizer)
31 Normalizer::Normalizer(const UnicodeString& str, UNormalizationMode mode) :
40 Normalizer::Normalizer(const UChar *str, int32_t length, UNormalizationMode mode) :
49 Normalizer::Normalizer(const CharacterIterator& iter, UNormalizationMode mode) :
58 Normalizer::Normalizer(const Normalizer &copy)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /external/webkit/Source/JavaScriptCore/icu/unicode/
urename.h     [all...]
  /external/webkit/Source/JavaScriptGlue/icu/unicode/
urename.h     [all...]
  /external/webkit/Source/WebCore/icu/unicode/
urename.h     [all...]
  /external/webkit/Source/WebKit/mac/icu/unicode/
urename.h     [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/9/
android.jar 

Completed in 510 milliseconds