HomeSort by relevance Sort by last modified time
    Searched refs:writeObject (Results 76 - 100 of 357) sorted by null

1 2 34 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/io/
OldObjectOutputStreamPutFieldTest.java 38 * from within the private {@code writeObject(ObjectOutputStream)} method of a
46 * {@code writeObject(ObjectOutputStream)} and uses all {@code putX} methods in
58 * is written when {@code Support_GetPutFields.writeObject(ObjectOutputStream)}
59 * and {@code Support_GetPutFieldsDeprecated.writeObject(ObjectOutputStream)} is
85 oos.writeObject(toSerialize);
110 oos.writeObject(toSerialize);
OldObjectOutputStreamTest.java 59 private void writeObject(ObjectOutputStream oos) throws IOException {
240 * writeObject which simply read and write the first field but not the
252 oos.writeObject(new SerializableTestHelper("Gabba", "Jabba"));
267 oos.writeObject(o);
268 oos.writeObject(o);
270 oos.writeObject(o);
430 oos.writeObject(o);
  /libcore/luni/src/test/java/libcore/java/text/
OldMessageFormatFieldTest.java 59 out.writeObject(mfield);
60 out.writeObject(field);
  /prebuilts/tools/common/proguard/proguard4.7/examples/annotations/
examples.pro 56 private void writeObject(java.io.ObjectOutputStream);
  /prebuilts/tools/common/proguard/proguard4.7/examples/
applets.pro 58 private void writeObject(java.io.ObjectOutputStream);
applications.pro 64 private void writeObject(java.io.ObjectOutputStream);
library.pro 68 private void writeObject(java.io.ObjectOutputStream);
servlets.pro 59 private void writeObject(java.io.ObjectOutputStream);
  /external/guava/guava/src/com/google/common/collect/
Serialization.java 65 stream.writeObject(entry.getKey());
66 stream.writeObject(entry.getValue());
109 stream.writeObject(entry.getElement());
155 stream.writeObject(entry.getKey());
158 stream.writeObject(value);
EnumBiMap.java 114 private void writeObject(ObjectOutputStream stream) throws IOException {
116 stream.writeObject(keyType);
117 stream.writeObject(valueType);
121 @SuppressWarnings("unchecked") // reading fields populated by writeObject
TreeMultimap.java 177 private void writeObject(ObjectOutputStream stream) throws IOException {
179 stream.writeObject(keyComparator());
180 stream.writeObject(valueComparator());
185 @SuppressWarnings("unchecked") // reading data stored by writeObject
EnumHashBiMap.java 100 private void writeObject(ObjectOutputStream stream) throws IOException {
102 stream.writeObject(keyType);
106 @SuppressWarnings("unchecked") // reading field populated by writeObject
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
MapSerializer.java 128 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
181 keySerial.writeObject(buffer, entry.getKey());
186 valSerial.writeObject(buffer, entry.getValue());
CollectionSerializer.java 81 public void writeObject(ByteBuffer buffer, Object object) throws IOException {
105 serializer.writeObject(buffer, elem);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectStreamFieldTest.java 160 oos.writeObject(new SerializableObject());
181 oos.writeObject(new SerializableObject());
200 oos.writeObject(obj);
235 oos.writeObject(new MockClass());
273 private void writeObject(ObjectOutputStream o) throws IOException {
335 private void writeObject(ObjectOutputStream o) throws IOException {
  /art/test/093-serialization/src/
Main.java 49 objStream.writeObject(sub);
51 objStream.writeObject(inner);
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorAttributeTest.java 87 out.writeObject(dattribute);
89 out.writeObject(attribute);
  /external/easymock/src/org/easymock/internal/
LegacyMatcherProvider.java 91 private void writeObject(java.io.ObjectOutputStream stream)
100 stream.writeObject(map);
  /external/javassist/src/main/javassist/tools/reflect/
Metaobject.java 76 private void writeObject(ObjectOutputStream out) throws IOException {
77 out.writeObject(baseobject);
  /external/proguard/examples/
library.pro 67 private void writeObject(java.io.ObjectOutputStream);
  /libcore/luni/src/main/java/java/util/
HashSet.java 186 private void writeObject(ObjectOutputStream stream) throws IOException {
192 stream.writeObject(e);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERSequence.java 95 dOut.writeObject((ASN1Encodable)obj);
DERSet.java 105 dOut.writeObject((ASN1Encodable)obj);
DERTaggedObject.java 92 out.writeObject(primitive);
DLSequence.java 95 dOut.writeObject((ASN1Encodable)obj);

Completed in 651 milliseconds

1 2 34 5 6 7 8 91011>>