Searched refs:normalize (Results 1 - 25 of 26) sorted by relevance

12

/libcore/luni/src/main/java/java/text/
H A DNormalizer.java77 public static String normalize(CharSequence src, Form form) { method in class:Normalizer
78 return NativeNormalizer.normalize(src, form);
/libcore/luni/src/test/java/libcore/java/text/
H A DNormalizerTest.java26 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);
/libcore/luni/src/main/java/libcore/icu/
H A DNativeNormalizer.java26 public static String normalize(CharSequence src, Form form) { method in class:NativeNormalizer
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Delementnormalize.java31 * The "normalize()" method puts all the nodes in the full
73 root.normalize();
H A Dcdatasectionnormalize.java32 * 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();
H A Dhc_attrnormalize.java78 ((Element) /*Node */testNode).normalize();
H A Dhc_elementnormalize.java31 * Append a couple of text nodes to the first sup element, normalize the
75 root.normalize();
H A Dhc_elementnormalize2.java31 * Add an empty text node to an existing attribute node, normalize the containing element
76 element.normalize();
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Dhc_nodedocumentfragmentnormalize2.java68 docFragment.normalize();
H A Dhc_nodedocumentfragmentnormalize1.java31 * Create a document fragment with two adjacent text nodes, normalize and see if the text nodes
70 docFragment.normalize();
H A Dnormalize01.java34 * The "normalize()" method puts all the nodes in the full
45 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize</a>
79 root.normalize();
H A Dnodenormalize01.java34 * The method "normalize" puts all Text nodes in the full depth of the sub-tree underneath
41 * before and after normalize has been called.
44 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize</a>
162 newDoc.normalize();
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DHCNodeDocumentFragmentNormalize.java11 * Create a document fragment with two adjacent text nodes, normalize and see if
62 docFragment.normalize();
78 docFragment.normalize();
H A DNormalize.java34 * The "normalize()" method puts all the nodes in the full
45 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize</a>
84 root.normalize();
H A DNodeNormalize.java39 * The method "normalize" puts all Text nodes in the full depth of the sub-tree
47 * the length of the node list of each before and after normalize has been
53 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-normalize</a>
180 newDoc.normalize();
/libcore/luni/src/main/java/javax/xml/datatype/
H A DXMLGregorianCalendar.java652 public abstract XMLGregorianCalendar normalize(); method in class:XMLGregorianCalendar
690 gc = this.normalize();
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeNormalizer.cpp30 Normalizer::normalize(src.unicodeString(), mode, 0, dst, status);
31 maybeThrowIcuException(env, "Normalizer::normalize", status);
/libcore/luni/src/main/java/org/apache/harmony/security/utils/
H A DAlgNameMapper.java190 return ObjectIdentifier.isOID(normalize(alias));
199 public static String normalize(String oid) { method in class:AlgNameMapper
/libcore/luni/src/main/java/org/w3c/dom/
H A DNode.java450 * be used. If the parameter "normalize-characters" of the
453 * will also fully normalize the characters of the <code>Text</code>
456 * <code>CDATASections</code>, the normalize operation alone may not be
461 public void normalize(); method in interface:Node
/libcore/luni/src/test/java/libcore/xml/
H A DNormalizeTest.java192 assertEquals(false, domConfiguration.getParameter("normalize-characters"));
193 assertSupported("normalize-characters", false);
194 assertUnsupported("normalize-characters", true);
343 document.getDocumentElement().normalize();
348 document.getDocumentElement().normalize();
368 document.getDocumentElement().normalize();
374 document.getDocumentElement().normalize();
380 document.getDocumentElement().normalize();
386 document.getDocumentElement().normalize();
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DInnerNodeImpl.java149 * this method is unrelated to Document.normalize.
152 public final void normalize() { method in class:InnerNodeImpl
156 node.normalize();
H A DDOMConfigurationImpl.java45 * normalize-characters = false
200 * True to fully normalize characters (unsupported).
202 PARAMETERS.put("normalize-characters", new FixedParameter(false));
374 public void normalize(Node node) { method in class:DOMConfigurationImpl
380 * TODO: normalize namespaces
433 normalize(attributes.item(i));
441 // lookup next eagerly because normalize() may remove its subject
443 normalize(child);
H A DDocumentImpl.java488 ((DOMConfigurationImpl) getDomConfig()).normalize(root);
/libcore/luni/src/main/java/java/net/
H A DURI.java1046 private String normalize(String path, boolean discardRelativePrefix) { method in class:URI
1070 public URI normalize() { method in class:URI
1074 String normalizedPath = normalize(path, false);
1127 // normalize both paths
1128 String thisPath = normalize(path, false);
1129 String relativePath = normalize(relative.path, false);
1202 result.path = UrlUtils.authoritySafePath(result.authority, normalize(resolvedPath, true));
/libcore/luni/src/main/java/javax/crypto/
H A DEncryptedPrivateKeyInfo.java450 this.oid = AlgNameMapper.normalize(this.algName);

Completed in 498 milliseconds

12