Home
last modified time | relevance | path

Searched refs:xmlFile (Results 1 – 15 of 15) sorted by relevance

/external/clpeak/src/
Dlogger.cpp9 xmlFile.open(_xmlFileName); in logger()
10 xw = new xmlWriter(xmlFile); in logger()
11 xmlFile.flush(); in logger()
21 xmlFile.close(); in ~logger()
62 xmlFile.flush(); in xmlOpenTag()
71 xmlFile.flush(); in xmlAppendAttribs()
83 xmlFile.flush(); in xmlAppendAttribs()
92 xmlFile.flush(); in xmlSetContent()
104 xmlFile.flush(); in xmlSetContent()
113 xmlFile.flush(); in xmlCloseTag()
[all …]
/external/robolectric/resources/src/main/java/org/robolectric/res/
DXmlContext.java8 private final Path xmlFile; field in XmlContext
11 public XmlContext(String packageName, Path xmlFile, Qualifiers qualifiers) { in XmlContext() argument
13 this.xmlFile = xmlFile; in XmlContext()
30 return xmlFile; in getXmlFile()
35 return '{' + packageName + ':' + xmlFile + '}'; in toString()
DStaxDocumentLoader.java27 Path xmlFile = xmlContext.getXmlFile(); in loadResourceXmlFile() local
31 xmlStreamReader = factory.createXMLStreamReader(Fs.getInputStream(xmlFile)); in loadResourceXmlFile()
34 throw new RuntimeException("error parsing " + xmlFile, e); in loadResourceXmlFile()
/external/apache-xml/test/java/src/org/apache/qetest/xslwrapper/
DTraxStreamWrapper.java200 File xmlFile = new File(xmlName); in transform() local
201 int xmlLength = new Long(xmlFile.length()).intValue(); //@todo warning: possible overflow in transform()
203 FileInputStream xmlStream = new FileInputStream(xmlFile); in transform()
359 File xmlFile = new File(xmlName); in transformWithStylesheet() local
360 int xmlLength = new Long(xmlFile.length()).intValue(); //@todo warning: possible overflow in transformWithStylesheet()
362 FileInputStream xmlStream = new FileInputStream(xmlFile); in transformWithStylesheet()
439 File xmlFile = new File(xmlName); in transformEmbedded() local
440 int xmlLength = new Long(xmlFile.length()).intValue(); //@todo warning: possible overflow in transformEmbedded()
442 FileInputStream xmlStream = new FileInputStream(xmlFile); in transformEmbedded()
465 xmlFile = new File(xmlName); in transformEmbedded()
[all …]
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DConverterTest.java23 Path xmlFile = Paths.get("res/values/foo.xml"); in setUp() local
24 Qualifiers qualifiers = Qualifiers.fromParentDir(xmlFile.getParent()); in setUp()
26 xmlContext = new XmlContext("", xmlFile, qualifiers); in setUp()
/external/doclava/src/com/google/doclava/
DArtifactTagger.java70 String xmlFile = artifactSpec.getKey(); in tagAll() local
75 specApi = new ApiCheck().parseApi(xmlFile); in tagAll()
80 "Failed to parse " + xmlFile + " for " + artifactName + " artifact data.\n" in tagAll()
DSinceTagger.java61 String xmlFile = versionSpec.getKey(); in tagAll() local
66 specApi = new ApiCheck().parseApi(xmlFile); in tagAll()
71 "Failed to parse " + xmlFile + " for " + versionName + " since data.\n" in tagAll()
/external/robolectric/resources/src/test/java/org/robolectric/res/
DQualifiersTest.java31 Path xmlFile = Paths.get(path, "whatever.xml"); in configFrom() local
32 Qualifiers qualifiers = Qualifiers.fromParentDir(xmlFile.getParent()); in configFrom()
34 ResTable_config config = new XmlContext("package", xmlFile, qualifiers).getConfig(); in configFrom()
/external/jazzer-api/sanitizers/src/test/java/com/example/
DXPathInjection.java29 String xmlFile = "<user name=\"user\" pass=\"pass\"></user>"; in fuzzerInitialize() local
34 doc = builder.parse(new InputSource(new StringReader(xmlFile))); in fuzzerInitialize()
/external/robolectric/resources/src/main/java/org/robolectric/res/builder/
DXmlBlock.java26 private static synchronized Document parse(Path xmlFile) { in parse() argument
36 inputStream = Fs.getInputStream(xmlFile); in parse()
/external/jsoup/src/test/java/org/jsoup/parser/
DXmlTreeBuilderTest.java86 … File xmlFile = new File(XmlTreeBuilder.class.getResource("/htmltests/xml-test.xml").toURI()); in testSupplyParserToDataStream() local
87 InputStream inStream = new FileInputStream(xmlFile); in testSupplyParserToDataStream()
135 … File xmlFile = new File(XmlTreeBuilder.class.getResource("/htmltests/xml-charset.xml").toURI()); in testDetectCharsetEncodingDeclaration() local
136 InputStream inStream = new FileInputStream(xmlFile); in testDetectCharsetEncodingDeclaration()
/external/mesa3d/src/mapi/new/
DgenCommon.py63 roots = [ etree.parse(xmlFile).getroot() for xmlFile in xmlFiles ]
/external/clpeak/include/
Dlogger.h24 ofstream xmlFile; variable
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/
DConvertXTB.java537 File xmlFile = new File(outputDir, locale + ".xml"); in writeXml() local
545 out = new PrintWriter(xmlFile); in writeXml()
549 System.err.println("Couldn't write " + xmlFile.getAbsolutePath() + " to disk."); in writeXml()
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DSimpleFactory.java812 final File xmlFile = makeFileName(localeName, dir);
813 if (xmlFile.canRead()) {