Home
last modified time | relevance | path

Searched refs:xmlFiles (Results 1 – 5 of 5) sorted by relevance

/external/cldr/tools/java/org/unicode/cldr/api/
DCldrDataSupplier.java115 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()
DXmlDataSource.java51 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/
Dgen_gldispatch_mapi.py42 xmlFiles = sys.argv[2:]
44 roots = [ etree.parse(filename).getroot() for filename in xmlFiles ]
DgenCommon.py56 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/
DLdmlConverter.java256 Set<Path> xmlFiles = files in loadSpecialsData() local
260 return !xmlFiles.isEmpty() in loadSpecialsData()
262 CldrDataSupplier.forCldrFiles(LDML, config.getMinimumDraftStatus(), xmlFiles)) in loadSpecialsData()