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

1 2

  /packages/apps/Exchange/tests/src/com/android/exchange/eas/
EasProvisionTests.java 25 import com.android.exchange.adapter.Serializer;
53 final Serializer expectedResult = new Serializer();
63 final Serializer generatedResult = EasProvision.generateRequestEntitySerializer(
83 final Serializer expectedResult = new Serializer();
94 final Serializer generatedResult = EasProvision.generateRequestEntitySerializer(
114 final Serializer expectedResult = new Serializer();
122 final Serializer generatedResult = EasProvision.generateRequestEntitySerializer
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSettings.java 20 import com.android.exchange.adapter.Serializer;
61 final Serializer s = new Serializer();
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,
EasSearchGal.java 9 import com.android.exchange.adapter.Serializer;
49 final Serializer s = new Serializer();
EasProvision.java 29 import com.android.exchange.adapter.Serializer;
231 * @return The {@link Serializer} containing the payload for this request.
233 protected static Serializer generateRequestEntitySerializer(
237 final Serializer s = new Serializer();
277 final Serializer s = generateRequestEntitySerializer(mContext, userAgent, mPolicyKey,
EasFolderSync.java 30 import com.android.exchange.adapter.Serializer;
160 final Serializer s = new Serializer();
EasSyncBase.java 16 import com.android.exchange.adapter.Serializer;
86 final Serializer s = new Serializer();
EasSyncContacts.java 37 import com.android.exchange.adapter.Serializer;
167 public void setSyncOptions(final Context context, final Serializer s,
193 private void setInitialSyncOptions(final Serializer s) throws IOException {
345 * @param s The {@link Serializer} for this sync request
352 private static boolean sendStringData(final Serializer s, final ContentValues cv,
381 * @param s The {@link Serializer} for this sync request
387 private static void sendDateData(final Serializer s, final ContentValues cv,
413 * @param s The {@link Serializer} for this sync request.
417 private static void sendNickname(final Serializer s, final ContentValues cv)
424 * @param s The {@link Serializer} for this sync request
    [all...]
EasPing.java 38 import com.android.exchange.adapter.Serializer;
158 Serializer s = null;
174 // the Serializer is first created. If either side changes, the other must be kept in sync.
287 * If mailbox is eligible for push, add it to the ping request, creating the {@link Serializer}
290 * @param s The {@link Serializer} for this request, or null if it hasn't been created yet.
291 * @return The {@link Serializer} for this request, or null if it hasn't been created yet.
294 private Serializer handleOneMailbox(Serializer s, final Mailbox mailbox) throws IOException {
300 // No serializer yet, so create and initialize it.
303 s = new Serializer();
    [all...]
EasSync.java 36 import com.android.exchange.adapter.Serializer;
203 final Serializer s = new Serializer();
261 private void addOneCollectionToRequest(final Serializer s, final int collectionType,
EasMoveItems.java 13 import com.android.exchange.adapter.Serializer;
118 final Serializer s = new Serializer();
EasSearch.java 14 import com.android.exchange.adapter.Serializer;
89 final Serializer s = new Serializer();
EasLoadAttachment.java 31 import com.android.exchange.adapter.Serializer;
227 final Serializer s = new Serializer();
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
serializer.js 6 * @fileoverview A global serializer object which returns the current
10 goog.provide('cvox.Serializer');
18 cvox.Serializer = function() { };
25 cvox.Serializer.prototype.storeOn = function(store) {
35 cvox.Serializer.prototype.readFrom = function(store) {
init_globals.js 19 goog.require('cvox.Serializer');
56 cvox.ChromeVox.serializer = new cvox.Serializer();
  /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...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Serializer.java 43 public class Serializer {
53 public Serializer() throws IOException {
57 public Serializer(OutputStream os) throws IOException {
62 public Serializer(boolean startDocument) throws IOException {
72 public Serializer(final OutputStream outputStream, final boolean startDocument)
146 public Serializer start(final int tag) throws IOException {
152 public Serializer end() throws IOException {
163 public Serializer tag(final int tag) throws IOException {
172 public Serializer data(final int tag, final String value) throws IOException {
182 public Serializer text(final String text) throws IOException
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
SerializerTests.java 45 Serializer s = new Serializer();
97 MoreAsserts.assertEquals("Serializer mismatch", bytes, expectedBytes);
103 Serializer.writeInteger(output, 384);
104 Serializer.writeInteger(output, 0);
105 Serializer.writeInteger(output, -1);
  /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/chromium_org/v8/src/
serialize.h 142 // The Serializer/Deserializer class is a common superclass for Serializer and
377 // There can be only one serializer per V8 process.
378 class Serializer : public SerializerDeserializer {
380 Serializer(Isolate* isolate, SnapshotByteSink* sink);
381 ~Serializer();
411 ObjectSerializer(Serializer* serializer,
416 : serializer_(serializer),
449 Serializer* serializer_
    [all...]
mksnapshot.cc 67 const i::Serializer& serializer,
69 const i::Serializer& context_serializer) const {
70 WriteSnapshotFile(snapshot_data, serializer,
72 MaybeWriteStartupBlob(snapshot_data, serializer,
78 const i::Serializer& serializer,
80 const i::Serializer& context_serializer) const {
95 sink.PutInt(serializer.CurrentAllocationAddress(spaces[i]), "spaces");
112 const i::Serializer& serializer
    [all...]
serialize.cc     [all...]

Completed in 580 milliseconds

1 2