Home
last modified time | relevance | path

Searched refs:normalizedPath (Results 1 – 25 of 25) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/tool/
DRemoveEmptyCLDR.java43 String normalizedPath = PathUtilities.getNormalizedPathString(f); in main() local
44 if (!normalizedPath.endsWith(".xml") || normalizedPath.endsWith("root.xml")) { in main()
49 XMLFileReader.loadPathValues(normalizedPath, data, false); in main()
54 System.out.println(++counter + ") NOT-EMPTY: " + normalizedPath); in main()
DVettingAdder.java57 String normalizedPath = PathUtilities.getNormalizedPathString(f); in addFiles() local
75 addFiles(normalizedPath + File.separatorChar + subnames[i]); in addFiles()
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestCldrResolver.java154 for (String normalizedPath : toolResolved.keySet()) { in testResolution()
156 if (!shouldIgnorePath(normalizedPath, cldrResolved)) { in testResolution()
159 + normalizedPath in testResolution()
163 cldrPaths.contains(normalizedPath) in testResolution()
165 .get(normalizedPath) in testResolution()
DTestPaths.java376 String[] normalizedPath = { "" }; in TestNonLdml() local
454 String dpath = CLDRFile.getDistinguishingXPath(path, normalizedPath); in TestNonLdml()
458 if (!normalizedPath.equals(path) && !normalizedPath[0].equals(dpath)) { in TestNonLdml()
459 checkParts(normalizedPath[0], dtdData); in TestNonLdml()
DTestBasic.java173 String normalizedPath = PathUtilities.getNormalizedPathString(directoryFile); in checkDtds() local
177 + normalizedPath); in checkDtds()
179 logln("Checking files for DTD errors in: " + indent + normalizedPath); in checkDtds()
DTestPathHeader.java1339 final String normalizedPath = entry.getKey(); in TestSupplementalItems() local
1341 PathHeader ph = pathHeaderFactory.fromPath(normalizedPath, failures); in TestSupplementalItems()
1343 … errln("Failure with " + test + " => " + normalizedPath + " = " + normalizedValue); in TestSupplementalItems()
/external/cldr/tools/java/org/unicode/cldr/util/
DFileReaders.java48 String normalizedPath = null; in openFile()
51 normalizedPath = PathUtilities.getNormalizedPathString(relativeFileName); in openFile()
56 …legalArgumentException("Couldn't open file " + file + "; in path " + normalizedPath + "; relative … in openFile()
DCldrUtility.java1278 String normalizedPath = null; in checkValidFile() local
1281 normalizedPath = PathUtilities.getNormalizedPathString(file) + File.separatorChar; in checkValidFile()
1284 if (file == null || normalizedPath == null || checkForDirectory && !file.isDirectory()) { in checkValidFile()
1286 + (normalizedPath == null ? "" : " => " + normalizedPath) in checkValidFile()
1289 return normalizedPath; in checkValidFile()
DCLDRFile.java1302 public static String getDistinguishingXPath(String xpath, String[] normalizedPath) { in getDistinguishingXPath() argument
1303 return DistinguishedXPath.getDistinguishingXPath(xpath, normalizedPath); in getDistinguishingXPath()
2879 public static String getDistinguishingXPath(String xpath, String[] normalizedPath) {
2962 if (normalizedPath != null) {
2963 normalizedPath[0] = normalizedPathMap.get(xpath);
2964 if (normalizedPath[0] == null) {
2965 normalizedPath[0] = xpath;
DSupplementalDataInfo.java1022 String normalizedPath = getNormalizedPathString(supplementalDirectory);
1023 SupplementalDataInfo instance = directory_instance.get(normalizedPath);
1028 File directory = new File(normalizedPath);
1068 directory_instance.put(normalizedPath, instance);
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/groovy/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.groovy99 String normalizedPath = normalize(path)
100 addEntry(new FileEntry(normalizedPath))
116 String normalizedPath = normalize(path)
130 addEntry(new DirectoryEntry(normalizedPath))
264 String normalizedPath = normalize(path)
269 if (normalizedPath.equals(getParent(childPath))) {
586 String normalizedPath = normalize(path)
587 … return entries.keySet().find { p -> p.startsWith(normalizedPath) && !normalizedPath.equals(p) }
597 String normalizedPath = normalize(path)
598 String normalizedDirPrefix = normalizedPath + SEPARATOR
[all …]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java593 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
594 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
595 String normalizedDirPrefix = normalizedPath + separator; in descendents()
600 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java592 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
593 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
594 String normalizedDirPrefix = normalizedPath + separator; in descendents()
599 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java602 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
603 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
604 String normalizedDirPrefix = normalizedPath + separator; in descendents()
610 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java602 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
603 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
604 String normalizedDirPrefix = normalizedPath + separator; in descendents()
610 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java601 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
602 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
603 String normalizedDirPrefix = normalizedPath + separator; in descendents()
609 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java592 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
593 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
594 String normalizedDirPrefix = normalizedPath + separator; in descendents()
599 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java602 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
603 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
604 String normalizedDirPrefix = normalizedPath + separator; in descendents()
610 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java601 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
602 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
603 String normalizedDirPrefix = normalizedPath + separator; in descendents()
609 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java592 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
593 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
594 String normalizedDirPrefix = normalizedPath + separator; in descendents()
599 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java593 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
594 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
595 String normalizedDirPrefix = normalizedPath + separator; in descendents()
600 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java593 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
594 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
595 String normalizedDirPrefix = normalizedPath + separator; in descendents()
601 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/filesystem/
DAbstractFakeFileSystem.java643 String normalizedPath = getFileSystemEntryKey(path); in descendents() local
644 String separator = (normalizedPath.endsWith(getSeparator())) ? "" : getSeparator(); in descendents()
645 String normalizedDirPrefix = normalizedPath + separator; in descendents()
650 if (p.startsWith(normalizedDirPrefix) && !normalizedPath.equals(p)) { in descendents()
/external/cldr/tools/java/org/unicode/cldr/test/
DQuickCheck.java121 String normalizedPath = PathUtilities.getNormalizedPathString(directoryFile); in checkDtds() local
123 throw new IllegalArgumentException("Empty directory: " + normalizedPath); in checkDtds()
125 System.out.println("Checking files for DTD errors in: " + normalizedPath); in checkDtds()
/external/cldr/tools/java/org/unicode/cldr/draft/
DFileUtilities.java247 String normalizedPath = null; in openFile()
250 normalizedPath = getNormalizedPathString(relativeFileName); in openFile()
255 …CUUncheckedIOException("Couldn't open file " + file + "; in path " + normalizedPath + "; relative … in openFile()