Searched refs:Writer (Results 26 - 50 of 300) sorted by relevance

1234567891011>>

/external/clang/lib/Frontend/
H A DTestModuleFileExtension.h28 class Writer : public ModuleFileExtensionWriter { class in class:clang::TestModuleFileExtension
30 Writer(ModuleFileExtension *Ext) : ModuleFileExtensionWriter(Ext) { } function in class:clang::TestModuleFileExtension::Writer
31 ~Writer() override;
62 createExtensionWriter(ASTWriter &Writer) override;
/external/clang/lib/Serialization/
H A DGeneratePCH.cpp34 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/
H A DDiskCacheAdapter.java18 public void put(Key key, Writer writer) {
/external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
H A DDelimitedWriter.java15 import java.io.Writer;
41 private final Writer delegate;
48 * Writer to delegate all writes to
50 public DelimitedWriter(final Writer delegate) {
58 * Writer to delegate all writes to
62 public DelimitedWriter(final Writer delegate, final char delimiter) {
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
H A DCharSinkTester.java25 import java.io.Writer;
30 * Tests behaviour common to all implementations of {@link Writer}. This adapts
42 public abstract Writer create() throws Exception;
96 Writer out = create();
104 Writer out = create();
117 Writer out = create();
129 Writer out = create();
141 Writer out = create();
172 Writer out = create();
181 Writer ou
[all...]
/external/guava/guava/src/com/google/common/io/
H A DAppendableWriter.java24 import java.io.Writer;
29 * Writer that places all output on an {@link Appendable} target. If the target
37 class AppendableWriter extends Writer {
51 * Abstract methods from Writer
97 @Override public Writer append(char c) throws IOException {
103 @Override public Writer append(@Nullable CharSequence charSeq) throws IOException {
109 @Override public Writer append(@Nullable CharSequence charSeq, int start, int end)
H A DCharStreams.java28 import java.io.Writer;
41 * {@link java.io.Writer}.
179 * Returns a {@link Writer} that simply discards written chars.
183 public static Writer nullWriter() {
187 private static final class NullWriter extends Writer {
216 public Writer append(CharSequence csq) {
222 public Writer append(CharSequence csq, int start, int end) {
228 public Writer append(char c) {
247 * Returns a Writer that sends all output to the given {@link Appendable}
253 * @return a new Writer objec
[all...]
/external/guava/guava-tests/test/com/google/common/io/
H A DAppendableWriterTest.java22 import java.io.Writer;
63 Writer writer = new AppendableWriter(builder);
77 Writer writer = new AppendableWriter(builder);
89 Writer writer = new AppendableWriter(spy);
106 Writer writer = new AppendableWriter(builder);
/external/llvm/tools/llvm-readobj/
H A DObjDumper.h29 ObjDumper(ScopedPrinter &Writer);
85 ScopedPrinter &Writer,
89 ScopedPrinter &Writer,
93 ScopedPrinter &Writer,
98 void dumpCodeViewMergedTypes(ScopedPrinter &Writer,
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterChain.java26 * 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.
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 */
57 /** This method forces us to over-ride the method defined in java.io.Writer */
59 /** This method forces us to over-ride the method defined in java.io.Writer */
[all...]
H A DWriterToASCI.java25 import java.io.Writer;
39 class WriterToASCI extends Writer implements WriterChain
151 public Writer getWriter()
/external/llvm/include/llvm/DebugInfo/PDB/Raw/
H A DNameMap.h30 Error commit(codeview::StreamWriter &Writer);
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp1 //===-- AArch64MachObjectWriter.cpp - ARM Mach Object Writer --------------===//
36 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
145 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout,
148 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
232 Writer->addRelocation(A_Base, Fragment->getParent(), MRE);
277 Value += (!A->getFragment() ? 0 : Writer->getSymbolAddress(*A, Layout)) -
278 (!A_Base || !A_Base->getFragment() ? 0 : Writer->getSymbolAddress(
280 Value -= (!B->getFragment() ? 0 : Writer->getSymbolAddress(*B, Layout)) -
281 (!B_Base || !B_Base->getFragment() ? 0 : Writer->getSymbolAddress(
289 Writer
144 recordRelocation( MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/smali/util/src/main/java/org/jf/util/
H A DTwoColumnOutput.java38 import java.io.Writer;
47 private final Writer out;
64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth,
149 private static void writeSpaces(Writer out, int amt) throws IOException {
H A DIndentingWriter.java32 import java.io.Writer;
34 public class IndentingWriter extends Writer {
35 protected final Writer writer;
41 public IndentingWriter(Writer writer) {
136 public Writer append(CharSequence charSequence) throws IOException {
142 public Writer append(CharSequence charSequence, int start, int len) throws IOException {
148 public Writer append(char c) throws IOException {
H A DWrappedIndentingWriter.java36 import java.io.Writer;
39 * Writer that wraps another writer and passes width-limited and
71 public WrappedIndentingWriter(Writer out, int width, String prefix) {
100 public WrappedIndentingWriter(Writer out, int width) {
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLWriter.java12 import java.io.Writer;
30 public HTMLWriter (final Writer out)
116 private Writer m_out;
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
H A DXMLDocument.java19 import java.io.Writer;
59 final boolean standalone, final Writer writer) throws IOException {
100 final boolean standalone, final Writer writer) throws IOException {
/external/llvm/lib/DebugInfo/PDB/Raw/
H A DInfoStream.cpp79 StreamWriter Writer(*Stream);
86 if (auto EC = Writer.writeObject(H))
89 return NamedStreams.commit(Writer);
H A DNameMap.cpp148 Error NameMap::commit(codeview::StreamWriter &Writer) { argument
149 if (auto EC = Writer.writeInteger(0U)) // Number of bytes in table
152 if (auto EC = Writer.writeInteger(0U)) // Hash Size
155 if (auto EC = Writer.writeInteger(0U)) // Max Number of Strings
158 if (auto EC = Writer.writeInteger(0U)) // Num Present Words
161 if (auto EC = Writer.writeInteger(0U)) // Num Deleted Words
/external/proguard/src/proguard/io/
H A DDataEntryRewriter.java58 Writer writer = new BufferedWriter(new OutputStreamWriter(outputStream));
72 Writer writer)
116 private void writeUpdatedWord(Writer writer, String word)
/external/llvm/unittests/Support/
H A DEndianStreamTest.cpp24 endian::Writer<little> LE(OS);
39 endian::Writer<big> BE(OS);
55 endian::Writer<little> LE(OS);
70 endian::Writer<big> BE(OS);
85 endian::Writer<little> LE(OS);
104 endian::Writer<big> BE(OS);
123 endian::Writer<little> LE(OS);
142 endian::Writer<big> BE(OS);
161 endian::Writer<little> LE(OS);
176 endian::Writer<littl
[all...]
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/
H A DOpenedSocket.java60 return new OpenedSocket(new Reader(input), new Writer(output));
64 private final Writer writer;
67 Writer objectOutputStream) {
76 public Writer writer() {
107 public static final class Writer implements Closeable, Flushable { class in class:OpenedSocket
110 Writer(ObjectOutputStream output) { method in class:OpenedSocket.Writer
/external/llvm/include/llvm/MC/
H A DMCObjectWriter.h1 //===-- llvm/MC/MCObjectWriter.h - Object File Writer Interface -*- C++ -*-===//
130 support::endian::Writer<support::little>(*OS).write(Value);
134 support::endian::Writer<support::little>(*OS).write(Value);
138 support::endian::Writer<support::little>(*OS).write(Value);
142 support::endian::Writer<support::big>(*OS).write(Value);
146 support::endian::Writer<support::big>(*OS).write(Value);
150 support::endian::Writer<support::big>(*OS).write(Value);
/external/llvm/unittests/ProfileData/
H A DInstrProfTest.cpp45 InstrProfWriter Writer; member in struct:__anon13676::InstrProfTest
48 void SetUp() { Writer.setOutputSparse(false); }
58 void SetUp() { Writer.setOutputSparse(true); }
63 void SetUp() { Writer.setOutputSparse(GetParam()); }
67 auto Profile = Writer.writeBuffer();
74 NoError(Writer.addRecord(std::move(Record)));
75 auto Profile = Writer.writeBuffer();
93 NoError(Writer.addRecord(std::move(Record1)));
94 NoError(Writer.addRecord(std::move(Record2)));
95 auto Profile = Writer
[all...]

Completed in 2548 milliseconds

1234567891011>>