Searched refs:xmlFiles (Results 1 – 5 of 5) sorted by relevance
/external/cldr/tools/java/org/unicode/cldr/api/ |
D | CldrDataSupplier.java | 115 CldrDataType type, CldrDraftStatus draftStatus, Set<Path> xmlFiles) { in forCldrFiles() argument 116 return new XmlDataSource(type, ImmutableSet.copyOf(xmlFiles), draftStatus); in forCldrFiles() 236 ImmutableSet<Path> xmlFiles = listXmlFilesForType(type); in getDataForType() local 237 if (!xmlFiles.isEmpty()) { in getDataForType() 238 return new XmlDataSource(type, xmlFiles, draftStatus); in getDataForType() 248 ImmutableSet<Path> xmlFiles = getDirectoriesForType(type) in listXmlFilesForType() local 251 checkArgument(!xmlFiles.isEmpty(), in listXmlFilesForType() 253 return xmlFiles; in listXmlFilesForType()
|
D | XmlDataSource.java | 51 private final ImmutableSet<Path> xmlFiles; field in XmlDataSource 78 XmlDataSource(CldrDataType dtdType, Set<Path> xmlFiles, CldrDraftStatus draftStatus) { in XmlDataSource() argument 79 this(dtdType, xmlFiles, draftStatus, XmlDataSource::openFile); in XmlDataSource() 84 …CldrDataType dtdType, Set<Path> xmlFiles, CldrDraftStatus draftStatus, Function<Path, Reader> open… in XmlDataSource() argument 85 this.xmlFiles = ImmutableSet.copyOf(xmlFiles); in XmlDataSource() 149 for (Path p : xmlFiles) { in read()
|
/external/mesa3d/src/mapi/new/ |
D | gen_gldispatch_mapi.py | 42 xmlFiles = sys.argv[2:] 44 roots = [ etree.parse(filename).getroot() for filename in xmlFiles ]
|
D | genCommon.py | 56 def getFunctions(xmlFiles): argument 63 roots = [ etree.parse(xmlFile).getroot() for xmlFile in xmlFiles ]
|
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/ |
D | LdmlConverter.java | 256 Set<Path> xmlFiles = files in loadSpecialsData() local 260 return !xmlFiles.isEmpty() in loadSpecialsData() 262 CldrDataSupplier.forCldrFiles(LDML, config.getMinimumDraftStatus(), xmlFiles)) in loadSpecialsData()
|