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

123456

/openjdk7/jdk/src/share/classes/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
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DUtil.java71 static String normalize(String file) { method in class:Util
/openjdk7/jdk/src/solaris/classes/java/io/
H A DUnixFileSystem.java63 private String normalize(String pathname, int len, int off) { method in class:UnixFileSystem
83 public String normalize(String pathname) { method in class:UnixFileSystem
89 return normalize(pathname, n, i - 1);
92 if (prevChar == '/') return normalize(pathname, n, n - 1);
/openjdk7/jdk/src/windows/classes/java/io/
H A DWin32FileSystem.java117 private String normalize(String path, int len, int off) { method in class:Win32FileSystem
181 public String normalize(String path) { method in class:Win32FileSystem
189 return normalize(path, n, (prev == slash) ? i - 1 : i);
191 return normalize(path, n, i - 1);
193 return normalize(path, n, 0);
196 if (prev == slash) return normalize(path, n, n - 1);
314 return normalize(System.getProperty("user.dir"));
/openjdk7/jdk/src/share/classes/java/io/
H A DFile.java279 this.path = fs.normalize(pathname);
322 fs.normalize(child));
324 this.path = fs.resolve(fs.normalize(parent),
325 fs.normalize(child));
328 this.path = fs.normalize(child);
365 fs.normalize(child));
368 fs.normalize(child));
371 this.path = fs.normalize(child);
436 this.path = fs.normalize(p);
2135 this.path = fs.normalize(pathFiel
[all...]
H A DFileSystem.java58 public abstract String normalize(String path); method in class:FileSystem
/openjdk7/jdk/test/sun/security/util/Resources/
H A DNewResourcesNames.java126 System.err.println(" " + normalize(name));
205 normalize(name) +
229 // Check if normalize() creates dup entries. This is crucial.
231 String key = normalize(k);
340 fos.write(normalize(s).getBytes());
373 private static String normalize(String s) throws Exception { method in class:NewResourcesNames
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/identity/
H A DSelector.java121 super(normalize(xpath), symbolTable, context);
133 private static String normalize(String xpath) { method in class:Selector.XPath
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/resolver/readers/
H A DXCatalogReader.java119 PublicId.normalize(atts.getValue("PublicId")),
132 PublicId.normalize(atts.getValue("PublicId")),
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/domapi/
H A DXPathNamespaceImpl.java221 * @see org.w3c.dom.Node#normalize()
223 public void normalize() { method in class:XPathNamespaceImpl
224 m_attributeNode.normalize();
/openjdk7/jdk/src/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
/openjdk7/jdk/test/java/io/File/
H A DMacPathTest.java101 String dname_nfd = Normalizer.normalize(dname, Normalizer.Form.NFD);
102 String fname_nfd = Normalizer.normalize(fname_nfc, Normalizer.Form.NFD);
/openjdk7/jdk/test/java/nio/file/Path/
H A DMacPathTest.java92 String dname_nfd = Normalizer.normalize(dname, Normalizer.Form.NFD);
93 String fname_nfd = Normalizer.normalize(fname_nfc, Normalizer.Form.NFD);
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DBasicAuthentication.java186 /* Must normalize so we don't get confused by ../ and ./ segments */
188 npath = new URI (npath).normalize().getPath();
189 opath = new URI (opath).normalize().getPath();
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DSinkChannelImpl.java170 return IOStatus.normalize(n);
193 return IOStatus.normalize(n);
H A DSourceChannelImpl.java170 return IOStatus.normalize(n);
201 return IOStatus.normalize(n);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDateDV.java64 //validate and normalize
72 normalize(date);
H A DDayDV.java83 //validate and normalize
90 normalize(date);
H A DMonthDV.java92 //validate and normalize
99 normalize(date);
H A DTimeDV.java75 //validate and normalize
83 normalize(date);
H A DYearDV.java95 //validate and normalize
102 normalize(date);
H A DYearMonthDV.java72 //validate and normalize
80 normalize(date);
/openjdk7/jaxp/src/org/w3c/dom/
H A DNode.java484 * be used. If the parameter "normalize-characters" of the
487 * will also fully normalize the characters of the <code>Text</code>
490 * <code>CDATASections</code>, the normalize operation alone may not be
496 public void normalize(); method in interface:Node
/openjdk7/jdk/src/share/classes/java/text/
H A DRuleBasedCollator.java553 String sourceDecomposition = Normalizer.normalize(source, form);
554 String targetDecomposition = Normalizer.normalize(target, form);
684 primResult.append(Normalizer.normalize(source, Normalizer.Form.NFD));
686 primResult.append(Normalizer.normalize(source, Normalizer.Form.NFKD));
/openjdk7/jdk/src/share/classes/sun/net/idn/
H A DStringPrep.java81 * <li> Normalize: Possibly normalize the result of step 1 using Unicode
341 private StringBuffer normalize(StringBuffer src){ method in class:StringPrep
354 Normalizer.normalize(
372 2) Normalize -- Possibly normalize the result of step 1 using Unicode
431 // normalize
432 normOut = normalize(mapOut);

Completed in 62 milliseconds

123456