HomeSort by relevance Sort by last modified time
    Searched refs:Serializer (Results 26 - 50 of 136) sorted by null

12 3 4 5 6

  /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...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/base/
MessageProtocol.java 36 import com.jme3.network.serializing.Serializer;
63 * Converts a message to a ByteBuffer using the Serializer
74 Serializer.writeClassAndObject( buffer, message );
181 Object obj = Serializer.readClassAndObject( buffer );
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncCollectionTypeBase.java 9 import com.android.exchange.adapter.Serializer;
37 * @param s The {@link Serializer} for the current request. This should be within a
46 public abstract void setSyncOptions(final Context context, final Serializer s,
73 * @param s The {@link com.android.exchange.adapter.Serializer} for this sync request.
79 protected static void setPimSyncOptions(final Serializer s, final String filter,
EasSyncContacts.java 36 import com.android.exchange.adapter.Serializer;
166 public void setSyncOptions(final Context context, final Serializer s,
192 private void setInitialSyncOptions(final Serializer s) throws IOException {
322 * @param s The {@link Serializer} for this sync request
328 private static void sendStringData(final Serializer s, final ContentValues cv,
357 * @param s The {@link Serializer} for this sync request
363 private static void sendDateData(final Serializer s, final ContentValues cv,
389 * @param s The {@link Serializer} for this sync request.
393 private static void sendNickname(final Serializer s, final ContentValues cv)
400 * @param s The {@link Serializer} for this sync request
    [all...]
EasProvision.java 29 import com.android.exchange.adapter.Serializer;
229 * @return The {@link Serializer} containing the payload for this request.
231 protected static Serializer generateRequestEntitySerializer(
235 final Serializer s = new Serializer();
275 final Serializer s = generateRequestEntitySerializer(mContext, userAgent, mPolicyKey,
EasFolderSync.java 30 import com.android.exchange.adapter.Serializer;
192 final Serializer s = new Serializer();
EasSyncBase.java 16 import com.android.exchange.adapter.Serializer;
89 final Serializer s = new Serializer();
EasPing.java 36 import com.android.exchange.adapter.Serializer;
156 Serializer s = null;
172 // the Serializer is first created. If either side changes, the other must be kept in sync.
283 * If mailbox is eligible for push, add it to the ping request, creating the {@link Serializer}
286 * @param s The {@link Serializer} for this request, or null if it hasn't been created yet.
287 * @return The {@link Serializer} for this request, or null if it hasn't been created yet.
290 private Serializer handleOneMailbox(Serializer s, final Mailbox mailbox) throws IOException {
296 // No serializer yet, so create and initialize it.
299 s = new Serializer();
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
StringSerializer.java 35 import com.jme3.network.serializing.Serializer;
41 * String serializer.
46 public class StringSerializer extends Serializer {
SavableSerializer.java 38 import com.jme3.network.serializing.Serializer;
44 public class SavableSerializer extends Serializer {
  /external/jmonkeyengine/engine/src/test/jme3test/network/
TestChatServer.java 36 import com.jme3.network.serializing.Serializer;
57 Serializer.registerClass(ChatMessage.class);
TestThroughput.java 36 import com.jme3.network.serializing.Serializer;
94 Serializer.registerClass(TestMessage.class);
TestSerialization.java 37 import com.jme3.network.serializing.Serializer;
143 Serializer.registerClass(SomeObject.class);
144 Serializer.registerClass(TestSerializationMessage.class);
TestLatency.java 37 import com.jme3.network.serializing.Serializer;
73 Serializer.registerClass(TimestampMessage.class);
TestRemoteCall.java 41 import com.jme3.network.serializing.Serializer;
105 Serializer.registerClass(Savable.class, new SavableSerializer());
  /external/chromium_org/v8/src/
serialize.h 206 // The Serializer/Deserializer class is a common superclass for Serializer and
465 // There can be only one serializer per V8 process.
466 class Serializer : public SerializerDeserializer {
468 Serializer(Isolate* isolate, SnapshotByteSink* sink);
469 ~Serializer();
506 ObjectSerializer(Serializer* serializer,
511 : serializer_(serializer),
544 Serializer* serializer_
    [all...]
serialize.cc 649 bool Serializer::serialization_enabled_ = false;
650 bool Serializer::too_late_to_enable_now_ = false;
765 CodeAddressMap* Serializer::code_address_map_ = NULL;
768 void Serializer::Enable(Isolate* isolate) {
779 void Serializer::Disable() {
    [all...]
  /external/v8/src/
serialize.h 207 // The Serializer/Deserializer class is a common superclass for Serializer and
456 // There can be only one serializer per V8 process.
457 class Serializer : public SerializerDeserializer {
459 explicit Serializer(SnapshotByteSink* sink);
460 ~Serializer();
498 ObjectSerializer(Serializer* serializer,
503 : serializer_(serializer),
529 Serializer* serializer_
    [all...]
serialize.cc 581 bool Serializer::serialization_enabled_ = false;
582 bool Serializer::too_late_to_enable_now_ = false;
    [all...]
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RmiSerializer.java 35 import com.jme3.network.serializing.Serializer;
49 public class RmiSerializer extends Serializer {
82 SerializerRegistration reg = Serializer.getSerializerRegistration(clazz);
92 SerializerRegistration reg = Serializer.readClass(buffer);
193 Serializer.writeClassAndObject(buffer, obj);
211 args[i] = Serializer.readClassAndObject(buffer);
223 Serializer.writeClassAndObject(buffer, ret.retVal);
233 ret.retVal = Serializer.readClassAndObject(buffer);
ObjectStore.java 37 import com.jme3.network.serializing.Serializer;
121 Serializer s = new RmiSerializer();
122 Serializer.registerClass(RemoteObjectDefMessage.class, s);
123 Serializer.registerClass(RemoteMethodCallMessage.class, s);
124 Serializer.registerClass(RemoteMethodReturnMessage.class, s);
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SerializerTests.java 40 Serializer s = new Serializer();
92 MoreAsserts.assertEquals("Serializer mismatch", bytes, expectedBytes);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/
Serializer.java 54 * The main serializer class, which will serialize objects such that
60 public abstract class Serializer {
61 protected static final Logger log = Logger.getLogger(Serializer.class.getName());
68 private static final Serializer fieldSerializer = new FieldSerializer();
69 private static final Serializer serializableSerializer = new SerializableSerializer();
70 private static final Serializer arraySerializer = new ArraySerializer();
183 Class serializerClass = serializable.serializer();
187 Serializer serializer = getSerializer(serializerClass, false); local
189 if (serializer == null) serializer = fieldSerializer
    [all...]

Completed in 272 milliseconds

12 3 4 5 6