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

1 2

  /libcore/luni/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...]
TransformerImpl.java 52 import org.apache.xml.serializer.Method;
53 import org.apache.xml.serializer.Serializer;
54 import org.apache.xml.serializer.SerializerFactory;
73 import org.apache.xml.serializer.ToSAXHandler;
74 import org.apache.xml.serializer.ToTextStream;
75 import org.apache.xml.serializer.ToXMLSAXHandler;
76 import org.apache.xml.serializer.SerializationHandler;
105 implements Runnable, DTMWSFilter, ExtensionsProvider, org.apache.xml.serializer.SerializerTrace
153 * Please note that each of these also holds onto a Text Serializer.
1043 SerializationHandler serializer = local
1898 Serializer serializer = org.apache.xml.serializer.SerializerFactory.getSerializer( local
    [all...]
  /packages/apps/Email/src/com/android/exchange/adapter/
Serializer.java 37 public class Serializer {
39 private static final String TAG = "Serializer";
57 public Serializer() {
61 public Serializer(boolean startDocument, boolean _logging) {
66 public Serializer(boolean startDocument) {
127 public Serializer start(int tag) throws IOException {
134 public Serializer end() throws IOException {
147 public Serializer tag(int t) throws IOException {
153 public Serializer data(int tag, String value) throws IOException {
172 public Serializer text(String text) throws IOException
    [all...]
AccountSyncAdapter.java 30 public boolean sendLocalChanges(Serializer s) throws IOException {
AbstractSyncAdapter.java 49 public abstract boolean sendLocalChanges(Serializer s)
ContactsSyncAdapter.java     [all...]
EmailSyncAdapter.java 682 * @param s the Serializer we're using to create post data
688 boolean sendDeletedItems(Serializer s, ArrayList<Long> deletedIds, boolean first)
724 public boolean sendLocalChanges(Serializer s) throws IOException {
    [all...]
  /external/v8/src/
serialize.h 169 // The Serializer/Deserializer class is a common superclass for Serializer and
369 class Serializer : public SerializerDeserializer {
371 explicit Serializer(SnapshotByteSink* sink);
372 ~Serializer();
409 ObjectSerializer(Serializer* serializer,
413 : serializer_(serializer),
435 Serializer* serializer_;
480 DISALLOW_COPY_AND_ASSIGN(Serializer);
    [all...]
serialize.cc 506 bool Serializer::serialization_enabled_ = false;
507 bool Serializer::too_late_to_enable_now_ = false;
889 void Serializer::Synchronize(const char* tag) {
900 Serializer::Serializer(SnapshotByteSink* sink)
911 Serializer::~Serializer() {
    [all...]
mksnapshot.cc 220 i::Serializer::Enable();
  /libcore/luni/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...]
  /packages/apps/Email/tests/src/com/android/exchange/adapter/
EmailSyncAdapterTests.java 91 Serializer s = new Serializer();
188 Serializer s = new Serializer(false);
218 Serializer s = new Serializer(false);
  /packages/apps/Email/src/com/android/exchange/
EasSyncService.java 49 import com.android.exchange.adapter.Serializer;
419 Serializer s = new Serializer();
    [all...]
  /external/v8/test/cctest/
test-serialize.cc 256 Serializer::Enable();
264 Serializer::Enable();
359 Serializer::Enable();
477 Serializer::Enable();
  /external/webkit/WebCore/bindings/v8/
SerializedScriptValue.cpp 222 class Serializer {
224 explicit Serializer(Writer& writer)
668 Serializer serializer(writer);
669 if (!serializer.serialize(value)) {
  /libcore/luni/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/v8/src/arm/
assembler-arm.cc 82 if (Serializer::enabled()) {
640 if (!Serializer::enabled()) {
641 Serializer::TooLateToEnableNow();
644 return Serializer::enabled();
    [all...]
assembler-thumb2.cc 63 if (Serializer::enabled()) {
620 if (!Serializer::enabled()) {
621 Serializer::TooLateToEnableNow();
624 return Serializer::enabled();
    [all...]
  /packages/apps/Email/src/com/android/exchange/utility/
CalendarUtilities.java 31 import com.android.exchange.adapter.Serializer;
    [all...]
  /external/v8/src/ia32/
assembler-ia32.cc 60 if (Serializer::enabled()) {
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 448 return Serializer::enabled();
1122 !Serializer::enabled() &&

Completed in 731 milliseconds

1 2