/packages/apps/UnifiedEmail/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...] |
/libcore/ojluni/src/main/java/java/io/ |
FilterWriter.java | 41 public abstract class FilterWriter extends Writer { 46 protected Writer out; 49 * Create a new filtered writer. 51 * @param out a Writer object to provide the underlying stream. 54 protected FilterWriter(Writer out) {
|
Writer.java | 35 * @see Writer 50 public abstract class Writer implements Appendable, Closeable, Flushable { 72 * Creates a new character-stream writer whose critical sections will 73 * synchronize on the writer itself. 75 protected Writer() { 80 * Creates a new character-stream writer whose critical sections will 86 protected Writer(Object lock) { 197 * Appends the specified character sequence to this writer. 214 * appended to this writer. 216 * @return This 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){
|
/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
GuardingProfile.java | 20 * A guarding profile will only write messages to a writer if the 26 private final Writer mGuardWriter; 27 private final Writer mVerboseWriter; 30 public GuardingProfile(Writer writer, Writer verbose, String name,int maxDuration) { 32 mGuardWriter = writer;
|
Profilers.java | 29 private static Writer sErrorWriter = new ErrorWriter(); 30 private static Writer sWarningWriter = new WarningWriter(); 31 private static Writer sInfoWriter = new InfoWriter(); 32 private static Writer sDebugWriter = new DebugWriter(); 33 private static Writer sVerboseWriter = new VerboseWriter(); 123 private static class DebugWriter implements Writer { 130 private static class ErrorWriter implements Writer { 137 private static class InfoWriter implements Writer { 144 private static class VerboseWriter implements Writer { 151 private static class WarningWriter implements Writer { [all...] |
/external/deqp/executor/ |
xeTestLogWriter.hpp | 23 * \brief Test log writer. 37 class Writer; 43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
|
xeXMLWriter.cpp | 21 * \brief XML Writer. 33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType(); 127 Writer::Writer (std::ostream& dst) 135 Writer::~Writer (void) 139 Writer& Writer::operator<< (const BeginElement& begin [all...] |
/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);
|
/prebuilts/go/darwin-x86/src/testing/iotest/ |
writer.go | 9 // TruncateWriter returns a Writer that writes to w 11 func TruncateWriter(w io.Writer, n int64) io.Writer { 16 w io.Writer
|
/prebuilts/go/linux-x86/src/testing/iotest/ |
writer.go | 9 // TruncateWriter returns a Writer that writes to w 11 func TruncateWriter(w io.Writer, n int64) io.Writer { 16 w io.Writer
|
/external/deqp/executor/tools/ |
xeBatchResultToJUnit.cpp | 86 ResultToJUnitHandler (xe::xml::Writer& writer) 87 : m_writer(writer) 106 using xe::xml::Writer; 118 m_writer << Writer::BeginElement("testcase") 119 << Writer::Attribute("name", caseName) 120 << Writer::Attribute("classname", groupName); 123 m_writer << Writer::BeginElement("failure") 124 << Writer::Attribute("type", xe::getTestStatusCodeName(result.statusCode)) 126 << Writer::EndElement [all...] |
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/ |
ARMMachObjectWriter.cpp | 1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===// 27 void RecordARMScatteredRelocation(MachObjectWriter *Writer, 35 void RecordARMMovwMovtRelocation(MachObjectWriter *Writer, 48 void RecordRelocation(MachObjectWriter *Writer, 122 RecordARMMovwMovtRelocation(MachObjectWriter *Writer, 130 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind()); 141 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout); 144 Writer->getSectionAddress(A_SD->getFragment()->getParent()); 156 Value2 = Writer->getSymbolAddress(B_SD, Layout); 157 FixedValue -= Writer->getSectionAddress(B_SD->getFragment()->getParent()) [all...] |
/prebuilts/go/darwin-x86/src/internal/trace/ |
writer.go | 5 // Writer is a test trace writer. 6 type Writer struct { 10 func NewWriter() *Writer { 11 w := new(Writer) 18 func (w *Writer) Emit(typ byte, args ...uint64) {
|
/prebuilts/go/darwin-x86/src/mime/quotedprintable/ |
writer.go | 11 // A Writer is a quoted-printable writer that implements io.WriteCloser. 12 type Writer struct { 13 // Binary mode treats the writer's input as pure binary and processes end of 17 w io.Writer 23 // NewWriter returns a new Writer that writes to w. 24 func NewWriter(w io.Writer) *Writer { 25 return &Writer{w: w} 29 // underlying io.Writer. It limits line length to 76 characters. The encode [all...] |
/prebuilts/go/linux-x86/src/internal/trace/ |
writer.go | 5 // Writer is a test trace writer. 6 type Writer struct { 10 func NewWriter() *Writer { 11 w := new(Writer) 18 func (w *Writer) Emit(typ byte, args ...uint64) {
|
/prebuilts/go/linux-x86/src/mime/quotedprintable/ |
writer.go | 11 // A Writer is a quoted-printable writer that implements io.WriteCloser. 12 type Writer struct { 13 // Binary mode treats the writer's input as pure binary and processes end of 17 w io.Writer 23 // NewWriter returns a new Writer that writes to w. 24 func NewWriter(w io.Writer) *Writer { 25 return &Writer{w: w} 29 // underlying io.Writer. It limits line length to 76 characters. The encode [all...] |
/external/guava/guava/src/com/google/common/io/ |
CharSink.java | 24 import java.io.Writer; 28 * A destination to which characters can be written, such as a text file. Unlike a {@link Writer}, a 30 * is an immutable <i>supplier</i> of {@code Writer} instances. 34 * <li><b>Methods that return a writer:</b> These methods should return a <i>new</i>, 36 * returned writer is closed. 38 * typically implemented by opening a writer using one of the methods in the first category, 39 * doing something and finally closing the writer that was opened. 57 * Opens a new {@link Writer} for writing to this sink. This method should return a new, 58 * independent writer each time it is called. 60 * <p>The caller is responsible for ensuring that the returned writer is closed 79 Writer writer = openStream(); local [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 84 public Writer create() throws Exception { 113 Writer o = create(delegate); 122 Writer o = create(delegate); 132 Writer o = create(delegate); 148 Writer o = create(delegate) [all...] |
/libcore/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 84 public Writer create() throws Exception { 113 Writer o = create(delegate); 122 Writer o = create(delegate); 132 Writer o = create(delegate); 148 Writer o = create(delegate) [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMMachObjectWriter.cpp | 1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===// 29 void RecordARMScatteredRelocation(MachObjectWriter *Writer, 38 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, 45 bool requiresExternRelocation(MachObjectWriter *Writer, 54 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, 139 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, 147 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind()); 160 uint32_t Value = Writer->getSymbolAddress(*A, Layout); 162 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent()); 177 Value2 = Writer->getSymbolAddress(B->getSymbol(), Layout) [all...] |
/external/llvm/tools/llvm-readobj/ |
ObjDumper.h | 29 ObjDumper(ScopedPrinter &Writer); 85 ScopedPrinter &Writer, 89 ScopedPrinter &Writer, 93 ScopedPrinter &Writer, 98 void dumpCodeViewMergedTypes(ScopedPrinter &Writer,
|