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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-readobj/
ObjDumper.cpp 26 ObjDumper::ObjDumper(StreamWriter& Writer)
27 : W(Writer) {
ObjDumper.h 28 ObjDumper(StreamWriter& Writer);
48 StreamWriter& Writer,
52 StreamWriter& Writer,
56 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/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 32 ASTWriter &Writer;
39 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
40 : Writer(Writer), Record(Record) { }
53 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
54 Writer.AddSourceLocation(Args.LAngleLoc, Record);
55 Writer.AddSourceLocation(Args.RAngleLoc, Record);
57 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
65 Writer.AddSourceLocation(S->getSemiLoc(), Record);
75 Writer.AddStmt(*CS)
    [all...]
GeneratePCH.cpp 34 SemaPtr(0), Stream(Buffer), Writer(Stream),
53 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
68 return &Writer;
72 return &Writer;
ASTWriterDecl.cpp 36 ASTWriter &Writer;
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record)
46 : Writer(Writer), Context(Context), Record(Record) {
143 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
152 Writer.AddStmt(FD->getBody());
157 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
158 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
162 Writer.WriteAttributes(ArrayRef<const Attr*>(D->getAttrs().begin(),
170 Record.push_back(Writer.inferSubmoduleIDFromLocation(D->getLocation()))
    [all...]
  /external/marisa-trie/lib/marisa/
writer.h 11 class Writer {
13 Writer();
14 explicit Writer(std::FILE *file);
15 explicit Writer(int fd);
16 explicit Writer(std::ostream *stream);
17 ~Writer();
42 void swap(Writer *rhs);
53 Writer(const Writer &);
54 Writer &operator=(const Writer &)
    [all...]
writer.cc 10 #include "writer.h"
14 Writer::Writer()
17 Writer::Writer(std::FILE *file)
20 Writer::Writer(int fd)
23 Writer::Writer(std::ostream *stream)
26 Writer::~Writer()
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
writer.h 11 class Writer {
13 Writer();
14 explicit Writer(std::FILE *file);
15 explicit Writer(int fd);
16 explicit Writer(std::ostream *stream);
17 ~Writer();
43 void swap(Writer *rhs);
54 Writer(const Writer &);
55 Writer &operator=(const Writer &)
    [all...]
writer.cc 10 #include "writer.h"
14 Writer::Writer()
17 Writer::Writer(std::FILE *file)
20 Writer::Writer(int fd)
23 Writer::Writer(std::ostream *stream)
26 Writer::~Writer()
    [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...]
  /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/util/src/main/java/org/jf/util/
CommentingIndentingWriter.java 35 import java.io.Writer;
40 public CommentingIndentingWriter(Writer writer, String commentStr) {
41 super(writer);
46 writer.write(commentStr);
  /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){
  /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...]
  /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/llvm/lib/Target/ARM/MCTargetDesc/
ARMMachObjectWriter.cpp 1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
30 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
38 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
45 bool requiresExternRelocation(MachObjectWriter *Writer,
57 void RecordRelocation(MachObjectWriter *Writer,
147 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
155 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
167 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout);
170 Writer->getSectionAddress(A_SD->getFragment()->getParent());
183 Value2 = Writer->getSymbolAddress(B_SD, Layout)
    [all...]

Completed in 553 milliseconds

1 2 3 4 5 6 7 8 91011>>