HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/llvm/lib/Bitcode/
Makefile 11 PARALLEL_DIRS = Reader Writer
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 29 ASTWriter &Writer;
36 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
37 : Writer(Writer), Record(Record) { }
50 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
51 Writer.AddSourceLocation(Args.LAngleLoc, Record);
52 Writer.AddSourceLocation(Args.RAngleLoc, Record);
54 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
62 Writer.AddSourceLocation(S->getSemiLoc(), Record);
72 Writer.AddStmt(*CS)
    [all...]
GeneratePCH.cpp 35 SemaPtr(0), StatCalls(0), Stream(Buffer), Writer(Stream) {
51 Writer.WriteAST(*SemaPtr, StatCalls, OutputFile, Module, isysroot);
64 return &Writer;
68 return &Writer;
ASTWriterDecl.cpp 36 ASTWriter &Writer;
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record)
46 : Writer(Writer), Context(Context), Record(Record) {
135 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
144 Writer.AddStmt(FD->getBody());
149 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
150 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
154 Writer.WriteAttributes(ArrayRef<const Attr*>(D->getAttrs().begin(),
162 Record.push_back(Writer.inferSubmoduleIDFromLocation(D->getLocation()))
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
Writers.java 20 import java.io.Writer;
23 * Utilities for dealing with {@code Writer}s.
34 * Makes a {@code PrintWriter} for the given {@code Writer},
35 * returning the given writer if it already happens to be the right
38 * @param writer {@code non-null;} writer to (possibly) wrap
41 public static PrintWriter printWriterFor(Writer writer) {
42 if (writer instanceof PrintWriter) {
43 return (PrintWriter) writer;
    [all...]
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/
Writers.java 20 import java.io.Writer;
23 * Utilities for dealing with {@code Writer}s.
34 * Makes a {@code PrintWriter} for the given {@code Writer},
35 * returning the given writer if it already happens to be the right
38 * @param writer {@code non-null;} writer to (possibly) wrap
41 public static PrintWriter printWriterFor(Writer writer) {
42 if (writer instanceof PrintWriter) {
43 return (PrintWriter) writer;
    [all...]
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...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
Writers.java 20 import java.io.Writer;
23 * Utilities for dealing with {@code Writer}s.
34 * Makes a {@code PrintWriter} for the given {@code Writer},
35 * returning the given writer if it already happens to be the right
38 * @param writer {@code non-null;} writer to (possibly) wrap
41 public static PrintWriter printWriterFor(Writer writer) {
42 if (writer instanceof PrintWriter) {
43 return (PrintWriter) writer;
    [all...]
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/Email/src/org/apache/commons/io/output/
NullWriter.java 19 import java.io.Writer;
22 * This {@link Writer} writes all data to the famous <b>/dev/null</b>.
24 * This <code>Writer</code> has no destination (file/socket etc.) and all
29 public class NullWriter extends Writer {
86 /** @see java.io.Writer#flush() */
91 /** @see java.io.Writer#close() */
  /libcore/luni/src/main/java/javax/xml/transform/stream/
StreamResult.java 24 import java.io.Writer;
68 * @param writer A valid Writer reference.
70 public StreamResult(Writer writer) {
71 setWriter(writer);
115 * Set the writer that is to receive the result. Normally,
116 * a stream should be used rather than a writer, so that
119 * there are times when it is useful to write to a writer,
122 * @param writer A valid Writer reference
193 private Writer writer; field in class:StreamResult
    [all...]
  /development/tools/mkstubs/src/com/android/mkstubs/sourcer/
Output.java 20 import java.io.Writer;
23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}.
30 private final Writer mWriter;
33 * Creates a new {@link Output} object that wraps the given {@link Writer}.
35 * The caller is responsible of opening and closing the {@link Writer}.
37 * @param writer The writer to write to. Could be a file, a string, etc.
39 public Output(Writer writer) {
40 mWriter = writer;
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
Serializer.java 24 import java.io.Writer;
65 * java.io.Writer owriter;
70 * owriter = ...; // create a writer to serialize the document to
111 * @return reference to the result stream, or null if only a writer was
117 * Specifies a writer to which the document should be serialized.
122 * identical to the output format used with the writer.
127 * @param writer The output writer stream
129 public void setWriter(Writer writer);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOMOutputImpl.java 26 import java.io.Writer;
63 private Writer fCharStream = null;
81 public Writer getCharacterStream(){
93 public void setCharacterStream(Writer characterStream){
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSOutput.java 54 public java.io.Writer getCharacterStream();
59 public void setCharacterStream(java.io.Writer characterStream);
  /libcore/luni/src/main/java/java/io/
Writer.java 21 * The base class for all writers. A writer is a means of writing data to a
37 public abstract class Writer implements Appendable, Closeable, Flushable {
39 * The object used to synchronize access to the writer.
44 * Constructs a new {@code Writer} with {@code this} as the object used to
47 protected Writer() {
52 * Constructs a new {@code Writer} with {@code lock} used to synchronize
60 protected Writer(Object lock) {
68 * Closes this writer. Implementations of this method should free any
69 * resources associated with the writer.
72 * if an error occurs while closing this writer
    [all...]
FilterWriter.java 21 * Wraps an existing {@link Writer} and performs some transformation on the
24 * decompression of the underlying writer. Writers that wrap another writer and
30 public abstract class FilterWriter extends Writer {
33 * The Writer being filtered.
35 protected Writer out;
38 * Constructs a new FilterWriter on the Writer {@code out}. All writes are
39 * now filtered through this writer.
42 * the target Writer to filter writes on.
44 protected FilterWriter(Writer out)
    [all...]
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
CharWrapperTester.java 24 import java.io.Writer;
28 * Writer}.
38 public abstract Writer create(Writer delegate) throws Exception;
47 * Configures whether the writer is expected to throw exceptions when an
82 @Override public Writer create() throws Exception {
108 Writer o = create(delegate);
117 Writer o = create(delegate);
127 Writer o = create(delegate);
143 Writer o = create(delegate)
    [all...]
  /external/guava/guava/src/com/google/common/io/
AppendableWriter.java 22 import java.io.Writer;
25 * Writer that places all output on an {@link Appendable} target. If the target
33 class AppendableWriter extends Writer {
38 * Creates a new writer that appends everything it writes to {@code target}.
47 * Abstract methods from Writer
93 @Override public Writer append(char c) throws IOException {
99 @Override public Writer append(CharSequence charSeq) throws IOException {
105 @Override public Writer append(CharSequence charSeq, int start, int end)
114 throw new IOException("Cannot write to a closed writer.");
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
WriterTesterTest.java 38 import java.io.Writer;
45 * Tests basic {@link Writer} behaviors for the luni implementations of the type.
78 @Override public Writer create() throws Exception {
90 private CharArrayWriter writer; field in class:WriterTesterTest.CharArrayWriterCharSinkTester
92 @Override public Writer create() throws Exception {
93 writer = new CharArrayWriter();
94 return writer;
98 return writer.toCharArray();
107 public Writer create() throws IOException {
134 private StringWriter writer; field in class:WriterTesterTest.StringWriterCharSinkTester
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLDebugHelper.java 19 import java.io.Writer;
79 public static GL wrap(GL gl, int configFlags, Writer log) {
100 public static EGL wrap(EGL egl, int configFlags, Writer log) {
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
29 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
37 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
50 void RecordRelocation(MachObjectWriter *Writer,
140 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
148 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
160 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout);
163 Writer->getSectionAddress(A_SD->getFragment()->getParent());
176 Value2 = Writer->getSymbolAddress(B_SD, Layout);
177 FixedValue -= Writer->getSectionAddress(B_SD->getFragment()->getParent())
    [all...]
  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===//
26 void RecordScatteredRelocation(MachObjectWriter *Writer,
34 void RecordTLVPRelocation(MachObjectWriter *Writer,
42 void RecordX86Relocation(MachObjectWriter *Writer,
49 void RecordX86_64Relocation(MachObjectWriter *Writer,
62 void RecordRelocation(MachObjectWriter *Writer,
66 if (Writer->is64Bit())
67 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
70 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
99 void X86MachObjectWriter::RecordX86_64Relocation(MachObjectWriter *Writer,
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
CharStreamsTest.java 37 import java.io.Writer;
52 static final OutputSupplier<? extends Writer> BROKEN_WRITE
58 static final OutputSupplier<? extends Writer> BROKEN_CLOSE_OUTPUT
64 static final OutputSupplier<? extends Writer> BROKEN_GET_OUTPUT
69 private static final ImmutableSet<OutputSupplier<? extends Writer>> BROKEN_OUTPUTS
159 CheckCloseSupplier.Output<Writer> okWrite
160 = newCheckWriter(new OutputSupplier<Writer>() {
162 public Writer getOutput() {
167 CheckCloseSupplier.Output<Writer> brokenWrite
228 InputSupplier<? extends Reader> in, OutputSupplier<? extends Writer> out)
    [all...]

Completed in 576 milliseconds

1 2 3 4 5 6 7 8 91011