HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 76 - 100 of 646) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64MachObjectWriter.cpp 1 //===-- AArch64MachObjectWriter.cpp - ARM Mach Object Writer --------------===//
36 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
145 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout,
148 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
232 Writer->addRelocation(A_Base, Fragment->getParent(), MRE);
277 Value += (!A->getFragment() ? 0 : Writer->getSymbolAddress(*A, Layout)) -
278 (!A_Base || !A_Base->getFragment() ? 0 : Writer->getSymbolAddress(
280 Value -= (!B->getFragment() ? 0 : Writer->getSymbolAddress(*B, Layout)) -
281 (!B_Base || !B_Base->getFragment() ? 0 : Writer->getSymbolAddress(
289 Writer->addRelocation(A_Base, Fragment->getParent(), MRE)
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
TwoColumnOutput.java 38 import java.io.Writer;
46 /** non-null; underlying writer for final output */
47 private final Writer out;
59 * @param out non-null; writer to send final output to
64 public TwoColumnOutput(@Nonnull Writer out, int leftWidth, int rightWidth,
144 * Writes the given number of spaces to the given writer.
149 private static void writeSpaces(Writer out, int amt) throws IOException {
IndentingWriter.java 32 import java.io.Writer;
34 public class IndentingWriter extends Writer {
35 protected final Writer writer; field in class:IndentingWriter
41 public IndentingWriter(Writer writer) {
42 this.writer = writer;
47 writer.write(' ');
54 writer.write(newLine)
    [all...]
WrappedIndentingWriter.java 36 import java.io.Writer;
39 * Writer that wraps another writer and passes width-limited and
66 * @param out non-null; writer to send final output to
71 public WrappedIndentingWriter(Writer out, int width, String prefix) {
96 * @param out non-null; writer to send final output to
100 public WrappedIndentingWriter(Writer out, int width) {
  /frameworks/av/services/audioflinger/
FastThreadState.h 47 NBLog::Writer* mNBLogWriter; // non-blocking logger
FastCapture.h 42 virtual void setLog(NBLog::Writer *logWriter);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterToASCI.java 25 import java.io.Writer;
39 class WriterToASCI extends Writer implements WriterChain
46 * Create an unbuffered ASCII writer.
140 * @return reference to the result stream, or null of only a writer was
149 * Get the writer that this writer directly chains to.
151 public Writer getWriter()
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLWriter.java 12 import java.io.Writer;
30 public HTMLWriter (final Writer out)
116 private Writer m_out;
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
XMLDocument.java 19 import java.io.Writer;
39 * Writes a new document to the given writer. The document might contain a
52 * @param writer
53 * writer for content output
55 * in case of problems with the writer
59 final boolean standalone, final Writer writer) throws IOException {
60 super(writer, rootnode);
61 writeHeader(rootnode, pubId, system, encoding, standalone, writer);
82 * in case of problems with the writer
    [all...]
  /external/proguard/src/proguard/io/
DataEntryRewriter.java 58 Writer writer = new BufferedWriter(new OutputStreamWriter(outputStream)); local
60 copyData(reader, writer);
62 writer.flush();
69 * writer.
72 Writer writer)
97 writeUpdatedWord(writer, word.toString());
101 writer.write(c);
106 writeUpdatedWord(writer, word.toString())
    [all...]
  /external/llvm/unittests/ProfileData/
InstrProfTest.cpp 36 InstrProfWriter Writer;
47 auto Profile = Writer.writeBuffer();
54 Writer.addRecord(std::move(Record));
55 auto Profile = Writer.writeBuffer();
73 Writer.addRecord(std::move(Record1));
74 Writer.addRecord(std::move(Record2));
75 auto Profile = Writer.writeBuffer();
100 Writer.addRecord(std::move(Record1));
101 Writer.addRecord(std::move(Record2));
102 auto Profile = Writer.writeBuffer()
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/bridge/
OpenedSocket.java 60 return new OpenedSocket(new Reader(input), new Writer(output));
64 private final Writer writer; field in class:OpenedSocket
67 Writer objectOutputStream) {
69 this.writer = objectOutputStream;
76 public Writer writer() { method in class:OpenedSocket
77 return writer;
107 public static final class Writer implements Closeable, Flushable {
110 Writer(ObjectOutputStream output)
    [all...]
  /external/llvm/include/llvm/MC/
MCObjectWriter.h 1 //===-- llvm/MC/MCObjectWriter.h - Object File Writer Interface -*- C++ -*-===//
31 /// The object writer contains a few callbacks used by the assembler to allow
32 /// the object writer to modify the assembler data structures at appropriate
33 /// points. Once assembly is complete, the object writer is given the
37 /// The object writer also contains a number of helper methods for writing
129 support::endian::Writer<support::little>(*OS).write(Value);
133 support::endian::Writer<support::little>(*OS).write(Value);
137 support::endian::Writer<support::little>(*OS).write(Value);
141 support::endian::Writer<support::big>(*OS).write(Value);
145 support::endian::Writer<support::big>(*OS).write(Value)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /external/clang/include/clang/Frontend/
PCHContainerOperations.h 99 void registerWriter(std::unique_ptr<PCHContainerWriter> Writer) {
100 Writers[Writer->getFormat()] = std::move(Writer);
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 21 import java.io.Writer;
24 * Writer that wraps another writer and passes width-limited and
51 * @param out {@code non-null;} writer to send final output to
56 public IndentingWriter(Writer out, int width, String prefix) {
81 * @param out {@code non-null;} writer to send final output to
85 public IndentingWriter(Writer out, int width) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 37 //! JSON writer
38 /*! Writer implements the concept Handler.
41 User may programmatically calls the functions of a writer to generate JSON text.
43 On the other side, a writer can also be passed to objects that generates events,
54 class Writer {
64 Writer(OutputStream& os, StackAllocator* stackAllocator = 0, size_t levelDepth = kDefaultLevelDepth) :
68 Writer(StackAllocator* allocator = 0, size_t levelDepth = kDefaultLevelDepth) :
71 //! Reset the writer with a new stream.
73 This function reset the writer with a new stream and default settings,
74 in order to make a Writer object reusable for output multiple JSONs.
    [all...]
  /external/clang/lib/Frontend/
TestModuleFileExtension.cpp 19 TestModuleFileExtension::Writer::~Writer() { }
21 void TestModuleFileExtension::Writer::writeExtensionContents(
102 return std::unique_ptr<ModuleFileExtensionWriter>(new Writer(this));
  /external/jsoncpp/include/json/
writer.h 28 class JSON_API Writer {
30 virtual ~Writer();
43 class JSON_API FastWriter : public Writer {
50 /** \brief Drop the "null" string from the writer's output for nullValues.
59 public: // overridden from Writer
94 class JSON_API StyledWriter : public Writer {
99 public: // overridden from Writer
164 * \note There is no point in deriving from Writer, since write() should not
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Spdy3Test.java 68 // Check writer sends the same bytes.
87 Spdy3.Writer writer = new Spdy3.Writer(new Buffer(), true); local
88 writer.sendDataFrame(expectedStreamId, 0, source, (int) source.size());
92 new Spdy3.Writer(new Buffer(), true).windowUpdate(expectedStreamId, increment);
98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
WriterTest.java 19 import java.io.Writer;
26 * java.io.Writer#append(char)
30 MockWriter writer = new MockWriter(20); local
31 writer.append(testChar);
32 assertEquals(String.valueOf(testChar), String.valueOf(writer
34 writer.close();
38 * java.io.Writer#append(CharSequence)
42 MockWriter writer = new MockWriter(20); local
43 writer.append(testString);
44 assertEquals(testString, String.valueOf(writer.getContents()))
54 MockWriter writer = new MockWriter(20); local
    [all...]
  /libcore/ojluni/src/main/java/java/io/
BufferedWriter.java 42 * <p> In general, a Writer sends its output immediately to the underlying
44 * to wrap a BufferedWriter around any Writer whose write() operations may be
66 public class BufferedWriter extends Writer {
68 private Writer out;
85 * @param out A Writer
87 public BufferedWriter(Writer out) {
95 * @param out A Writer
100 public BufferedWriter(Writer out, int sz) {
209 * method in the {@linkplain java.io.Writer#write(java.lang.String,int,int)
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simplewriter/
simplewriter.cpp 1 #include "rapidjson/writer.h"
10 Writer<StringBuffer> writer(s);
12 writer.StartObject();
13 writer.String("hello");
14 writer.String("world");
15 writer.String("t");
16 writer.Bool(true);
17 writer.String("f");
18 writer.Bool(false)
    [all...]
  /external/llvm/tools/dsymutil/
MachOUtils.cpp 216 // Transfer \a Segment from \a Obj to the output file. This calls into \a Writer
227 const object::MachOObjectFile &Obj, MCObjectWriter &Writer,
255 Writer.writeBytes(
262 Writer.writeBytes(StringRef(reinterpret_cast<char *>(&Sect), sizeof(Sect)));
269 MCAsmLayout &Layout, MachObjectWriter &Writer) {
270 Writer.writeSegmentLoadCommand("__DWARF", NumSections, VMAddr,
285 Writer.writeSection(Layout, *Sec, VMAddr, FileOffset, 0, 0, 0);
323 auto &Writer = static_cast<MachObjectWriter &>(MCAsm.getWriter());
343 bool Is64Bit = Writer.is64Bit();
425 Writer.writeHeader(MachO::MH_DSYM, NumLoadCommands, LoadCommandSize, false)
    [all...]

Completed in 369 milliseconds

1 2 34 5 6 7 8 91011>>