HomeSort by relevance Sort by last modified time
    Searched refs:Form (Results 1 - 13 of 13) sorted by null

  /libcore/luni/src/test/java/libcore/java/text/
NormalizerTest.java 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));
43 assertEquals("\u1e69", Normalizer.normalize("\u1e9b\u0323", Normalizer.Form.NFKC));
46 Normalizer.normalize(null, Normalizer.Form.NFC);
57 assertTrue(Normalizer.isNormalized(target, Normalizer.Form.NFC));
58 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFD));
59 assertFalse(Normalizer.isNormalized(target, Normalizer.Form.NFKC))
    [all...]
  /libcore/luni/src/main/java/java/text/
Normalizer.java 35 public static enum Form {
37 * Normalization Form D - Canonical Decomposition.
42 * Normalization Form C - Canonical Decomposition, followed by Canonical Composition.
47 * Normalization Form KD - Compatibility Decomposition.
52 * Normalization Form KC - Compatibility Decomposition, followed by Canonical Composition.
59 * according to the normalization method <code>form</code>.
62 * @param form normalization form to check against
63 * @return true if normalized according to <code>form</code>
65 public static boolean isNormalized(CharSequence src, Form form)
    [all...]
  /libcore/luni/src/main/java/libcore/icu/
NativeNormalizer.java 19 import java.text.Normalizer.Form;
22 public static boolean isNormalized(CharSequence src, Form form) {
23 return isNormalizedImpl(src.toString(), toUNormalizationMode(form));
26 public static String normalize(CharSequence src, Form form) {
27 return normalizeImpl(src.toString(), toUNormalizationMode(form));
30 private static int toUNormalizationMode(Form form) {
33 switch (form) {
    [all...]
  /external/chromium/net/data/proxy_resolver_v8_unittest/
passthrough.js 13 // Form a string that kind-of resembles a host. We will replace any
  /external/webkit/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 29 document.createElement('form')['__proto__']
1173 contentType: 'application/x-www-form-urlencoded',
    [all...]
concat-jquery-mootools-prototype.js 1002 if( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) )
    [all...]
  /external/tcpdump/
print-snmp.c 12 * 2. Redistributions in binary form must reproduce the above copyright
248 const char *Form[] = {
341 u_char form, class; /* tag info */ member in struct:be
408 u_char form, class, id; local
428 form = (*p & 0xe0) >> 5; /* move upper 3 bits to lower 3 */
429 class = form >> 1; /* bits 7&6 -> bits 1&0, range 0-3 */
430 form &= 0x1; /* bit 5 -> bit 0, range 0-1 */
432 form = (u_char)(*p & ASN_FORM_BITS) >> ASN_FORM_SHIFT;
435 elem->form = form;
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
ApplicationsState.java 27 import java.text.Normalizer.Form;
65 String tmp = Normalizer.normalize(str, Form.NFD);
  /external/libvpx/examples/includes/PHP-Markdown-Extra-1.2.3/
markdown.php 353 # Link defs are in the form: ^[id]: url "optional title"
404 'script|noscript|form|fieldset|iframe|math';
561 # These are all the transformations that form block-level
596 # Finally form paragraph and restore hashed blocks.
942 # Form HTML ordered (numbered) and unordered (bulleted) lists.
    [all...]
  /external/e2fsprogs/lib/et/
texinfo.tex 61 %of it, under Paragraph 2) in object code or executable form under the terms
77 % received the program in object code or executable form alone.)
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9/
string-unpack-code.js     [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
string-unpack-code.js     [all...]
  /external/grub/docs/
texinfo.tex 151 \ifx\putwordDefspec\undefined \gdef\putwordDefspec{Special Form}\fi
    [all...]

Completed in 276 milliseconds