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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-readobj/
ObjDumper.cpp 24 ObjDumper::ObjDumper(StreamWriter& Writer)
25 : W(Writer) {
ObjDumper.h 25 ObjDumper(StreamWriter& Writer);
51 StreamWriter &Writer,
55 StreamWriter &Writer,
59 StreamWriter &Writer,
  /external/chromium_org/third_party/leveldatabase/src/db/
log_writer.h 19 class Writer {
21 // Create a writer that will append data to "*dest".
23 // "*dest" must remain live while this Writer is in use.
24 explicit Writer(WritableFile* dest);
25 ~Writer();
41 Writer(const Writer&);
42 void operator=(const Writer&);
  /external/llvm/lib/Bitcode/
Makefile 11 PARALLEL_DIRS = Reader Writer
  /external/deqp/executor/
xeXMLWriter.cpp 21 * \brief XML Writer.
33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType();
95 Writer::Writer (std::ostream& dst)
103 Writer::~Writer (void)
107 Writer& Writer::operator<< (const BeginElement& begin
    [all...]
xeTestLogWriter.cpp 21 * \brief Test log writer.
35 /* Batch result writer. */
133 /* Test result log writer. */
236 static void writeResultItem (const ri::Item& item, xml::Writer& dst)
238 using xml::Writer;
247 dst << Writer::BeginElement("Text") << static_cast<const ri::Text&>(item).text << Writer::EndElement;
253 dst << Writer::BeginElement("Number")
254 << Writer::Attribute("Name", number.name)
255 << Writer::Attribute("Description", number.description
    [all...]
xeXMLWriter.hpp 23 * \brief XML Writer.
51 class Writer
71 Writer (std::ostream& dst);
72 ~Writer (void);
74 Writer& operator<< (const BeginElement& begin);
75 Writer& operator<< (const Attribute& attribute);
76 Writer& operator<< (const EndElementType& end);
79 Writer& operator<< (const T& value); //!< Write data.
82 Writer (const Writer& other)
    [all...]
xeTestLogWriter.hpp 23 * \brief Test log writer.
37 class Writer;
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
  /external/smack/src/org/jivesoftware/smack/debugger/
SmackDebugger.java 32 * arguments: Connection, Writer, Reader.
55 * Returns the special Writer that wraps the main Writer and logs data to the GUI.
57 * @return the special Writer that wraps the main Writer and logs data to the GUI.
59 public abstract Writer getWriter();
63 * has been secured so the connection is using a new reader and writer. The debugger
64 * needs to wrap the new reader and writer to keep being notified of the connection
72 * Returns a new special Writer that wraps the new connection Writer. The connectio
    [all...]
  /external/clang/lib/Serialization/
ASTWriterStmt.cpp 33 ASTWriter &Writer;
40 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
41 : Writer(Writer), Record(Record) { }
54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
55 Writer.AddSourceLocation(Args.LAngleLoc, Record);
56 Writer.AddSourceLocation(Args.RAngleLoc, Record);
58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
66 Writer.AddSourceLocation(S->getSemiLoc(), Record);
75 Writer.AddStmt(CS)
    [all...]
GeneratePCH.cpp 34 SemaPtr(nullptr), Stream(Buffer), Writer(Stream),
53 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
68 return &Writer;
72 return &Writer;
  /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...]
  /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...]
  /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...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
CommentingIndentingWriter.java 37 import java.io.Writer;
40 public CommentingIndentingWriter(Writer writer) {
41 super(writer);
45 writer.write("# ");
  /external/smali/util/src/main/java/org/jf/util/
StringUtils.java 35 import java.io.Writer;
38 public static void writeEscapedChar(Writer writer, char c) throws IOException {
41 writer.write('\\');
43 writer.write(c);
47 case '\n': writer.write("\\n"); return;
48 case '\r': writer.write("\\r"); return;
49 case '\t': writer.write("\\t"); return;
53 writer.write("\\u");
54 writer.write(Character.forDigit(c >> 12, 16))
    [all...]
  /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...]
  /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){
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCache.java 16 public interface Writer {
21 * @param os The output stream the Writer should write to.
35 * Write to a key in the cache. {@link Writer} is used so that the cache implementation
39 * @param writer An interface that will write data given an OutputStream for the key
41 public void put(Key key, Writer writer);
  /external/llvm/include/llvm/Support/
EndianStream.h 26 template <endianness endian> struct Writer {
28 Writer(raw_ostream &OS) : OS(OS) {}
  /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...]

Completed in 527 milliseconds

1 2 3 4 5 6 7 8 91011>>