HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 51 - 75 of 452) sorted by null

1 23 4 5 6 7 8 91011>>

  /libcore/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 25 import java.io.Writer;
30 * Tests behaviour common to all implementations of {@link Writer}. This adapts
38 * Creates a new writer ready to receive an arbitrary number of chars. Each
42 public abstract Writer create() throws Exception;
45 * Returns the current set of chars written to the writer last returned by
46 * {@link #create}, and releases any resources held by that writer.
51 * Configures whether the writer is expected to throw exceptions when an
96 Writer out = create();
104 Writer out = create();
117 Writer out = create()
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
AppendableWriterTest.java 22 import java.io.Writer;
63 Writer writer = new AppendableWriter(builder); local
65 writer.write("Hello".toCharArray());
66 writer.write(',');
67 writer.write(0xBEEF0020); // only lower 16 bits are important
68 writer.write("Wo");
69 writer.write("Whirled".toCharArray(), 3, 2);
70 writer.write("Mad! Mad, I say", 2, 2);
77 Writer writer = new AppendableWriter(builder) local
89 Writer writer = new AppendableWriter(spy); local
106 Writer writer = new AppendableWriter(builder); local
    [all...]
  /frameworks/av/media/libnbaio/
NBLog.cpp 75 NBLog::Writer::Writer()
80 NBLog::Writer::Writer(size_t size, void *shared)
85 NBLog::Writer::Writer(size_t size, const sp<IMemory>& iMemory)
91 void NBLog::Writer::log(const char *string)
103 void NBLog::Writer::logf(const char *fmt, ...)
110 Writer::logvf(fmt, ap); // the Writer:: is needed to avoid virtual dispatch for LockedWrite
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
log_writer.cc 15 Writer::Writer(WritableFile* dest)
24 Writer::~Writer() {
27 Status Writer::AddRecord(const Slice& slice) {
75 Status Writer::EmitPhysicalRecord(RecordType t, const char* ptr, size_t n) {
  /frameworks/base/core/java/android/util/
LogWriter.java 19 import java.io.Writer;
22 public class LogWriter extends Writer {
29 * Create a new Writer that sends to the log with the given priority
  /frameworks/support/v4/java/android/support/v4/util/
LogWriter.java 21 import java.io.Writer;
29 public class LogWriter extends Writer {
34 * Create a new Writer that sends to the log with the given priority
  /libcore/luni/src/main/java/java/sql/
Clob.java 23 import java.io.Writer;
129 * @return a Writer which can be used to write unicode characters to this
134 public Writer setCharacterStream(long pos) throws SQLException;
SQLXML.java 23 import java.io.Writer;
58 * Returns a writer that can be used to write character data to this SQL {@code XML} object.
61 Writer setCharacterStream() throws SQLException;
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyWriter.java 21 import java.io.Writer;
39 * @param proxy the Writer to delegate to
41 public ProxyWriter(Writer proxy) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 26 * It is unfortunate that java.io.Writer is a class rather than an interface.
27 * The serializer has a number of classes that extend java.io.Writer
28 * and which send their ouput to a yet another wrapped Writer or OutputStream.
31 * the important methods defined on the java.io.Writer class, namely these:
42 * the base class rather than to the wrapped Writer or OutputStream.
44 * The purpose of this class is to have a uniform way of chaining the output of one writer to
45 * the next writer in the chain. In addition there are methods to obtain the Writer or
53 /** This method forces us to over-ride the method defined in java.io.Writer */
55 /** This method forces us to over-ride the method defined in java.io.Writer */
    [all...]
WriterToASCI.java 25 import java.io.Writer;
39 class WriterToASCI extends Writer implements WriterChain
46 * Create an unbuffered ASCII writer.
140 * @return reference to the result stream, or null of only a writer was
149 * Get the writer that this writer directly chains to.
151 public Writer getWriter()
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 1 //===-- AArch64MachObjectWriter.cpp - ARM Mach Object Writer --------------===//
36 void RecordRelocation(MachObjectWriter *Writer, const MCAssembler &Asm,
116 MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout,
119 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
209 Writer->addRelocation(Fragment->getParent(), MRE);
245 : Writer->getSymbolAddress(&A_SD, Layout)) -
248 : Writer->getSymbolAddress(A_Base, Layout));
250 : Writer->getSymbolAddress(&B_SD, Layout)) -
253 : Writer->getSymbolAddress(B_Base, Layout));
263 Writer->addRelocation(Fragment->getParent(), MRE)
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
TwoColumnOutput.java 38 import java.io.Writer;
46 /** non-null; underlying writer for final output */
47 private final Writer out;
59 * @param out non-null; writer to send final output to
64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth,
144 * Writes the given number of spaces to the given writer.
149 private static void writeSpaces(Writer out, int amt) throws IOException {
IndentingWriter.java 32 import java.io.Writer;
34 public class IndentingWriter extends Writer {
35 protected final Writer writer; field in class:IndentingWriter
41 public IndentingWriter(Writer writer) {
42 this.writer = writer;
47 writer.write(' ');
54 writer.write(newLine)
    [all...]
WrappedIndentingWriter.java 36 import java.io.Writer;
39 * Writer that wraps another writer and passes width-limited and
66 * @param out non-null; writer to send final output to
71 public WrappedIndentingWriter(Writer out, int width, String prefix) {
96 * @param out non-null; writer to send final output to
100 public WrappedIndentingWriter(Writer out, int width) {
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLWriter.java 12 import java.io.Writer;
30 public HTMLWriter (final Writer out)
116 private Writer m_out;
  /external/proguard/src/proguard/io/
DataEntryRewriter.java 58 Writer writer = new BufferedWriter(new OutputStreamWriter(outputStream)); local
60 copyData(reader, writer);
62 writer.flush();
69 * writer.
72 Writer writer)
97 writeUpdatedWord(writer, word.toString());
101 writer.write(c);
106 writeUpdatedWord(writer, word.toString())
    [all...]
  /frameworks/base/services/core/java/com/android/server/net/
DelayedDiskWrite.java 36 public interface Writer {
40 public void write(final String filePath, final Writer w) {
62 private void doWrite(String filePath, Writer w) {
  /external/smack/asmack-master/static-src/custom/de/measite/smack/
AndroidDebugger.java 13 import java.io.Writer;
38 private Writer writer; field in class:AndroidDebugger
43 public AndroidDebugger(Connection connection, Writer writer, Reader reader) {
45 this.writer = writer;
66 // Create a special Writer that wraps the main Writer and logs data to the GUI.
67 ObservableWriter debugWriter = new ObservableWriter(writer);
    [all...]
  /external/smack/src/de/measite/smack/
AndroidDebugger.java 13 import java.io.Writer;
38 private Writer writer; field in class:AndroidDebugger
43 public AndroidDebugger(Connection connection, Writer writer, Reader reader) {
45 this.writer = writer;
66 // Create a special Writer that wraps the main Writer and logs data to the GUI.
67 ObservableWriter debugWriter = new ObservableWriter(writer);
    [all...]
  /external/smack/src/org/jivesoftware/smack/debugger/
ConsoleDebugger.java 27 import java.io.Writer;
52 private Writer writer; field in class:ConsoleDebugger
57 public ConsoleDebugger(Connection connection, Writer writer, Reader reader) {
59 this.writer = writer;
80 // Create a special Writer that wraps the main Writer and logs data to the GUI.
81 ObservableWriter debugWriter = new ObservableWriter(writer);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /external/smack/src/org/jivesoftware/smack/util/
ObservableWriter.java 27 * An ObservableWriter is a wrapper on a Writer that notifies to its listeners when
32 public class ObservableWriter extends Writer {
34 Writer wrappedWriter = null;
37 public ObservableWriter(Writer wrappedWriter) {
93 * Adds a writer listener to this writer that will be notified when
96 * @param writerListener a writer listener.
110 * Removes a writer listener from this writer.
112 * @param writerListener a writer listener
    [all...]

Completed in 549 milliseconds

1 23 4 5 6 7 8 91011>>