HomeSort by relevance Sort by last modified time
    Searched full:writer (Results 601 - 625 of 2093) sorted by null

<<21222324252627282930>>

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/service/
EmailServiceStatus.java 88 * @param writer If not null, an object which will write additional status fields.
93 final StatusWriter writer) {
106 if (writer != null) {
107 writer.addToStatus(statusExtras);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterMirrorRepresentation.java 186 public void serializeRepresentation(JsonWriter writer) throws IOException {
187 writer.beginObject();
188 writer.name(SERIALIZATION_MIRROR_VALUE).value(mMirror.value());
189 writer.endObject();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
package.html 22 <code>OutputStream</code> and <code>Writer</code>.
  /cts/tools/cfassembler/src/dxconvext/
ClassFileParser.java 33 import java.io.Writer;
37 private BufferedWriter bw; // the writer to write the result to.
84 Writer w;
90 // Writer w = new OutputStreamWriter(System.out);
97 * @param w the writer to write the generated .cfh file to
103 void processFileBytes(Writer w, String name, final byte[] allbytes) throws IOException {
255 throw new RuntimeException("error while writing to the writer", ioe);
  /external/chromium_org/third_party/libwebp/enc/
syntax.c 35 return !!pic->writer(pad_byte, 1, pic);
49 if (!pic->writer(riff, sizeof(riff), pic)) {
74 if (!pic->writer(vp8x, sizeof(vp8x), pic)) {
90 if (!pic->writer(alpha_chunk_hdr, sizeof(alpha_chunk_hdr), pic)) {
95 if (!pic->writer(enc->alpha_data_, enc->alpha_data_size_, pic)) {
113 if (!pic->writer(vp8_chunk_hdr, sizeof(vp8_chunk_hdr), pic)) {
146 if (!pic->writer(vp8_frm_hdr, sizeof(vp8_frm_hdr), pic)) {
265 return p ? pic->writer(buf, 3 * p, pic) : 1;
400 && pic->writer(part0, size0, pic)
410 ok = ok && pic->writer(buf, size, pic)
    [all...]
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 31 import java.io.Writer;
46 * {@link java.io.Writer}.
426 * Returns a Writer that sends all output to the given {@link Appendable}
427 * target. Closing the writer will close the target if it is {@link
428 * Closeable}, and flushing the writer will flush the target if it is {@link
432 * @return a new Writer object, unless target is a Writer, in which case the
435 public static Writer asWriter(Appendable target) {
436 if (target instanceof Writer) {
437 return (Writer) target
    [all...]
  /external/webp/src/enc/
syntax.c 35 return !!pic->writer(pad_byte, 1, pic);
49 if (!pic->writer(riff, sizeof(riff), pic)) {
74 if (!pic->writer(vp8x, sizeof(vp8x), pic)) {
90 if (!pic->writer(alpha_chunk_hdr, sizeof(alpha_chunk_hdr), pic)) {
95 if (!pic->writer(enc->alpha_data_, enc->alpha_data_size_, pic)) {
113 if (!pic->writer(vp8_chunk_hdr, sizeof(vp8_chunk_hdr), pic)) {
146 if (!pic->writer(vp8_frm_hdr, sizeof(vp8_frm_hdr), pic)) {
265 return p ? pic->writer(buf, 3 * p, pic) : 1;
400 && pic->writer(part0, size0, pic)
410 ok = ok && pic->writer(buf, size, pic)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToTextSAXHandler.java 25 import java.io.Writer;
117 public Writer getWriter()
176 * @see Serializer#setWriter(Writer)
178 public void setWriter(Writer writer)
  /external/chromium_org/chromeos/dbus/
modem_messaging_client_unittest.cc 181 dbus::MessageWriter writer(&signal);
182 writer.AppendObjectPath(kSmsPath);
183 writer.AppendBool(kComplete);
227 dbus::MessageWriter writer(response.get());
228 writer.AppendArrayOfObjectPaths(expected_result);
shill_client_helper.cc 398 void ShillClientHelper::AppendValueDataAsVariant(dbus::MessageWriter* writer,
406 writer->OpenVariant("a{ss}", &variant_writer);
424 writer->CloseContainer(&variant_writer);
431 writer->OpenVariant("as", &variant_writer);
444 writer->CloseContainer(&variant_writer);
451 dbus::AppendBasicTypeValueDataAsVariant(writer, value);
461 dbus::MessageWriter* writer,
464 writer->OpenArray("{sv}", &array_writer);
474 writer->CloseContainer(&array_writer);
nfc_client_helpers.cc 37 void AppendValueDataAsVariant(dbus::MessageWriter* writer,
45 writer->OpenVariant("a{sv}", &variant_writer);
56 writer->CloseContainer(&variant_writer);
64 writer->OpenVariant("av", &variant_writer);
72 writer->CloseContainer(&variant_writer);
79 dbus::AppendBasicTypeValueDataAsVariant(writer, value);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/udp/
UdpKernel.java 61 private ExecutorService writer; field in class:UdpKernel
93 writer = Executors.newFixedThreadPool(2, new NamedThreadFactory(toString() + "-writer"));
112 writer.shutdown();
204 writer.execute( new MessageWriter(endpoint, packet) );
  /frameworks/av/cmds/stagefright/
recordvideo.cpp 298 sp<MPEG4Writer> writer = new MPEG4Writer(fileName); local
299 writer->addSource(encoder);
301 CHECK_EQ((status_t)OK, writer->start());
302 while (!writer->reachedEOS()) {
305 err = writer->stop();
  /external/chromium_org/dbus/
property.h 166 virtual void AppendSetValueToWriter(MessageWriter* writer) = 0;
384 virtual void AppendSetValueToWriter(MessageWriter* writer);
411 template <> void Property<uint8>::AppendSetValueToWriter(MessageWriter* writer);
415 template <> void Property<bool>::AppendSetValueToWriter(MessageWriter* writer);
419 template <> void Property<int16>::AppendSetValueToWriter(MessageWriter* writer);
424 MessageWriter* writer);
428 template <> void Property<int32>::AppendSetValueToWriter(MessageWriter* writer);
433 MessageWriter* writer);
437 template <> void Property<int64>::AppendSetValueToWriter(MessageWriter* writer);
442 MessageWriter* writer);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
vtzone.h 371 void write(VTZWriter& writer, UErrorCode& status) const;
372 void write(UDate start, VTZWriter& writer, UErrorCode& status) /*const*/;
373 void writeSimple(UDate time, VTZWriter& writer, UErrorCode& status) /*const*/;
381 void writeFooter(VTZWriter& writer, UErrorCode& status) const;
383 void writeZonePropsByTime(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
386 void writeZonePropsByDOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
390 void writeZonePropsByDOW(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
394 void writeZonePropsByDOW_GEQ_DOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
398 void writeZonePropsByDOW_GEQ_DOM_sub(VTZWriter& writer, int32_t month, int32_t dayOfMonth,
401 void writeZonePropsByDOW_LEQ_DOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename
    [all...]
  /external/icu4c/i18n/unicode/
vtzone.h 371 void write(VTZWriter& writer, UErrorCode& status) const;
372 void write(UDate start, VTZWriter& writer, UErrorCode& status) const;
373 void writeSimple(UDate time, VTZWriter& writer, UErrorCode& status) const;
381 void writeFooter(VTZWriter& writer, UErrorCode& status) const;
383 void writeZonePropsByTime(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
386 void writeZonePropsByDOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
390 void writeZonePropsByDOW(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
394 void writeZonePropsByDOW_GEQ_DOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename,
398 void writeZonePropsByDOW_GEQ_DOM_sub(VTZWriter& writer, int32_t month, int32_t dayOfMonth,
401 void writeZonePropsByDOW_LEQ_DOM(VTZWriter& writer, UBool isDst, const UnicodeString& zonename
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
app_storage.html 206 writableFileEntry.createWriter(function(writer) {
207 writer.onerror = errorHandler;
208 writer.onwriteend = callback;
211 writer.write(file);
221 using the <code>writer.write()</code> method.
226 writableFileEntry.createWriter(function(writer) {
227 writer.onerror = errorHandler;
228 writer.onwriteend = function(e) {
231 writer.write(new Blob(['1234567890'], {type: 'text/plain'}));
  /external/valgrind/main/drd/
drd_rwlock.c 45 // Segment of last unlock call by this thread that unlocked a writer lock.
165 * reader-writer lock p into the vector clock of thread 'tid'.
293 "Not a reader-writer lock",
331 "Reader-writer lock reinitialization",
356 "Not a reader-writer lock",
454 "Recursive writer locking not allowed",
521 "Not a reader-writer lock",
534 "Reader-writer lock not locked by calling thread",
619 "Reader-writer lock still locked at thread exit",
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
StringUtils.java 450 final JsonWriter writer = new JsonWriter(sw); local
452 writer.beginArray();
454 writer.beginObject();
456 writer.name(Integer.class.getSimpleName()).value((Integer)o);
458 writer.name(String.class.getSimpleName()).value((String)o);
460 writer.endObject();
462 writer.endArray();
467 if (writer != null) {
468 writer.close();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PrintWriterTest.java 116 * @tests java.io.PrintWriter#PrintWriter(java.io.Writer)
119 // Test for method java.io.PrintWriter(java.io.Writer)
124 assertEquals("Failed to construct proper writer",
129 * @tests java.io.PrintWriter#PrintWriter(java.io.Writer, boolean)
132 // Test for method java.io.PrintWriter(java.io.Writer, boolean)
137 assertEquals("Failed to construct proper writer",
147 PrintWriter writer = new PrintWriter(file); local
148 writer.close();
160 PrintWriter writer = new PrintWriter(file, local
162 writer.close()
174 PrintWriter writer = new PrintWriter(file.getPath()); local
187 PrintWriter writer = new PrintWriter(file.getPath(), local
    [all...]
PipedReaderTest.java 35 System.out.println("Couldn't create writer");
128 Thread.sleep(500); // Allow writer to start
145 Thread.sleep(500); // Allow writer to start
166 Thread.sleep(500); // Allow writer to start
182 Thread.sleep(500); // Allow writer to start
380 Thread.sleep(500); // Allow writer to start
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
codecs.py 651 def __init__(self, stream, Reader, Writer, errors='strict'):
657 Reader, Writer must be factory functions or classes
666 self.writer = Writer(stream, errors)
691 return self.writer.write(data)
695 return self.writer.writelines(list)
700 self.writer.reset()
706 self.writer.reset()
736 of the provided Writer class.
746 def __init__(self, stream, encode, decode, Reader, Writer,
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
codecs.py 651 def __init__(self, stream, Reader, Writer, errors='strict'):
657 Reader, Writer must be factory functions or classes
666 self.writer = Writer(stream, errors)
691 return self.writer.write(data)
695 return self.writer.writelines(list)
700 self.writer.reset()
706 self.writer.reset()
736 of the provided Writer class.
746 def __init__(self, stream, encode, decode, Reader, Writer,
    [all...]
  /external/javassist/src/main/javassist/bytecode/annotation/
Annotation.java 302 * @param writer the output.
305 public void write(AnnotationsWriter writer) throws IOException {
308 writer.annotation(typeName, 0);
312 writer.annotation(typeName, members.size());
316 writer.memberValuePair(pair.name);
317 pair.value.write(writer);
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 171 StreamWriter &Writer,
177 return createCOFFDumper(Obj, Writer, Result);
179 return createELFDumper(Obj, Writer, Result);
181 return createMachODumper(Obj, Writer, Result);
189 StreamWriter Writer(outs());
191 if (error_code EC = createDumper(Obj, Writer, Dumper)) {

Completed in 717 milliseconds

<<21222324252627282930>>