Searched refs:normalize (Results 26 - 50 of 185) sorted by relevance

12345678

/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/module/
H A DModuleSource.java50 consumer.accept(ClassSource.makeClassName(modulePath.relativize(path).normalize()), classLoader);
/openjdk10/hotspot/src/jdk.aot/share/classes/jdk.tools.jaotc/src/jdk/tools/jaotc/collect/directory/
H A DDirectorySource.java46 consumer.accept(ClassSource.makeClassName(directoryPath.relativize(path).normalize()), classLoader);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DDebugValueMap.java141 public void normalize() { method in class:DebugValueMap
148 map.normalize();
151 occurred.get(mapName).normalize();
160 map.normalize();
/openjdk10/jdk/src/java.desktop/share/classes/javax/swing/colorchooser/
H A DColorModelHSL.java79 rgb[0]= normalize(q, p, (hue < 4.0f) ? (hue + 2.0f) : (hue - 4.0f));
80 rgb[1]= normalize(q, p, hue);
81 rgb[2]= normalize(q, p, (hue < 2.0f) ? (hue + 4.0f) : (hue - 2.0f));
176 private static float normalize(float q, float p, float color) { method in class:ColorModelHSL
/openjdk10/jdk/make/src/classes/build/tools/generatenimbus/
H A DUIIconRegion.java35 String fileNamePrefix = Utils.normalize(prefix) + "Painter";
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DNormalizerBase.java42 * <code>normalize</code> transforms Unicode text into an equivalent composed or
44 * <code>normalize</code> supports the standard normalization forms described in
93 * <code>normalize</code> helps solve these problems by transforming text into
97 * Finally, <code>normalize</code> rearranges accents into the proper canonical
121 * normalize(FCD) may be implemented with NFD.
454 public static String normalize(String str, Mode mode, int options) { method in class:NormalizerBase
455 return mode.getNormalizer2(options).normalize(str);
458 public static String normalize(String str, Normalizer.Form form) { method in class:NormalizerBase
459 return NormalizerBase.normalize(str, toMode(form), UNICODE_LATEST);
462 public static String normalize(Strin method in class:NormalizerBase
[all...]
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/reader/dtd/
H A DModelGroup.java46 void normalize(List<Block> r, boolean optional) { method in class:ModelGroup
50 t.normalize(r,optional);
/openjdk10/jdk/src/java.base/share/classes/java/util/
H A DDate.java245 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE.
319 // month is 0-based. So we have to normalize month to support Long.MAX_VALUE.
335 d.normalize(udate);
650 return normalize().getYear() - 1900;
686 return normalize().getMonth() - 1; // adjust 1-based to 0-based
734 return normalize().getDayOfMonth();
773 return normalize().getDayOfWeek() - BaseCalendar.SUNDAY;
790 return normalize().getHours();
822 return normalize().getMinutes();
855 return normalize()
1194 private final BaseCalendar.Date normalize() { method in class:Date
1220 private final BaseCalendar.Date normalize(BaseCalendar.Date date) { method in class:Date
[all...]
/openjdk10/hotspot/test/compiler/compilercontrol/share/processors/
H A DLogProcessor.java120 // Get method and normalize it
121 String method = normalize(matcher.group(1));
132 private String normalize(String method) { method in class:LogProcessor
/openjdk10/jaxp/src/java.xml/share/classes/javax/xml/datatype/
H A DXMLGregorianCalendar.java673 public abstract XMLGregorianCalendar normalize(); method in class:XMLGregorianCalendar
717 gc = this.normalize();
/openjdk10/jdk/src/java.base/share/classes/java/io/
H A DFile.java278 this.path = fs.normalize(pathname);
321 fs.normalize(child));
323 this.path = fs.resolve(fs.normalize(parent),
324 fs.normalize(child));
327 this.path = fs.normalize(child);
364 fs.normalize(child));
367 fs.normalize(child));
370 this.path = fs.normalize(child);
436 this.path = fs.normalize(p);
1977 name = fs.normalize(nam
[all...]
/openjdk10/hotspot/make/src/classes/build/tools/projectcreator/
H A DUtil.java73 static String normalize(String file) { method in class:Util
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDateTimeDV.java76 //validate and normalize
85 normalize(date);
/openjdk10/jdk/src/java.base/unix/classes/java/io/
H A DUnixFileSystem.java61 private String normalize(String pathname, int len, int off) { method in class:UnixFileSystem
81 public String normalize(String pathname) { method in class:UnixFileSystem
87 return normalize(pathname, n, i - 1);
90 if (prevChar == '/') return normalize(pathname, n, n - 1);
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/keys/content/x509/
H A DXMLX509SubjectName.java80 return RFC2253Parser.normalize(this.getTextFromTextChild());
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DRFC2253Parser.java38 String normalized = normalize(dn, true);
51 String normalized = normalize(dn, false);
57 * Method normalize
62 public static String normalize(String dn) { method in class:RFC2253Parser
63 return normalize(dn, true);
67 * Method normalize
73 public static String normalize(String dn, boolean toXml) { method in class:RFC2253Parser
151 // only normalize if value is a String
/openjdk10/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java128 System.err.println(" " + normalize(name));
207 normalize(name) +
231 // Check if normalize() creates dup entries. This is crucial.
233 String key = normalize(k);
342 fos.write(normalize(s).getBytes());
375 private static String normalize(String s) throws Exception { method in class:NewResourcesNames
/openjdk10/jdk/src/jdk.zipfs/share/classes/jdk/nio/zipfs/
H A DZipPath.java61 this.path = normalize(path);
62 } else { // see normalize(String);
63 this.path = normalize(zfs.getString(path));
70 this.path = normalize(path);
358 byte[] opath = normalize(other);
382 public Path normalize() { method in class:ZipPath
454 private byte[] normalize(byte[] path) { method in class:ZipPath
462 return normalize(path, i);
464 return normalize(path, i - 1);
473 private byte[] normalize(byt method in class:ZipPath
502 private byte[] normalize(String path) { method in class:ZipPath
522 private byte[] normalize(String path, int off, int len) { method in class:ZipPath
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DSelector.java120 super(normalize(xpath), symbolTable, context);
132 private static String normalize(String xpath) { method in class:Selector.XPath
/openjdk10/jdk/src/java.base/unix/classes/sun/nio/ch/
H A DSourceChannelImpl.java169 return IOStatus.normalize(n);
200 return IOStatus.normalize(n);
H A DSinkChannelImpl.java169 return IOStatus.normalize(n);
192 return IOStatus.normalize(n);
/openjdk10/jdk/src/java.base/share/classes/sun/net/www/protocol/http/
H A DBasicAuthentication.java194 /* Must normalize so we don't get confused by ../ and ./ segments */
196 npath = new URI (npath).normalize().getPath();
197 opath = new URI (opath).normalize().getPath();
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsPathParser.java153 return new Result(type, root, normalize(sb, input, off));
163 private static String normalize(StringBuilder sb, String path, int off) { method in class:WindowsPathParser
/openjdk10/jdk/test/java/io/File/
H A DMacPathTest.java95 String dname_nfd = Normalizer.normalize(dname, Normalizer.Form.NFD);
96 String fname_nfd = Normalizer.normalize(fname_nfc, Normalizer.Form.NFD);
/openjdk10/jdk/test/java/nio/file/Path/
H A DMacPath.java84 String dname_nfd = Normalizer.normalize(dname, Normalizer.Form.NFD);
85 String fname_nfd = Normalizer.normalize(fname_nfc, Normalizer.Form.NFD);

Completed in 158 milliseconds

12345678