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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/tools/llvm-readobj/
ObjDumper.cpp 23 ObjDumper::ObjDumper(ScopedPrinter &Writer) : W(Writer) {}
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
COFFImportDumper.cpp 24 void dumpCOFFImportFile(const COFFImportFile *File, ScopedPrinter &Writer) {
25 Writer.startLine() << '\n';
26 Writer.printString("File", File->getFileName());
27 Writer.printString("Format", "COFF-import-file");
31 case COFF::IMPORT_CODE: Writer.printString("Type", "code"); break;
32 case COFF::IMPORT_DATA: Writer.printString("Type", "data"); break;
33 case COFF::IMPORT_CONST: Writer.printString("Type", "const"); break;
38 Writer.printString("Name type", "ordinal");
41 Writer.printString("Name type", "name");
44 Writer.printString("Name type", "noprefix")
    [all...]
  /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
  /external/cldr/tools/java/org/unicode/cldr/util/
DualWriter.java 16 import java.io.Writer;
18 final public class DualWriter extends Writer {
21 private Writer a;
22 private Writer b;
24 public DualWriter(Writer a, Writer b) {
29 public DualWriter(Writer a, Writer b, boolean autoFlush) {
  /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...]
xeTestLogWriter.hpp 23 * \brief Test log writer.
37 class Writer;
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
  /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 *tlNBLogWriter;
TypedLogger.h 88 #define LOGT(fmt, ...) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
93 #define LOG_HIST_TS() do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
97 #define LOG_AUDIO_STATE() do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
102 #define LOG_LATENCY(ms) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
106 #define LOG_OVERRUN(ns) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
111 #define LOG_THREAD_INFO(info) do { NBLog::Writer *x = tlNBLogWriter; \
114 #define LOG_THREAD_PARAMS(params) do {NBLog::Writer *x = tlNBLogWriter; \
118 #define LOG_UNDERRUN(ns) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
122 #define LOG_WARMUP_TIME(ms) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr) \
127 #define LOG_WORK_TIME(ns) do { NBLog::Writer *x = tlNBLogWriter; if (x != nullptr)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
PDBStringTableBuilder.cpp 136 Error PDBStringTableBuilder::writeHeader(BinaryStreamWriter &Writer) const {
142 if (auto EC = Writer.writeObject(H))
144 assert(Writer.bytesRemaining() == 0);
148 Error PDBStringTableBuilder::writeStrings(BinaryStreamWriter &Writer) const {
149 if (auto EC = Strings.commit(Writer))
152 assert(Writer.bytesRemaining() == 0);
156 Error PDBStringTableBuilder::writeHashTable(BinaryStreamWriter &Writer) const {
159 if (auto EC = Writer.writeInteger(BucketCount))
177 if (auto EC = Writer.writeArray(ArrayRef<ulittle32_t>(Buckets)))
180 assert(Writer.bytesRemaining() == 0)
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
SimpleTypeSerializer.cpp 6 static void writeRecordPrefix(BinaryStreamWriter &Writer, TypeLeafKind Kind) {
10 cantFail(Writer.writeObject(Prefix));
13 static void addPadding(BinaryStreamWriter &Writer) {
14 uint32_t Align = Writer.getOffset() % 4;
21 cantFail(Writer.writeInteger(Pad));
32 BinaryStreamWriter Writer(ScratchBuffer, support::little);
33 TypeRecordMapping Mapping(Writer);
38 writeRecordPrefix(Writer, CVT.Type);
44 addPadding(Writer);
49 Prefix->RecordLen = Writer.getOffset() - sizeof(uint16_t)
    [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...]
  /external/google-fruit/examples/hello_world/
main.cpp 8 class Writer {
13 class StdoutWriter : public Writer {
31 Writer* writer; member in class:GreeterImpl
34 // Like "GreeterImpl(Writer* writer) {...}" but also marks this constructor
36 INJECT(GreeterImpl(Writer* writer)) : writer(writer) {}
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/
PDBStringTableBuilder.h 55 Error commit(BinaryStreamWriter &Writer) const;
61 Error writeHeader(BinaryStreamWriter &Writer) const;
62 Error writeStrings(BinaryStreamWriter &Writer) const;
63 Error writeHashTable(BinaryStreamWriter &Writer) const;
64 Error writeEpilogue(BinaryStreamWriter &Writer) const;
  /frameworks/av/media/libnblog/
Writer.cpp 29 #include <media/nblog/Writer.h>
36 Writer::Writer(void *shared, size_t size)
58 Writer::Writer(const sp<IMemory>& iMemory, size_t size)
59 : Writer(iMemory != 0 ? (Shared *) iMemory->pointer() : NULL, size)
64 Writer::~Writer()
71 void Writer::log(const char *string)
84 void Writer::logf(const char *fmt, ...
    [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){

Completed in 3318 milliseconds

1 2 3 4 5 6 7 8 91011>>