HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 1 - 25 of 693) 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) {
  /external/testng/src/main/java/org/testng/reporters/
IBuffer.java 3 import java.io.Writer;
7 void toWriter(Writer fw);
  /external/llvm/lib/Bitcode/
Makefile 11 PARALLEL_DIRS = Reader Writer
  /packages/apps/Camera2/src/com/android/camera/stats/profiler/
GuardingProfiler.java 26 private final Writer mGuardWriter;
27 private final Writer mVerboseWriter;
31 public GuardingProfiler(Writer writer, Writer verbose) {
32 this(writer, verbose, DEFAULT_GUARD_DURATION_MILLIS);
36 public GuardingProfiler(Writer writer, Writer verbose, int maxDurationMillis) {
37 mGuardWriter = writer;
    [all...]
Writer.java 22 public interface Writer {
LoggingProfiler.java 20 * output to the provided writer.
23 private final Writer mWriter;
26 public LoggingProfiler(Writer writer) {
27 mWriter = writer;
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;
  /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...]
  /external/deqp/executor/
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...]
  /external/llvm/include/llvm/Support/
EndianStream.h 26 template <endianness endian> struct Writer {
28 Writer(raw_ostream &OS) : OS(OS) {}
37 inline void Writer<little>::write<float>(float Val) {
43 inline void Writer<little>::write<double>(double Val) {
49 inline void Writer<big>::write<float>(float Val) {
55 inline void Writer<big>::write<double>(double Val) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
writertest.cpp 19 #include "rapidjson/writer.h"
24 TEST(Writer, Compact) {
27 Writer<StringBuffer> writer(buffer);
30 reader.Parse<0>(s, writer);
33 EXPECT_TRUE(writer.IsComplete());
36 // json -> parse -> writer -> json
41 Writer<StringBuffer> writer(buffer); \
43 reader.Parse<kParseFullPrecisionFlag>(s, 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/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCache.java 14 interface Writer {
19 * @param file The File the Writer should write to.
38 * Write to a key in the cache. {@link Writer} is used so that the cache implementation can perform actions after
42 * @param writer An interface that will write data given an OutputStream for the key.
44 void put(Key key, Writer writer);
  /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...]
  /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) {
  /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/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/java/io/
BufferedWriter.java 13 public class BufferedWriter extends Writer {
14 private final Writer out;
18 public BufferedWriter (Writer out, int size) {
23 public BufferedWriter (Writer out) {

Completed in 3525 milliseconds

1 2 3 4 5 6 7 8 91011>>