/external/llvm/tools/llvm-readobj/ |
ObjDumper.cpp | 23 ObjDumper::ObjDumper(ScopedPrinter &Writer) : W(Writer) {}
|
/external/testng/src/main/java/org/testng/reporters/ |
IBuffer.java | 3 import java.io.Writer; 7 void toWriter(Writer fw);
|
/external/llvm/include/llvm/DebugInfo/CodeView/ |
CodeViewOStream.h | 19 template <typename Writer> class CodeViewOStream { 25 typedef typename Writer::LabelType LabelType; 28 explicit CodeViewOStream(Writer &W); 34 Writer &W;
|
/external/swiftshader/third_party/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/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 | 27 template <endianness endian> struct Writer { 29 Writer(raw_ostream &OS) : OS(OS) {} 42 inline void Writer<little>::write<float>(float Val) { 48 inline void Writer<little>::write<double>(double Val) { 54 inline void Writer<big>::write<float>(float Val) { 60 inline void Writer<big>::write<double>(double Val) {
|
/frameworks/av/services/audioflinger/ |
TypedLogger.cpp | 26 thread_local NBLog::Writer *logWriterTLS;
|
TypedLogger.h | 26 extern thread_local NBLog::Writer *logWriterTLS;
|
/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/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){
|