HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 201 - 225 of 646) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/opencv3/modules/cudacodec/test/
test_video.cpp 76 CUDA_TEST_P(Video, Writer)
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXScanner.java 121 Writer w = new BufferedWriter(new OutputStreamWriter(System.out, "UTF-8"));
XMLWriter.java 20 import java.io.Writer;
129 * <p>The writer contains extensive support for XML Namespaces, so that
131 * supply <var>xmlns</var> attributes. By default, the XML writer will
151 * XML writer allows two methods for selecting prefixes:</p>
158 * <p>Whenever the XML writer finds a new Namespace URI, it checks
198 * <p>By default, the XML writer will not declare a Namespace until
219 * problem, you can instruct the XML writer to predeclare Namespaces
263 * Create a new XML writer.
274 * Create a new XML writer.
276 * <p>Write to the writer provided.</p
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 75 public interface Writer {
83 public interface Rewriter extends Reader, Writer {
188 public void combineActive(final Reader reader, final Writer writer, long currentTimeMillis)
208 writer.write(out);
378 private static void writeFile(File file, Writer writer) throws IOException {
382 writer.write(bos);
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
RSTestView.java 19 import java.io.Writer;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestView.java 19 import java.io.Writer;
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
RSTestView.java 19 import java.io.Writer;
  /art/compiler/debug/dwarf/
debug_frame_opcode_writer.h 23 #include "debug/dwarf/writer.h"
28 // Writer for .debug_frame opcodes (DWARF-3).
30 // The writer is very light-weight, however it will do the following for you:
35 class DebugFrameOpCodeWriter : private Writer<Vector> {
298 using Writer<Vector>::data;
303 : Writer<Vector>(&opcodes_),
writer.h 31 class Writer {
171 explicit Writer(Vector* buffer) : data_(buffer) { }
176 DISALLOW_COPY_AND_ASSIGN(Writer);
  /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/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.
  /external/guava/guava-tests/test/com/google/common/io/
CharStreamsTest.java 28 import java.io.Writer;
151 Writer result = CharStreams.asWriter(plainAppendable);
155 // A Writer should not be wrapped
194 // create a null writer
195 Writer nullWriter = CharStreams.nullWriter();
196 // write to the writer
  /external/icu/android_icu4j/src/main/java/android/icu/impl/duration/impl/
XMLRecordWriter.java 12 import java.io.Writer;
22 private Writer w;
25 public XMLRecordWriter(Writer w) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/impl/
XMLRecordWriter.java 11 import java.io.Writer;
18 private Writer w;
21 public XMLRecordWriter(Writer w) {
  /external/jetty/src/java/org/eclipse/jetty/io/
UncheckedPrintWriter.java 27 import java.io.Writer;
36 * {@link java.io.Writer} as {@link RuntimeIOException} instances.
53 public UncheckedPrintWriter(Writer out)
68 public UncheckedPrintWriter(Writer out, boolean autoFlush)
258 * Writer class because it must suppress I/O exceptions.
303 * Write a string. This method cannot be inherited from the Writer class
  /frameworks/base/core/java/android/util/
JsonWriter.java 21 import java.io.Writer;
34 * writer as you walk the structure's contents, nesting arrays and objects as
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
73 * writer.setIndent(" ");
74 * writeMessagesArray(writer, messages);
75 * writer.close();
78 * public void writeMessagesArray(JsonWriter writer, List<Message> messages) throws IOException {
79 * writer.beginArray();
81 * writeMessage(writer, message);
83 * writer.endArray()
    [all...]
  /libcore/ojluni/src/main/java/java/nio/channels/
Channels.java 34 import java.io.Writer;
394 * Constructs a writer that encodes characters using the given encoder and
416 * @return A new writer
418 public static Writer newWriter(final WritableByteChannel ch,
427 * Constructs a writer that encodes characters according to the named
449 * @return A new writer
455 public static Writer newWriter(WritableByteChannel ch,
  /cts/tests/tests/mediastress/src/android/mediastress/cts/
MediaRecorderStressTest.java 34 import java.io.Writer;
176 Writer output = new BufferedWriter(new FileWriter(stressOutFile, true));
220 Writer output = new BufferedWriter(new FileWriter(stressOutFile, true));
303 Writer output = new BufferedWriter(new FileWriter(stressOutFile, true));
407 Writer output = new BufferedWriter(
  /external/icu/android_icu4j/src/main/java/android/icu/util/
VTimeZone.java 13 import java.io.Writer;
206 * @param writer A <code>Writer</code> used for the output
207 * @throws IOException If there were problems creating a buffered writer or writing to it.
209 public void write(Writer writer) throws IOException {
210 BufferedWriter bw = new BufferedWriter(writer);
239 writeZone(writer, tz, customProperties);
247 * @param writer The <code>Writer</code> used for the outpu
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
VTimeZone.java 12 import java.io.Writer;
225 * @param writer A <code>Writer</code> used for the output
226 * @throws IOException If there were problems creating a buffered writer or writing to it.
230 public void write(Writer writer) throws IOException {
231 BufferedWriter bw = new BufferedWriter(writer);
260 writeZone(writer, tz, customProperties);
268 * @param writer The <code>Writer</code> used for the outpu
    [all...]
  /external/llvm/tools/llvm-profdata/
llvm-profdata.cpp 122 InstrProfWriter Writer;
131 if (std::error_code EC = Writer.addRecord(std::move(I), Input.Weight)) {
141 Writer.writeText(Output);
143 Writer.write(Output);
159 auto Writer = std::move(WriterOrErr.get());
190 Writer->write(ProfileMap);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
documenttest.cpp 17 #include "rapidjson/writer.h"
139 Writer<OutputStream, UTF16<>, UTF8<> > writer(eos);
140 d.Accept(writer);
148 Writer<StringBuffer> writer(bos2);
149 reader.Parse(is, writer);
178 Writer<StringBuffer> writer(bos);
179 d.Accept(writer);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DexFile.java 33 import java.io.Writer;
170 public void writeTo(OutputStream out, Writer humanOut, boolean verbose)
192 public byte[] toDex(Writer humanOut, boolean verbose)
  /dalvik/dx/src/com/android/dx/dex/file/
DexFile.java 33 import java.io.Writer;
189 public void writeTo(OutputStream out, Writer humanOut, boolean verbose)
211 public byte[] toDex(Writer humanOut, boolean verbose)

Completed in 674 milliseconds

1 2 3 4 5 6 7 891011>>