Searched defs:normalize (Results 1 - 15 of 15) 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
94 * The <code>normalize</code> method helps solve these problems by transforming
99 * Finally, the <code>normalize</code> method rearranges accents into the
159 * @param src The sequence of char values to normalize.
169 public static String normalize(CharSequence src, Form form) { method in class:Normalizer
170 return android.icu.text.Normalizer.normalize(src.toString(), form.icuMode);
/libcore/ojluni/src/main/java/sun/nio/ch/
H A DIOStatus.java51 // return IOStatus.normalize(n); // Converts UNAVAILABLE to zero
58 static int normalize(int n) { method in class:IOStatus
68 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));
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 DNodeImpl.java152 public void normalize() { method in class:NodeImpl
/libcore/ojluni/src/main/java/sun/util/calendar/
H A DCalendarSystem.java331 public abstract boolean normalize(CalendarDate date); method in class:CalendarSystem
H A DLocalGregorianCalendar.java270 public boolean normalize(CalendarDate date) { method in class:LocalGregorianCalendar
279 super.normalize(ldate);
H A DBaseCalendar.java218 public boolean normalize(CalendarDate date) { method in class:BaseCalendar
/libcore/ojluni/src/main/java/sun/util/locale/
H A DBaseLocale.java276 public static Key normalize(Key key) { method in class:BaseLocale.Key
297 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.java59 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/java/util/
H A DDate.java243 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE.
318 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE.
334 d.normalize(udate);
667 return normalize().getYear() - 1900;
703 return normalize().getMonth() - 1; // adjust 1-based to 0-based
752 return normalize().getDayOfMonth();
791 return normalize().getDayOfWeek() - gcal.SUNDAY;
808 return normalize().getHours();
840 return normalize().getMinutes();
873 return normalize()
1204 private final BaseCalendar.Date normalize() { method in class:Date
1230 private final BaseCalendar.Date normalize(BaseCalendar.Date date) { method in class:Date
[all...]
/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/net/
H A DURI.java957 public URI normalize() { method in class:URI
958 return normalize(this);
1000 * #normalize() normalize} method. </p></li>
2003 String np = normalize(path, true);
2069 ru.path = normalize(child.path, true);
2090 private static URI normalize(URI u) { method in class:URI
2094 String np = normalize(u.path);
2124 String bp = normalize(base.path);
2125 String cp = normalize(chil
2421 private static String normalize(String ps) { method in class:URI
2425 private static String normalize(String ps, boolean removeLeading) { method in class:URI
[all...]

Completed in 337 milliseconds