Searched refs:writer (Results 226 - 250 of 645) sorted by relevance

1234567891011>>

/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/
H A DMarshalBase64.java40 public void writeInstance(XmlSerializer writer, Object obj) throws IOException { argument
41 writer.text(Base64.encode((byte[]) obj));
H A DMarshalDate.java40 public void writeInstance(XmlSerializer writer, Object obj) throws IOException { argument
41 writer.text(IsoDate.dateToString((Date) obj, IsoDate.DATE_TIME));
/external/ksoap2/ksoap2-j2se/src/main/java/org/ksoap2/serialization/
H A DMarshalFloat.java47 public void writeInstance(XmlSerializer writer, Object instance) throws IOException { argument
48 writer.text(instance.toString());
/external/libvpx/libvpx/examples/
H A Dsimple_encoder.c122 VpxVideoWriter *writer) {
136 if (!vpx_video_writer_write_frame(writer,
158 VpxVideoWriter *writer = NULL; local
224 writer = vpx_video_writer_open(outfile_arg, kContainerIVF, &info);
225 if (!writer)
239 encode_frame(&codec, &raw, frame_count++, flags, writer);
243 while (encode_frame(&codec, NULL, -1, 0, writer)) {};
253 vpx_video_writer_close(writer);
118 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, int flags, VpxVideoWriter *writer) argument
H A Dvp8cx_set_ref.c70 VpxVideoWriter *writer) {
84 if (!vpx_video_writer_write_frame(writer,
107 VpxVideoWriter *writer = NULL; local
157 writer = vpx_video_writer_open(argv[4], kContainerIVF, &info);
158 if (!writer)
177 encode_frame(&codec, &raw, frame_count++, writer);
181 while (encode_frame(&codec, NULL, -1, writer)) {}
191 vpx_video_writer_close(writer);
67 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, VpxVideoWriter *writer) argument
H A Dvp9_lossless_encoder.c34 VpxVideoWriter *writer) {
48 if (!vpx_video_writer_write_frame(writer,
70 VpxVideoWriter *writer = NULL; local
112 writer = vpx_video_writer_open(argv[4], kContainerIVF, &info);
113 if (!writer)
127 encode_frame(&codec, &raw, frame_count++, 0, writer);
131 while (encode_frame(&codec, NULL, -1, 0, writer)) {}
141 vpx_video_writer_close(writer);
30 encode_frame(vpx_codec_ctx_t *codec, vpx_image_t *img, int frame_index, int flags, VpxVideoWriter *writer) argument
/external/skia/tools/
H A DPictureBenchmark.h55 void setWriter(PictureResultsWriter* writer) { fWriter = writer; } argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
H A DBuilderAnnotation.java32 package org.jf.dexlib2.writer.builder;
35 import org.jf.dexlib2.writer.DexWriter;
H A DBuilderAnnotationSet.java32 package org.jf.dexlib2.writer.builder;
35 import org.jf.dexlib2.writer.DexWriter;
H A DBuilderFieldReference.java32 package org.jf.dexlib2.writer.builder;
35 import org.jf.dexlib2.writer.DexWriter;
H A DBuilderTypeList.java32 package org.jf.dexlib2.writer.builder;
35 import org.jf.dexlib2.writer.DexWriter;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DAnnotationSetPool.java32 package org.jf.dexlib2.writer.pool;
35 import org.jf.dexlib2.writer.AnnotationSetSection;
H A DBaseIndexPool.java32 package org.jf.dexlib2.writer.pool;
35 import org.jf.dexlib2.writer.IndexSection;
H A DBaseOffsetPool.java32 package org.jf.dexlib2.writer.pool;
35 import org.jf.dexlib2.writer.OffsetSection;
H A DStringPool.java32 package org.jf.dexlib2.writer.pool;
35 import org.jf.dexlib2.writer.StringSection;
H A DTypePool.java32 package org.jf.dexlib2.writer.pool;
35 import org.jf.dexlib2.writer.TypeSection;
/external/deqp/executor/
H A DxeCallQueue.hpp125 // Stream operators for call reader / writer.
128 CallWriter& operator<< (CallWriter& writer, const char* str);
138 CallWriter& operator<< (CallWriter& writer, T& value) argument
140 writer.write((const deUint8*)&value, sizeof(T));
141 return writer;
H A DxeTestLogWriter.hpp23 * \brief Test log writer.
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
/external/guava/guava/src/com/google/common/io/
H A DCharSink.java34 * <li><b>Methods that return a writer:</b> These methods should return a <i>new</i>,
36 * returned writer is closed.
38 * typically implemented by opening a writer using one of the methods in the first category,
39 * doing something and finally closing the writer that was opened.
58 * independent writer each time it is called.
60 * <p>The caller is responsible for ensuring that the returned writer is closed.
62 * @throws IOException if an I/O error occurs in the process of opening the writer
85 * additional buffering. This method should return a new, independent writer each time it is
88 * <p>The caller is responsible for ensuring that the returned writer is closed.
90 * @throws IOException if an I/O error occurs in the process of opening the writer
[all...]
/external/guava/guava-gwt/src/com/google/common/base/
H A DAbsent_CustomFieldSerializer.java40 public static void serialize(SerializationStreamWriter writer, Absent<?> instance) {} argument
/external/guava/guava-gwt/src/com/google/common/collect/
H A DAllEqualOrdering_CustomFieldSerializer.java35 public static void serialize(SerializationStreamWriter writer, AllEqualOrdering instance) { argument
H A DEmptyImmutableBiMap_CustomFieldSerializer.java36 public static void serialize(SerializationStreamWriter writer, EmptyImmutableBiMap instance) { argument
H A DEmptyImmutableListMultimap_CustomFieldSerializer.java39 public static void serialize(SerializationStreamWriter writer, argument
H A DEmptyImmutableSetMultimap_CustomFieldSerializer.java39 public static void serialize(SerializationStreamWriter writer, argument
H A DEmptyImmutableSet_CustomFieldSerializer.java38 public static void serialize(SerializationStreamWriter writer, argument

Completed in 586 milliseconds

1234567891011>>