HomeSort by relevance Sort by last modified time
    Searched full:writer (Results 276 - 300 of 998) sorted by null

<<11121314151617181920>>

  /sdk/chimpchat/src/com/android/chimpchat/core/
ChimpImageBase.java 97 ImageWriter writer = writers.next(); local
104 writer.setOutput(outputStream);
107 writer.write(image);
109 writer.dispose();
  /cts/tools/dx-tests/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/guava/src/com/google/common/io/
CharStreams.java 30 import java.io.Writer;
45 * {@link java.io.Writer}.
419 * Returns a Writer that sends all output to the given {@link Appendable}
420 * target. Closing the writer will close the target if it is {@link
421 * Closeable}, and flushing the writer will flush the target if it is {@link
425 * @return a new Writer object, unless target is a Writer, in which case the
428 public static Writer asWriter(Appendable target) {
429 if (target instanceof Writer) {
430 return (Writer) target
    [all...]
  /external/valgrind/main/drd/
drd_rwlock.c 46 // Segment of last unlock call by this thread that unlocked a writer lock.
166 * reader-writer lock p into the vector clock of thread 'tid'.
304 "Not a reader-writer lock",
346 "Reader-writer lock reinitialization",
371 "Not a reader-writer lock",
405 "reader-writer lock 0x%lx is already locked for"
481 "Recursive writer locking not allowed",
558 "Not a reader-writer lock",
571 "Reader-writer lock not locked by calling thread",
656 "Reader-writer lock still locked at thread exit"
    [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)
WriterToUTF8Buffered.java 26 import java.io.Writer;
39 final class WriterToUTF8Buffered extends Writer implements WriterChain
74 * Create an buffered UTF-8 writer.
98 * Create an buffered UTF-8 writer to write data to the
488 * @return reference to the result stream, or null of only a writer was
496 public Writer getWriter()
499 // This type of writer wraps an OutputStream, not a Writer.
  /frameworks/base/cmds/stagefright/
recordvideo.cpp 283 sp<MPEG4Writer> writer = new MPEG4Writer(fileName); local
284 writer->addSource(encoder);
286 CHECK_EQ(OK, writer->start());
287 while (!writer->reachedEOS()) {
289 err = writer->stop();
  /frameworks/base/core/java/com/android/internal/util/
FastXmlSerializer.java 25 import java.io.Writer;
56 private Writer mWriter;
309 public void setOutput(Writer writer) throws IOException, IllegalArgumentException,
311 mWriter = writer;
  /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/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
  /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);
ClassMemberValue.java 122 public void write(AnnotationsWriter writer) throws IOException {
123 writer.classInfoIndex(cp.getUtf8Info(valueIndex));
EnumMemberValue.java 115 public void write(AnnotationsWriter writer) throws IOException {
116 writer.enumConstValue(cp.getUtf8Info(typeIndex), getValue());
  /external/webp/src/enc/
syntax.c 55 if (!pic->writer(RIFF, sizeof(RIFF), pic)) {
76 return pic->writer(buf, sizeof(buf), pic);
154 return p ? pic->writer(buf, 3 * p, pic) : 1;
272 && pic->writer(part0, size0, pic)
282 ok = ok && pic->writer(buf, size, pic);
289 ok = pic->writer(pad_byte, 1, pic);
  /libcore/luni/src/main/java/java/util/
Properties.java 30 import java.io.Writer;
531 * @param writer the {@code Writer}
537 public synchronized void store(Writer writer, String comment) throws IOException {
539 writer.write("#");
540 writer.write(comment);
541 writer.write(System.lineSeparator());
543 writer.write("#");
544 writer.write(new Date().toString())
    [all...]
  /frameworks/media/libvideoeditor/vss/src/
M4PTO3GPP_API.c 147 * @param pFileWritePtrFct (IN) Pointer to OSAL file writer functions
194 * Writer stuff */
625 * In case this is the first step, we prepare the decoder, the encoder and the writer */
632 * Prepare the reader, the decoder, the encoder, the writer... */
    [all...]
  /external/opencv/cxcore/src/
cxdatastructs.cpp 931 * Sequence Writer implementation *
934 /* Initialize sequence writer: */
936 cvStartAppendToSeq( CvSeq *seq, CvSeqWriter * writer )
942 if( !seq || !writer )
945 memset( writer, 0, sizeof( *writer ));
946 writer->header_size = sizeof( CvSeqWriter );
948 writer->seq = seq;
949 writer->block = seq->first ? seq->first->prev : 0;
950 writer->ptr = seq->ptr
2610 CvSeqWriter writer; local
    [all...]
  /dalvik/dx/src/junit/textui/
ResultPrinter.java 19 public ResultPrinter(PrintStream writer) {
20 fWriter= writer;
TestRunner.java 42 public TestRunner(PrintStream writer) {
43 this(new ResultPrinter(writer));
  /development/tools/mkstubs/src/com/android/mkstubs/
FilterClassAdapter.java 39 public FilterClassAdapter(ClassVisitor writer, Filter filter, Logger log) {
40 super(writer);
  /external/chromium/sdch/open-vcdiff/src/
encodetable_test.cc 121 static void ExpectNoMatchesForWriter(const VCDiffCodeTableWriter& writer) {
122 const std::vector<int>& match_counts = writer.match_counts();
147 // The code table writer for standard encoding, default code table.
150 // The code table writer for interleaved encoding, default code table.
153 // The code table writer corresponding to g_exercise_code_table_
204 // The writer should know not to append a delta file window
331 // writer encodes COPY instructions because the code table writer
  /external/doclava/src/com/google/doclava/
Proofread.java 22 import java.io.Writer;
27 static Writer out = null;
  /external/junit/src/junit/textui/
ResultPrinter.java 19 public ResultPrinter(PrintStream writer) {
20 fWriter= writer;
  /external/llvm/lib/Target/ARM/
ARMELFWriterInfo.cpp 1 //===-- ARMELFWriterInfo.cpp - ELF Writer Info for the ARM backend --------===//
10 // This file implements ELF writer information for the ARM backend.

Completed in 7558 milliseconds

<<11121314151617181920>>