HomeSort by relevance Sort by last modified time
    Searched full:xmlwriter (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/fonttools/Lib/fontTools/ttLib/tables/
sbixBitmap.py 65 def toXML(self, xmlWriter, ttFont):
70 xmlWriter.simpletag("bitmap", glyphname=self.glyphName)
71 xmlWriter.newline()
73 xmlWriter.begintag("bitmap", format=self.imageFormatTag, glyphname=self.glyphName)
74 xmlWriter.newline()
75 #xmlWriter.simpletag("usReserved1", value=self.usReserved1)
76 #xmlWriter.newline()
77 #xmlWriter.simpletag("usReserved2", value=self.usReserved2)
78 #xmlWriter.newline()
81 xmlWriter.simpletag("ref", glyphname=self.referenceGlyphName
    [all...]
sbixBitmapSet.py 101 def toXML(self, xmlWriter, ttFont):
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(
    [all...]
_s_b_i_x.py 116 def toXML(self, xmlWriter, ttFont):
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)
otConverters.py 79 def xmlWrite(self, xmlWriter, font, value, name, attrs):
85 def xmlWrite(self, xmlWriter, font, value, name, attrs):
86 xmlWriter.simpletag(name, attrs + [("value", value)])
87 xmlWriter.newline()
118 def xmlWrite(self, xmlWriter, font, value, name, attrs):
124 xmlWriter.simpletag(name, attrs + [("value", value)])
125 xmlWriter.newline()
146 def xmlWrite(self, xmlWriter, font, value, name, attrs):
147 xmlWriter.comment("%s=%s" % (name, value))
148 xmlWriter.newline(
    [all...]
D_S_I_G_.py 80 def toXML(self, xmlWriter, ttFont):
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" % self.usFlag)
85 xmlWriter.newline()
86 sigrec.toXML(xmlWriter, ttFont)
87 xmlWriter.newline()
otTables.py 23 def toXML(self, xmlWriter, font, attrs=None, name=None):
24 BaseTable.toXML(self, xmlWriter, font, attrs, name=self.__class__.__name__)
124 def toXML2(self, xmlWriter, font):
126 xmlWriter.simpletag("Glyph", value=glyphName)
127 xmlWriter.newline()
204 def toXML2(self, xmlWriter, font):
207 xmlWriter.simpletag("Substitution",
209 xmlWriter.newline()
320 def toXML2(self, xmlWriter, font):
323 xmlWriter.simpletag("ClassDef", [("glyph", glyphName), ("class", cls)]
    [all...]
otBase.py 643 def toXML(self, xmlWriter, font, attrs=None, name=None):
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):
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)
    [all...]
  /external/chromium_org/third_party/libxml/chromium/
libxml_utils.cc 103 // XmlWriter functions
105 XmlWriter::XmlWriter()
109 XmlWriter::~XmlWriter() {
116 void XmlWriter::StartWriting() {
123 void XmlWriter::StopWriting() {
libxml_utils.h 12 #include "libxml/xmlwriter.h"
102 // XmlWriter is a wrapper class around libxml's xmlWriter,
106 class XmlWriter {
108 XmlWriter();
109 ~XmlWriter();
  /external/fonttools/Lib/fontTools/
cffLib.py 77 def toXML(self, xmlWriter, progress=None):
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...]
  /external/doclava/src/com/google/doclava/
Stubs.java 814 static void writeXML(PrintStream xmlWriter, HashMap<PackageInfo, List<ClassInfo>> allClasses,
821 xmlWriter.println("<api>");
823 writePackageXML(xmlWriter, pack, allClasses.get(pack), notStrippable);
825 xmlWriter.println("</api>");
828 public static void writeXml(PrintStream xmlWriter, Collection<PackageInfo> pkgs) {
838 xmlWriter.println("<api>");
840 writePackageXML(xmlWriter, pkg, pkg.allClasses().values(), notStrippable);
842 xmlWriter.println("</api>");
845 static void writePackageXML(PrintStream xmlWriter, PackageInfo pack,
854 xmlWriter.println("<package name=\"" + pack.name() + "\"\n
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
CommandLine.java 212 XMLWriter x;
217 x = new XMLWriter(w);
219 x.setOutputProperty(XMLWriter.METHOD, "html");
220 x.setOutputProperty(XMLWriter.OMIT_XML_DECLARATION, "yes");
225 x.setOutputProperty(XMLWriter.METHOD, method);
231 x.setOutputProperty(XMLWriter.DOCTYPE_PUBLIC, doctype_public);
237 x.setOutputProperty(XMLWriter.DOCTYPE_SYSTEM, doctype_system);
244 x.setOutputProperty(XMLWriter.ENCODING, theOutputEncoding);
248 x.setOutputProperty(XMLWriter.OMIT_XML_DECLARATION, "yes");
XMLWriter.java 0 // XMLWriter.java - serialize an XML document.
42 * (you can use the XMLWriter to take a snapshot of the current
69 * XMLWriter w = new XMLWriter();
92 * XMLWriter w = new XMLWriter();
252 public class XMLWriter extends XMLFilterImpl implements LexicalHandler
267 public XMLWriter ()
281 public XMLWriter (Writer writer)
295 public XMLWriter (XMLReader xmlreader)
    [all...]
  /external/xmlwriter/src/org/jheer/
XMLWriter.java 57 public class XMLWriter {
66 * Create a new XMLWriter.
69 // public XMLWriter(PrintWriter out) {
70 public XMLWriter(FileWriter out) {
75 * Create a new XMLWriter.
80 // public XMLWriter(PrintWriter out, int tabLength) {
81 public XMLWriter(FileWriter out, int tabLength) {
482 } // end of class XMLWriter
  /external/deqp/framework/platform/android/
tcuTestLogParserJNI.cpp 243 xe::xml::Writer xmlWriter(testLog);
248 xe::writeTestResult(m_testCaseResult, xmlWriter);
262 xe::xml::Writer xmlWriter(testLog);
267 xe::writeTestResult(m_testCaseResult, xmlWriter);
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 294 XmlWriter xw =
295 new XmlWriter(new OutputStreamWriter(bos));
306 /** Writes this node to the given XmlWriter. For node and document,
315 /** Writes the children of this node to the given XmlWriter. */
  /external/libxml2/
Android.mk 48 xmlwriter.c \
  /external/chromium_org/third_party/libxml/
BUILD.gn 78 "src/include/libxml/xmlwriter.h",
135 "src/xmlwriter.c",
  /external/fonttools/Lib/fontTools/misc/
xmlWriter.py 0 """xmlWriter.py -- Simple XML authoring class"""
11 class XMLWriter(object):
  /external/tagsoup/
CHANGES 119 XMLWriter is now told directly to use the schema's URI as default namespace
120 XMLWriter now takes the element name from the qname if localname is empty
148 Removed htmlMode in XMLWriter
264 PYXWriter and XMLWriter now implement LexicalHandler.
268 (XMLWriter prints comments, ignores CDATA sections; PYXWriter ignores all).
272 HTMLWriter is gone in favor of an extended XMLWriter with get/setHTMLMode methods.
293 Incorporated patch for Megginson XMLWriter support by Joseph Walton.
294 Changed existing XMLWriter to HTMLWriter.
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /prebuilts/tools/common/m2/repository/de/pdark/decentxml/1.3/
decentxml-1.3.jar 
  /external/deqp/executor/
xeTestLogWriter.cpp 489 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& xmlWriter)
493 xmlWriter << Writer::BeginElement("TestCaseResult")
499 writeResultItem(result.resultItems.getItem(ndx), xmlWriter);
502 xmlWriter << Writer::BeginElement("Result")
507 xmlWriter << Writer::EndElement;
512 xml::Writer xmlWriter(stream);
514 writeTestResult(result, xmlWriter);
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-metadata-model/0.18.1/
tycho-metadata-model-0.18.1.jar 
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 261 xe::xml::Writer xmlWriter (out);
268 xe::writeTestResult(result, xmlWriter);
369 xe::xml::Writer xmlWriter (out);
375 writeTestCaseList(testRoot, resultMap, xmlWriter);

Completed in 566 milliseconds

1 2 3 4 5