Home
last modified time | relevance | path

Searched refs:xmlSource (Results 1 – 17 of 17) sorted by relevance

/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
DTestCheckWidths.java23 XMLSource xmlSource = new DummyXMLSource(); in TestBasic() local
26 xmlSource.putValueAtDPath(path, value); in TestBasic()
27 xmlSource.setLocaleID("und"); in TestBasic()
28 CLDRFile cldrFileToCheck = new CLDRFile(xmlSource); in TestBasic()
DTestCheckNumbers.java43 XMLSource xmlSource = new DummyXMLSource(); in checkSingularity() local
44 xmlSource.putValueAtDPath(path, value); in checkSingularity()
45 xmlSource.setLocaleID(locale); in checkSingularity()
46 CLDRFile cldrFileToCheck = new CLDRFile(xmlSource); in checkSingularity()
DTestUnits.java1162 XMLSource xmlSource = new SimpleXMLSource("units"); in TestUnitPreferenceSource() local
1163 xmlSource.setNonInheriting(true); in TestUnitPreferenceSource()
1164 CLDRFile foo = new CLDRFile(xmlSource ); in TestUnitPreferenceSource()
1185 xmlSource.putValueAtPath(path, unit); in TestUnitPreferenceSource()
/external/icu/android_icu4j/libcore_bridge/src/java/com/android/i18n/timezone/
DTelephonyLookup.java70 private final ReaderSupplier xmlSource; field in TelephonyLookup
72 private TelephonyLookup(ReaderSupplier xmlSource) { in TelephonyLookup() argument
73 this.xmlSource = xmlSource; in TelephonyLookup()
171 try (Reader reader = xmlSource.get()) { in processXml()
DTimeZoneFinder.java86 private final ReaderSupplier xmlSource; field in TimeZoneFinder
91 private TimeZoneFinder(ReaderSupplier xmlSource) { in TimeZoneFinder() argument
92 this.xmlSource = xmlSource; in TimeZoneFinder()
244 try (Reader reader = xmlSource.get()) { in processXml()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMManagerDefault.java277 InputSource xmlSource; in getDTM() local
280 xmlSource = null; in getDTM()
283 xmlSource = SAXSource.sourceToInputSource(source); in getDTM()
285 String urlOfSource = xmlSource.getSystemId(); in getDTM()
295 xmlSource.setSystemId(urlOfSource); in getDTM()
390 if (null == xmlSource) { in getDTM()
405 coParser.startParse(xmlSource); in getDTM()
439 reader.parse(xmlSource); in getDTM()
/external/guice/examples/src/example/xml/
DXmlBeanModule.java59 Binder sourced = originalBinder.withSource(xmlSource()); in start()
102 Binder sourced = originalBinder.withSource(xmlSource()); in start()
185 .withSource(xmlSource()) in addBinding()
216 Object xmlSource() { in xmlSource() method in XmlBeanModule
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerIdentityImpl.java415 InputSource xmlSource = SAXSource.sourceToInputSource(source); in transform() local
417 if (null == xmlSource) in transform()
423 if (null != xmlSource.getSystemId()) in transform()
424 m_systemID = xmlSource.getSystemId(); in transform()
485 reader.parse(xmlSource); in transform()
DTransformerImpl.java1122 public void transform(Source xmlSource, Result outputTarget) in transform() argument
1125 transform(xmlSource, outputTarget, true); in transform()
1136 public void transform(Source xmlSource, Result outputTarget, boolean shouldRelease) in transform() argument
1147 transform(xmlSource, shouldRelease); in transform()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateLanguageData.java50 SimpleXMLSource xmlSource = new SimpleXMLSource("en"); in main() local
51 CLDRFile newEn = new CLDRFile(xmlSource); in main()
DGenerateDecompCollationRules.java164 SimpleXMLSource xmlSource = new SimpleXMLSource("ar"); in main() local
165 CLDRFile newFile = new CLDRFile(xmlSource); in main()
DGenerateLanguageContainment.java247 SimpleXMLSource xmlSource = new SimpleXMLSource("languageGroup"); in main() local
248 xmlSource.setNonInheriting(true); // should be gotten from DtdType... in main()
249 CLDRFile newFile = new CLDRFile(xmlSource); in main()
/external/parameter-framework/upstream/parameter/
DParameterMgrFullConnector.cpp271 bool CParameterMgrFullConnector::importSingleDomainXml(const string &xmlSource, bool overwrite, in importSingleDomainXml() argument
275 return _pParameterMgr->importSingleDomainXml(xmlSource, overwrite, withSettings, fromFile, in importSingleDomainXml()
DParameterMgr.h318 bool importDomainsXml(const std::string &xmlSource, bool withSettings, bool fromFile,
335 bool importSingleDomainXml(const std::string &xmlSource, bool overwrite, bool withSettings,
748 bool wrapLegacyXmlImport(const std::string &xmlSource, bool fromFile, bool withSettings,
DParameterMgr.cpp2538 bool CParameterMgr::importDomainsXml(const string &xmlSource, bool withSettings, bool fromFile, in importDomainsXml() argument
2548 (fromFile ? ("\"" + xmlSource + "\"") : "a user-provided buffer")); in importDomainsXml()
2553 bool importSuccess = wrapLegacyXmlImport(xmlSource, fromFile, withSettings, in importDomainsXml()
2565 bool CParameterMgr::importSingleDomainXml(const string &xmlSource, bool overwrite, in importSingleDomainXml() argument
2574 (fromFile ? ('"' + xmlSource + '"') : "a user-provided buffer")); in importSingleDomainXml()
2580 if (!wrapLegacyXmlImport(xmlSource, fromFile, withSettings, *standaloneDomain, "", errorMsg)) { in importSingleDomainXml()
2593 bool CParameterMgr::wrapLegacyXmlImport(const string &xmlSource, bool fromFile, bool withSettings, in wrapLegacyXmlImport() argument
2605 _xmlDoc *doc = CXmlDocSource::mkXmlDoc(xmlSource, fromFile, false, xmlDomainImportContext); in wrapLegacyXmlImport()
/external/parameter-framework/upstream/parameter/include/
DParameterMgrFullConnector.h199 bool importSingleDomainXml(const std::string &xmlSource, bool overwrite, bool withSettings,
/external/parameter-framework/upstream/bindings/python/
Dpfw.i164 bool importSingleDomainXml(const std::string& xmlSource, bool overwrite, bool withSettings,