Searched defs:normalize (Results 1 - 17 of 17) sorted by relevance

/libcore/ojluni/src/main/java/java/text/
H A DNormalizer.java42 * This class provides the method <code>normalize</code> which transforms Unicode
45 * The <code>normalize</code> method supports the standard normalization forms
90 * The <code>normalize</code> method helps solve these problems by transforming
95 * Finally, the <code>normalize</code> method rearranges accents into the
155 * @param src The sequence of char values to normalize.
165 public static String normalize(CharSequence src, Form form) { method in class:Normalizer
167 return android.icu.text.Normalizer.normalize(src.toString(), form.icuMode);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DIOStatus.java52 // return IOStatus.normalize(n); // Converts UNAVAILABLE to zero
59 public static int normalize(int n) { method in class:IOStatus
69 public static long normalize(long n) { method in class:IOStatus
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DInnerNodeImpl.java153 * this method is unrelated to Document.normalize.
156 public final void normalize() { method in class:InnerNodeImpl
160 node.normalize();
H A DDOMConfigurationImpl.java45 * normalize-characters = false
200 * True to fully normalize characters (unsupported).
202 PARAMETERS.put("normalize-characters", new FixedParameter(false));
378 public void normalize(Node node) { method in class:DOMConfigurationImpl
384 * TODO: normalize namespaces
437 normalize(attributes.item(i));
445 // lookup next eagerly because normalize() may remove its subject
447 normalize(child);
H A DNodeImpl.java152 public void normalize() { method in class:NodeImpl
/libcore/ojluni/src/main/java/java/nio/file/
H A DPath.java149 * #normalize normalize} method, to eliminate redundant names, for cases where
333 Path normalize(); method in interface:Path
434 * <p> For any two {@link #normalize normalized} paths <i>p</i> and
/libcore/ojluni/src/main/java/sun/util/calendar/
H A DCalendarSystem.java375 public abstract boolean normalize(CalendarDate date); method in class:CalendarSystem
H A DLocalGregorianCalendar.java257 normalize(tmp);
281 public boolean normalize(CalendarDate date) { method in class:LocalGregorianCalendar
290 super.normalize(ldate);
H A DBaseCalendar.java217 public boolean normalize(CalendarDate date) { method in class:BaseCalendar
/libcore/ojluni/src/main/java/sun/util/locale/
H A DBaseLocale.java280 public static Key normalize(Key key) { method in class:BaseLocale.Key
306 return Key.normalize(key);
/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/ojluni/src/main/java/java/io/
H A DFileSystem.java53 public abstract String normalize(String path); method in class:FileSystem
H A DUnixFileSystem.java65 public String normalize(String pathname) { method in class:UnixFileSystem
/libcore/ojluni/src/main/java/sun/nio/fs/
H A DUnixPath.java82 return normalize(input, n, i - 1);
87 return normalize(input, n, n - 1);
96 private static String normalize(String input, int len, int off) { method in class:UnixPath
483 public Path normalize() { method in class:UnixPath
/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/ojluni/src/main/java/java/util/
H A DDate.java245 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE.
320 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE.
336 d.normalize(udate);
672 return normalize().getYear() - 1900;
708 return normalize().getMonth() - 1; // adjust 1-based to 0-based
757 return normalize().getDayOfMonth();
796 return normalize().getDayOfWeek() - BaseCalendar.SUNDAY;
813 return normalize().getHours();
845 return normalize().getMinutes();
878 return normalize()
1211 private final BaseCalendar.Date normalize() { method in class:Date
1237 private final BaseCalendar.Date normalize(BaseCalendar.Date date) { method in class:Date
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DURI.java951 public URI normalize() { method in class:URI
952 return normalize(this);
994 * #normalize() normalize} method. </p></li>
2024 // String np = normalize(path);
2025 String np = normalize(path, true);
2096 ru.path = normalize(child.path, true);
2117 private static URI normalize(URI u) { method in class:URI
2121 String np = normalize(u.path);
2151 String bp = normalize(bas
2452 private static String normalize(String ps) { method in class:URI
2458 private static String normalize(String ps, boolean removeLeading) { method in class:URI
[all...]

Completed in 413 milliseconds