/external/fonttools/Lib/fontTools/ttLib/tables/ |
D | sbixBitmap.py | 65 def toXML(self, xmlWriter, ttFont): argument 70 xmlWriter.simpletag("bitmap", glyphname=self.glyphName) 71 xmlWriter.newline() 73 xmlWriter.begintag("bitmap", format=self.imageFormatTag, glyphname=self.glyphName) 74 xmlWriter.newline() 81 xmlWriter.simpletag("ref", glyphname=self.referenceGlyphName) 83 xmlWriter.begintag("hexdata") 84 xmlWriter.newline() 85 xmlWriter.dumphex(self.imageData) 86 xmlWriter.endtag("hexdata") [all …]
|
D | sbixBitmapSet.py | 101 def toXML(self, xmlWriter, ttFont): argument 102 xmlWriter.begintag("bitmapSet") 103 xmlWriter.newline() 104 xmlWriter.simpletag("size", value=self.size) 105 xmlWriter.newline() 106 xmlWriter.simpletag("resolution", value=self.resolution) 107 xmlWriter.newline() 111 self.bitmaps[glyphOrder[i]].toXML(xmlWriter, ttFont) 113 xmlWriter.endtag("bitmapSet") 114 xmlWriter.newline()
|
D | otConverters.py | 79 def xmlWrite(self, xmlWriter, font, value, name, attrs): argument 85 def xmlWrite(self, xmlWriter, font, value, name, attrs): argument 86 xmlWriter.simpletag(name, attrs + [("value", value)]) 87 xmlWriter.newline() 118 def xmlWrite(self, xmlWriter, font, value, name, attrs): argument 124 xmlWriter.simpletag(name, attrs + [("value", value)]) 125 xmlWriter.newline() 146 def xmlWrite(self, xmlWriter, font, value, name, attrs): argument 147 xmlWriter.comment("%s=%s" % (name, value)) 148 xmlWriter.newline() [all …]
|
D | otTables.py | 23 def toXML(self, xmlWriter, font, attrs=None, name=None): argument 24 BaseTable.toXML(self, xmlWriter, font, attrs, name=self.__class__.__name__) 124 def toXML2(self, xmlWriter, font): argument 126 xmlWriter.simpletag("Glyph", value=glyphName) 127 xmlWriter.newline() 204 def toXML2(self, xmlWriter, font): argument 207 xmlWriter.simpletag("Substitution", 209 xmlWriter.newline() 320 def toXML2(self, xmlWriter, font): argument 323 xmlWriter.simpletag("ClassDef", [("glyph", glyphName), ("class", cls)]) [all …]
|
D | D_S_I_G_.py | 80 def toXML(self, xmlWriter, ttFont): argument 81 xmlWriter.comment("note that the Digital Signature will be invalid after recompilation!") 82 xmlWriter.newline() 83 …xmlWriter.simpletag("tableHeader", version=self.ulVersion, numSigs=self.usNumSigs, flag="0x%X" % s… 85 xmlWriter.newline() 86 sigrec.toXML(xmlWriter, ttFont) 87 xmlWriter.newline()
|
D | _s_b_i_x.py | 116 def toXML(self, xmlWriter, ttFont): argument 117 xmlWriter.simpletag("usVal1", value=self.usVal1) 118 xmlWriter.newline() 119 xmlWriter.simpletag("usVal2", value=self.usVal2) 120 xmlWriter.newline() 122 self.bitmapSets[i].toXML(xmlWriter, ttFont)
|
D | otBase.py | 643 def toXML(self, xmlWriter, font, attrs=None, name=None): argument 649 xmlWriter.begintag(tableName, attrs) 650 xmlWriter.newline() 651 self.toXML2(xmlWriter, font) 652 xmlWriter.endtag(tableName) 653 xmlWriter.newline() 655 def toXML2(self, xmlWriter, font): argument 664 conv.xmlWrite(xmlWriter, font, item, conv.name, 670 conv.xmlWrite(xmlWriter, font, value, conv.name, []) 717 def toXML(self, xmlWriter, font, attrs=None, name=None): argument [all …]
|
/external/fonttools/Lib/fontTools/ |
D | cffLib.py | 77 def toXML(self, xmlWriter, progress=None): argument 79 xmlWriter.begintag("CFFFont", name=tostr(fontName)) 80 xmlWriter.newline() 82 font.toXML(xmlWriter, progress) 83 xmlWriter.endtag("CFFFont") 84 xmlWriter.newline() 85 xmlWriter.newline() 86 xmlWriter.begintag("GlobalSubrs") 87 xmlWriter.newline() 88 self.GlobalSubrs.toXML(xmlWriter, progress) [all …]
|
D | merge.py | 881 from fontTools.misc import xmlWriter 882 writer = xmlWriter.XMLWriter(file)
|
D | subset.py | 2107 from fontTools.misc import xmlWriter 2108 writer = xmlWriter.XMLWriter(file)
|
/external/doclava/src/com/google/doclava/ |
D | Stubs.java | 895 static void writeXML(PrintStream xmlWriter, HashMap<PackageInfo, List<ClassInfo>> allClasses, in writeXML() argument 902 xmlWriter.println("<api>"); in writeXML() 904 writePackageXML(xmlWriter, pack, allClasses.get(pack), notStrippable); in writeXML() 906 xmlWriter.println("</api>"); in writeXML() 909 public static void writeXml(PrintStream xmlWriter, Collection<PackageInfo> pkgs) { in writeXml() argument 919 xmlWriter.println("<api>"); in writeXml() 921 writePackageXML(xmlWriter, pkg, pkg.allClasses().values(), notStrippable); in writeXml() 923 xmlWriter.println("</api>"); in writeXml() 926 static void writePackageXML(PrintStream xmlWriter, PackageInfo pack, in writePackageXML() argument 935 xmlWriter.println("<package name=\"" + pack.name() + "\"\n" in writePackageXML() [all …]
|
/external/skia/src/svg/ |
D | skp2svg.cpp | 58 SkAutoTDelete<SkXMLWriter> xmlWriter(SkNEW_ARGS(SkXMLStreamWriter, (outStream.get()))); in tool_main() local 59 SkAutoTUnref<SkCanvas> svgCanvas(SkSVGCanvas::Create(pic->cullRect(), xmlWriter.get())); in tool_main()
|
/external/deqp/executor/ |
D | xeTestLogWriter.cpp | 489 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& xmlWriter) in writeTestResult() argument 493 xmlWriter << Writer::BeginElement("TestCaseResult") in writeTestResult() 499 writeResultItem(result.resultItems.getItem(ndx), xmlWriter); in writeTestResult() 502 xmlWriter << Writer::BeginElement("Result") in writeTestResult() 507 xmlWriter << Writer::EndElement; in writeTestResult() 512 xml::Writer xmlWriter(stream); in writeTestResult() local 514 writeTestResult(result, xmlWriter); in writeTestResult()
|
/external/deqp/framework/platform/android/ |
D | tcuTestLogParserJNI.cpp | 243 xe::xml::Writer xmlWriter(testLog); in parse() local 248 xe::writeTestResult(m_testCaseResult, xmlWriter); in parse() 262 xe::xml::Writer xmlWriter(testLog); in parse() local 267 xe::writeTestResult(m_testCaseResult, xmlWriter); in parse()
|
/external/deqp/executor/tools/ |
D | xeBatchResultToXml.cpp | 261 xe::xml::Writer xmlWriter (out); in testCaseResultComplete() local 268 xe::writeTestResult(result, xmlWriter); in testCaseResultComplete() 369 xe::xml::Writer xmlWriter (out); in batchResultToSeparateXmlFiles() local 375 writeTestCaseList(testRoot, resultMap, xmlWriter); in batchResultToSeparateXmlFiles()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.update.configurator_3.3.100.v20100512.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/skia/src/xml/ |
D | SkDOM.cpp | 475 SkXMLStreamWriter xmlWriter(&debugStream); in dump() local 476 xmlWriter.writeDOM(*this, node, false); in dump()
|
/external/fonttools/Lib/fontTools/ttLib/ |
D | __init__.py | 235 from fontTools.misc import xmlWriter 254 writer = xmlWriter.XMLWriter(fileOrPath, idlefunc=idlefunc) 272 tableWriter = xmlWriter.XMLWriter(tablePath, idlefunc=idlefunc)
|
/external/fonttools/Lib/fontTools/misc/ |
D | psCharStrings.py | 357 def toXML(self, xmlWriter): argument 360 xmlWriter.dumphex(self.bytecode) 379 xmlWriter.write(line) 380 xmlWriter.newline()
|
/external/libxml2/os400/libxmlrpg/ |
D | xmlversion.rpgle.in | 124 * Whether the xmlWriter saving interface is configured in
|
/external/skia/dm/ |
D | DMSrcSink.cpp | 471 SkAutoTDelete<SkXMLWriter> xmlWriter(SkNEW_ARGS(SkXMLStreamWriter, (dst))); in draw() local 474 xmlWriter)); in draw()
|
/external/libxml2/include/libxml/ |
D | xmlversion.h.in | 157 * Whether the xmlWriter saving interface is configured in
|
/external/libxml2/ |
D | configure.ac | 183 [ --with-writer add the xmlWriter saving interface (on)]) 1191 echo Disabling the xmlWriter saving interface 1198 echo xmlWriter requires Push interface - enabling it 1202 echo xmlWriter requires Output interface - enabling it
|
D | NEWS | 338 Allow to set the quoting character of an xmlWriter (Csaba Raduly), 1242 empty (William), xmlWriter bugs (Rob Richards), multithreading on Windows 1451 - xmlWriter: patch for better DTD support (Alfred Mickautsch) 1469 - xmlWriter: updates and fixes (Alfred Mickautsch, Lucas Brasilino) 1483 - bugfixes: make test and path issues, xmlWriter attribute serialization 1484 (William Brack), xmlWriter indentation (William), schemas validation 1520 - xmlWriter: indentation (Lucas Brasilino), memory leaks (Alfred 1554 xmlWriter (Alfred Mickautsch), hash.h inclusion problem, HTML parser 1557 Brack), serialization of attributes and entities content, xmlWriter 1599 - xmlWriter bugfix (Alfred Mickautsch) [all …]
|
/external/owasp/sanitizer/tools/findbugs/lib/ |
D | dom4j-1.6.1.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/dom4j/
org/ ... |