HomeSort by relevance Sort by last modified time
    Searched refs:normalize (Results 1 - 25 of 182) sorted by null

1 2 3 4 5 6 7 8

  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
NameNormalizerTest.java 36 final String name1 = NameNormalizer.normalize("Helene");
37 final String name2 = NameNormalizer.normalize("Francesca");
42 final String name1 = NameNormalizer.normalize("Helene");
43 final String name2 = NameNormalizer.normalize("H\u00e9l\u00e8ne");
48 final String name1 = NameNormalizer.normalize("Helene");
49 final String name2 = NameNormalizer.normalize("hELENE");
54 final String name1 = NameNormalizer.normalize("h-e?l e+n=e");
55 final String name2 = NameNormalizer.normalize("helene");
NameDistanceTest.java 67 byte[] s1 = Hex.decodeHex(NameNormalizer.normalize(name1));
68 byte[] s2 = Hex.decodeHex(NameNormalizer.normalize(name2));
  /libcore/luni/src/main/java/java/text/
Normalizer.java 70 * Normalize the character sequence <code>src</code> according to the
77 public static String normalize(CharSequence src, Form form) { method in class:Normalizer
78 return NativeNormalizer.normalize(src, form);
  /build/core/combo/
HOST_darwin-x86.mk 65 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
66 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
67 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
80 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
82 $(call normalize-target-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
83 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
TARGET_linux-x86.mk 115 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
117 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
118 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
135 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
138 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
154 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
TARGET_linux-arm.mk 237 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
239 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
240 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
257 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
260 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
277 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
TARGET_linux-sh.mk 123 $(call normalize-host-libraries,$(PRIVATE_ALL_WHOLE_STATIC_LIBRARIES)) \
125 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
126 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
142 $(call normalize-target-libraries,$(PRIVATE_ALL_SHARED_LIBRARIES)) \
145 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
160 $(call normalize-target-libraries,$(PRIVATE_ALL_STATIC_LIBRARIES)) \
  /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);
  /external/icu4c/common/unicode/
normalizer2.h 117 normalize(const UnicodeString &src, UErrorCode &errorCode) const { function in class:Normalizer2
119 normalize(src, result, errorCode);
136 normalize(const UnicodeString &src,
337 normalize(const UnicodeString &src,
461 normalize(const UnicodeString &src,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinIMEUtil.java 107 private int normalize(int in) { method in class:LatinIMEUtil.RingCharBuffer
116 mEnd = normalize(mEnd + 1);
125 mEnd = normalize(mEnd - 1);
134 return mCharBuf[normalize(mEnd - 1)];
138 int index = normalize(mEnd - 2 - back);
147 int index = normalize(mEnd - 2 - back);
158 char c = mCharBuf[normalize(mEnd - 1 - i)];
  /external/webkit/WebCore/platform/graphics/
FloatPoint3D.cpp 51 void FloatPoint3D::normalize() function in class:WebCore::FloatPoint3D
FloatPoint3D.h 44 void normalize();
  /external/webkit/WebCore/svg/
SVGFESpotLightElement.cpp 46 direction.normalize();
  /libcore/luni/src/main/java/libcore/icu/
NativeNormalizer.java 26 public static String normalize(CharSequence src, Form form) { method in class:NativeNormalizer
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
elementnormalize.java 31 * The "normalize()" method puts all the nodes in the full
73 root.normalize();
cdatasectionnormalize.java 32 * use of the "normalize()" method from the Element interface.
34 * the "normalize()" method. The Element under contains
36 * by the "normalize()" method.
72 lChild.normalize();
hc_attrnormalize.java 78 ((Element) /*Node */testNode).normalize(); method
hc_elementnormalize.java 31 * Append a couple of text nodes to the first sup element, normalize the
75 root.normalize();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
hc_nodedocumentfragmentnormalize2.java 68 docFragment.normalize();
  /frameworks/base/core/java/android/gesture/
Instance.java 50 private void normalize() { method in class:Instance
78 instance.normalize();
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 16 * Create a document fragment with two adjacent text nodes, normalize and see if
82 docFragment.normalize();
104 docFragment.normalize();
  /external/icu4c/common/
filterednormalizer2.cpp 30 FilteredNormalizer2::normalize(const UnicodeString &src, function in class:FilteredNormalizer2
43 return normalize(src, dest, USET_SPAN_SIMPLE, errorCode);
54 FilteredNormalizer2::normalize(const UnicodeString &src, function in class:FilteredNormalizer2
71 dest.append(norm2.normalize(src.tempSubStringBetween(prevSpanLimit, spanLimit),
114 return normalize(second, first, errorCode);
143 normalize(rest, first, USET_SPAN_NOT_CONTAINED, errorCode);
  /external/icu4c/test/intltest/
tstnrapi.cpp 138 Normalizer::normalize(s, UNORM_NONE, 0, out, status);
140 errln("error in Normalizer::normalize(UNORM_NONE)");
145 Normalizer::normalize(s, UNORM_NFD, 0, s, status);
147 dataerrln("error in Normalizer::normalize(UNORM_NFD, self)");
149 Normalizer::normalize(s, UNORM_NFC, 0, s, status);
151 dataerrln("error in Normalizer::normalize(UNORM_NFC, self)");
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
ElementType.java 200 if (!type.equals("CDATA")) value = normalize(value);
205 if (!type.equals("CDATA")) value=normalize(value);
211 Normalize an attribute value (ID-style).
213 @param value The value to normalize
216 public static String normalize(String value) { method in class:ElementType
  /libcore/luni/src/main/java/javax/xml/datatype/
XMLGregorianCalendar.java 645 * <p>Normalize this instance to UTC.</p>
652 public abstract XMLGregorianCalendar normalize(); method in class:XMLGregorianCalendar
690 gc = this.normalize();
    [all...]

Completed in 2106 milliseconds

1 2 3 4 5 6 7 8