Searched defs:writeObject (Results 1 - 25 of 28) sorted by relevance

12

/external/easymock/src/org/easymock/internal/
H A DLegacyMatcherProvider.java91 private void writeObject(java.io.ObjectOutputStream stream) method in class:LegacyMatcherProvider
100 stream.writeObject(map);
H A DObjectMethodsFilter.java103 private void writeObject(java.io.ObjectOutputStream stream) throws IOException { method in class:ObjectMethodsFilter
105 stream.writeObject(new MethodSerializationWrapper(toStringMethod));
106 stream.writeObject(new MethodSerializationWrapper(equalsMethod));
107 stream.writeObject(new MethodSerializationWrapper(hashCodeMethod));
H A DInvocation.java214 private void writeObject(java.io.ObjectOutputStream stream) throws IOException { method in class:Invocation
216 stream.writeObject(new MethodSerializationWrapper(method));
/external/guava/src/com/google/common/collect/
H A DEnumBiMap.java108 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:EnumBiMap
110 stream.writeObject(keyType);
111 stream.writeObject(valueType);
115 @SuppressWarnings("unchecked") // reading fields populated by writeObject
H A DEnumHashBiMap.java93 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:EnumHashBiMap
95 stream.writeObject(keyType);
99 @SuppressWarnings("unchecked") // reading field populated by writeObject
H A DEnumMultiset.java68 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:EnumMultiset
70 stream.writeObject(type);
82 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DHashMultimap.java121 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:HashMultimap
H A DHashMultiset.java80 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:HashMultiset
H A DLinkedHashMultiset.java88 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:LinkedHashMultiset
H A DArrayListMultimap.java143 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:ArrayListMultimap
H A DHashBiMap.java94 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:HashBiMap
H A DTreeMultimap.java189 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:TreeMultimap
191 stream.writeObject(keyComparator());
192 stream.writeObject(valueComparator());
196 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DTreeMultiset.java198 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:TreeMultiset
200 stream.writeObject(elementSet().comparator());
207 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DConcurrentHashMultiset.java471 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:ConcurrentHashMultiset
H A DImmutableListMultimap.java295 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:ImmutableListMultimap
H A DImmutableSetMultimap.java341 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:ImmutableSetMultimap
H A DLinkedHashMultimap.java352 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:LinkedHashMultimap
357 stream.writeObject(entry.getKey());
358 stream.writeObject(entry.getValue());
373 @SuppressWarnings("unchecked") // reading data stored by writeObject
375 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DAbstractBiMap.java374 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:AbstractBiMap.Inverse
376 stream.writeObject(inverse());
379 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DImmutableMultiset.java336 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:ImmutableMultiset
H A DLinkedListMultimap.java926 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:LinkedListMultimap
930 stream.writeObject(entry.getKey());
931 stream.writeObject(entry.getValue());
943 @SuppressWarnings("unchecked") // reading data stored by writeObject
945 @SuppressWarnings("unchecked") // reading data stored by writeObject
H A DMapMaker.java702 private void writeObject(ObjectOutputStream out) method in class:MapMaker.StrategyImpl
707 out.writeObject(keyStrength);
708 out.writeObject(valueStrength);
715 out.writeObject(internals);
716 out.writeObject(map);
H A DMultimaps.java119 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomMultimap
121 stream.writeObject(factory);
122 stream.writeObject(backingMap());
125 @SuppressWarnings("unchecked") // reading data stored by writeObject
194 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomListMultimap
196 stream.writeObject(factory);
197 stream.writeObject(backingMap());
200 @SuppressWarnings("unchecked") // reading data stored by writeObject
269 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomSetMultimap
271 stream.writeObject(factor
350 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Multimaps.CustomSortedSetMultimap
[all...]
H A DSynchronized.java78 // Serialization invokes writeObject only when it's private.
79 // The SynchronizedObject subclasses don't need a writeObject method since
81 // following writeObject() handles the SynchronizedObject members.
83 private void writeObject(ObjectOutputStream stream) throws IOException { method in class:Synchronized.SynchronizedObject
/external/emma/core/java12/com/vladium/util/exception/
H A DAbstractException.java315 private void writeObject (final ObjectOutputStream out) method in class:AbstractException
H A DAbstractRuntimeException.java315 private void writeObject (final ObjectOutputStream out) method in class:AbstractRuntimeException

Completed in 87 milliseconds

12