HomeSort by relevance Sort by last modified time
    Searched refs:Serializer (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
SerializerSwitcher.java 30 import org.apache.xml.serializer.Serializer;
31 import org.apache.xml.serializer.SerializerFactory;
32 import org.apache.xml.serializer.Method;
45 * Switch to HTML serializer if element is HTML
85 // Serializer oldSerializer = transformer.getSerializer();
86 Serializer oldSerializer = null;
90 Serializer serializer = local
96 serializer.setWriter(writer)
180 Serializer serializer = local
    [all...]
TransformerIdentityImpl.java 49 import org.apache.xml.serializer.Serializer;
50 import org.apache.xml.serializer.SerializerFactory;
51 import org.apache.xml.serializer.Method;
73 * simply feeds SAX events directly to a serializer ContentHandler, if the
190 if (m_resultContentHandler instanceof Serializer)
194 m_serializer = (Serializer) m_resultContentHandler;
260 Serializer serializer = local
263 m_serializer = serializer;
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/
index.js 6 exports.Serializer = require('./lib/serialization/serializer');
parse5_lib.js 8 parse5.Serializer = require('./lib/serialization/serializer');
CHANGELOG.md 23 * Add: Serializer `encodeHtmlEntities` option.
28 * `TreeSerializer` was renamed to `Serializer`. However, serializer is accessible as `parse5.TreeSerializer` for backward compatibility .
59 * Add: [TreeSerializer](https://github.com/inikulin/parse5/#class-serializer).
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerFactory.java 21 package org.apache.xml.serializer;
28 import org.apache.xml.serializer.utils.MsgKey;
29 import org.apache.xml.serializer.utils.Utils;
37 * used to create a serializer does not need to be obtained
59 * @see Serializer
76 * Returns a serializer for the specified output method. The output method
83 * @return A suitable serializer.
85 * null or an appropriate serializer can't be found
86 * @throws Exception if the class for the serializer is found but does not
88 * @throws WrappedRuntimeException if an exception is thrown while trying to find serializer
    [all...]
Serializer.java 19 * $Id: Serializer.java 471981 2006-11-07 04:28:00Z minchau $
21 package org.apache.xml.serializer;
30 * The Serializer interface is implemented by a serializer to enable users to:
33 * <li>configure the serializer with key/value properties
42 * Serializer ser = SerializerFactory.getSerializer(props);
53 * ser.reset(); // get ready to use the serializer for another document
64 * org.apache.xml.serializer.Serializer ser;
69 * Serializer ser = SerializerFactory.getSerializer(props)
    [all...]
SerializationHandler.java 21 package org.apache.xml.serializer;
34 * This interface is the one that a serializer implements. It is a group of
52 Serializer
55 * Set the SAX Content handler that the serializer sends its output to. This
56 * method only applies to a ToSAXHandler, not to a ToStream serializer.
58 * @see Serializer#asContentHandler()
66 * Notify that the serializer should take this DOM node as input to be
91 * Set the transformer associated with the serializer.
92 * @param transformer the transformer associated with the serializer.
97 * Get the transformer associated with the serializer
    [all...]
ToUnknownStream.java 21 package org.apache.xml.serializer;
145 * @see Serializer#asContentHandler()
167 * @see Serializer#getOutputFormat()
176 * @see Serializer#getOutputStream()
185 * @see Serializer#getWriter()
195 * @see Serializer#reset()
229 * @see Serializer#setOutputFormat(Properties)
239 * @see Serializer#setOutputStream(OutputStream)
249 * @see Serializer#setWriter(Writer)
986 Serializer serializer local
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
serializer_test.js 5 Serializer = parse5.Serializer,
10 assert.strictEqual(Serializer, parse5.TreeSerializer);
16 serializer = new Serializer(),
26 serializer.serialize(document);
38 serializer = new Serializer(),
40 serializedResult = serializer.serialize(document);
60 serializer = new Serializer()
    [all...]
parser_test.js 6 Serializer = parse5.Serializer,
55 //Then for each node in the tree we run serializer and compare results with the substring
62 serializer = new Serializer(treeAdapter, {
74 var expected = serializer.serialize(fragment),
86 expectedStartTag = serializer.serialize(fragment).substring(0, length),
98 expectedEndTag = serializer.serialize(fragment).slice(-length),
jsdom_parser_test.js 5 Serializer = require('../../index').TreeSerializer,
35 var serializer = new Serializer(),
49 var actual = serializer.serialize(document1);
61 var actual = serializer.serialize(JsDomParser.parseInnerHtml(fragment));
69 var actual = serializer.serialize(document2);
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/serialization/
serializer.js 12 //Default serializer options
47 //Serializer
48 var Serializer = module.exports = function (treeAdapter, options) {
55 Serializer.prototype.serialize = function (node) {
64 Serializer.prototype._serializeChildNodes = function (parentNode) {
86 Serializer.prototype._serializeElement = function (node) {
120 Serializer.prototype._serializeAttributes = function (node) {
152 Serializer.prototype._serializeTextNode = function (node) {
169 Serializer.prototype._serializeCommentNode = function (node) {
173 Serializer.prototype._serializeDocumentTypeNode = function (node)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/serializer/
SerializerTest.java 16 package org.yaml.snakeyaml.serializer;
31 private Serializer serializer; field in class:SerializerTest
37 serializer = new Serializer(new Emitter(writer, config), new Resolver(), config, null);
41 serializer.open();
43 serializer.open();
46 assertEquals("serializer is already opened", e.getMessage());
51 serializer.open();
52 serializer.close()
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/closure/
json.js 21 goog.provide('goog.json.Serializer');
116 return new goog.json.Serializer().serialize(object);
125 goog.json.Serializer = function() {
136 goog.json.Serializer.prototype.serialize = function(object) {
150 goog.json.Serializer.prototype.serialize_ = function(object, sb) {
193 goog.json.Serializer.charToJsonCharCache_ = {
215 goog.json.Serializer.charsToReplace_ = /\uffff/.test('\uffff') ?
225 goog.json.Serializer.prototype.serializeString_ = function(s, sb) {
228 sb.push('"', s.replace(goog.json.Serializer.charsToReplace_, function(c) {
230 if (c in goog.json.Serializer.charToJsonCharCache_)
    [all...]
  /external/v8/src/snapshot/
serialize.h 132 // The Serializer/Deserializer class is a common superclass for Serializer and
469 // There can be only one serializer per V8 process.
470 class Serializer : public SerializerDeserializer {
472 Serializer(Isolate* isolate, SnapshotByteSink* sink);
473 ~Serializer() override;
493 explicit RecursionScope(Serializer* serializer) : serializer_(serializer) {
503 Serializer* serializer_
    [all...]
serialize.cc     [all...]
snapshot-common.cc 120 for (int space = 0; space < i::Serializer::kNumberOfSpaces; space++) {
  /frameworks/av/services/audiopolicy/common/managerdefinitions/
Android.mk 39 LOCAL_SRC_FILES += src/Serializer.cpp
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/
Yaml.java 46 import org.yaml.snakeyaml.serializer.Serializer;
237 Serializer serializer = new Serializer(new Emitter(output, dumperOptions), resolver, local
240 serializer.open();
243 serializer.serialize(node);
245 serializer.close();
337 Serializer serializer = new Serializer(emitter, resolver, dumperOptions, null) local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/protorpc/experimental/javascript/
protorpc.js 321 * Protojson Specific Serializer.
324 ProtoRpc.Serializer = function() {
328 ProtoRpc.Serializer.prototype.serialize = function(message) {
360 ProtoRpc.Serializer.prototype.serialize_ = function(field, value) {
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/
Serializer.java 16 package org.yaml.snakeyaml.serializer;
51 public final class Serializer {
64 public Serializer(Emitable emitter, Resolver resolver, DumperOptions opts, Tag rootTag) {
85 throw new SerializerException("serializer is closed");
87 throw new SerializerException("serializer is already opened");
93 throw new SerializerException("serializer is not opened");
102 throw new SerializerException("serializer is not opened");
104 throw new SerializerException("serializer is closed");
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
LSSerializerImpl.java 22 package org.apache.xml.serializer.dom3;
37 import org.apache.xml.serializer.DOM3Serializer;
38 import org.apache.xml.serializer.Encodings;
39 import org.apache.xml.serializer.OutputPropertiesFactory;
40 import org.apache.xml.serializer.Serializer;
41 import org.apache.xml.serializer.SerializerFactory;
42 import org.apache.xml.serializer.utils.MsgKey;
43 import org.apache.xml.serializer.utils.SystemIDResolver;
44 import org.apache.xml.serializer.utils.Utils;
909 Serializer serializer = fXMLSerializer; local
1118 Serializer serializer = fXMLSerializer; local
1215 Serializer serializer = fXMLSerializer; local
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/vinn/
html_to_js_generator.js 18 var serializer = new parse5.Serializer(adapter);
135 var script_content = serializer.serialize(node);
  /prebuilts/tools/common/m2/repository/xom/xom/1.0/
xom-1.0.jar 

Completed in 983 milliseconds

1 2 3