Home
last modified time | relevance | path

Searched refs:dtdPath (Results 1 – 4 of 4) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/util/
DDtdType.java36 public final String dtdPath; field in DtdType
41 private DtdType(String dtdPath) { in DtdType() argument
42 this(dtdPath, null, null); in DtdType()
45 private DtdType(String dtdPath, DtdType realType) { in DtdType() argument
46 this(dtdPath, null, realType); in DtdType()
49 private DtdType(String dtdPath, String firstVersion, DtdType realType, String... directories) { in DtdType() argument
50 this.dtdPath = dtdPath; in DtdType()
82 … + "<!DOCTYPE " + this + " SYSTEM '../../" + dtdPath + "'>\n" // "common/dtd/ldmlSupplemental.dtd" in header()
DDtdData.java737 File file = new File(directory, type.dtdPath); in readFile()
DCLDRFile.java428 String fixedPath = "../../" + dtdType.dtdPath; in write()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateDtd.java31 …y (TempPrintWriter out = TempPrintWriter.openUTF8Writer(CLDRPaths.BASE_DIRECTORY + type.dtdPath)) { in main()