HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 76 - 100 of 1308) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/lib/Serialization/
GeneratePCH.cpp 34 Writer(Stream, Extensions, IncludeTimestamps),
54 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot,
63 return &Writer;
67 return &Writer;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCacheAdapter.java 18 public void put(Key key, Writer writer) {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DelimitedWriter.java 15 import java.io.Writer;
41 private final Writer delegate;
45 * Creates a new Delimited writer using the default delimiter
48 * Writer to delegate all writes to
50 public DelimitedWriter(final Writer delegate) {
55 * Creates a new Delimited writer using the default delimiter
58 * Writer to delegate all writes to
62 public DelimitedWriter(final Writer delegate, final char delimiter) {
74 * Error writing to the underlying writer object
90 * Error writing to the underlying writer objec
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
NameMap.h 30 Error commit(codeview::StreamWriter &Writer);
  /frameworks/av/services/audioflinger/
TypedLogger.h 85 #define LOGT(fmt, ...) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
90 #define LOG_HIST_TS() do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
94 #define LOG_AUDIO_STATE() do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
99 extern thread_local NBLog::Writer *tlNBLogWriter;
  /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) {
44 public void write(final String filePath, final Writer w, final boolean open) {
66 private void doWrite(String filePath, Writer w, boolean open) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/condense/
condense.cpp 7 #include "rapidjson/writer.h"
20 // Prepare JSON writer and output stream.
23 Writer<FileWriteStream> writer(os);
25 // JSON reader parse from the input stream and let writer generate the output.
26 if (!reader.Parse(is, writer)) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/
simpledom.cpp 5 #include "rapidjson/writer.h"
23 Writer<StringBuffer> writer(buffer);
24 d.Accept(writer);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/PDB/Native/
StringTableBuilder.h 34 Error commit(BinaryStreamWriter &Writer) const;
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 23 import java.io.Writer;
31 /** {@code non-null;} underlying writer for final output */
32 private final Writer out;
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
132 * Gets the writer to use to write to the left column.
134 * @return {@code non-null;} the left column writer
136 public Writer getLeft()
    [all...]
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 23 import java.io.Writer;
31 /** {@code non-null;} underlying writer for final output */
32 private final Writer out;
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
132 * Gets the writer to use to write to the left column.
134 * @return {@code non-null;} the left column writer
136 public Writer getLeft()
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 27 import java.io.Writer;
33 * (<code>OutputStream</code>, <code>Writer</code>, <code>String</code> and
85 * 2 copy Reader Writer (primitive)
87 * 3 copy InputStream Writer 2
92 * 6 copy String Writer (trivial)
94 * 7 copy byte[] Writer 3
143 // byte[] -> Writer
148 * <code>Writer</code>.
151 * @param output the <code>Writer</code> to write to
154 public static void copy(byte[] input, Writer output
    [all...]
  /external/apache-harmony/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...]
  /libcore/luni/src/test/java/libcore/java/io/
OldWriterTest.java 20 import java.io.Writer;
27 Writer tobj = new Support_ASimpleWriter(2);
41 Writer tobj = new Support_ASimpleWriter(20);
54 Writer tobj = new Support_ASimpleWriter(21);
68 tobj.append(testString, 20, 21); // Just fill the writer to its limit!
79 Writer tobj = new Support_ASimpleWriter(21);
101 Writer tobj = new Support_ASimpleWriter(21);
108 tobj.write("z".toCharArray()); // Just fill the writer to its limit!
118 Writer tobj = new Support_ASimpleWriter(2);
131 Writer tobj = new Support_ASimpleWriter(21)
    [all...]
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
must.go 19 // MustWriter returns a Writer that wraps the provided Writer,
21 func MustWriter(w io.Writer) io.Writer {
26 w io.Writer
  /prebuilts/go/darwin-x86/test/fixedbugs/bug345.dir/
main.go 20 // main.go:25: cannot use w (type "/Users/rsc/g/go/test/fixedbugs/bug345.dir/io".Writer) as type "io".Writer in function argument:
21 // io.Writer does not implement io.Writer (missing Write method)
24 var w io.Writer
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
must.go 19 // MustWriter returns a Writer that wraps the provided Writer,
21 func MustWriter(w io.Writer) io.Writer {
26 w io.Writer

Completed in 651 milliseconds

1 2 34 5 6 7 8 91011>>