HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 51 - 75 of 1150) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===//
28 bool recordScatteredRelocation(MachObjectWriter *Writer,
36 void recordTLVPRelocation(MachObjectWriter *Writer,
44 void RecordX86Relocation(MachObjectWriter *Writer,
51 void RecordX86_64Relocation(MachObjectWriter *Writer, MCAssembler &Asm,
60 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
64 if (Writer->is64Bit())
65 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
68 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
103 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/internal/bio/
buf.go 20 // Writer implements a seekable buffered io.Writer.
21 type Writer struct {
23 *bufio.Writer
26 // Create creates the file named name and returns a Writer
28 func Create(name string) (*Writer, error) {
33 return &Writer{f: f, Writer: bufio.NewWriter(f)}, nil
57 func (w *Writer) Seek(offset int64, whence int) int64 {
77 func (w *Writer) Offset() int64
    [all...]
must.go 19 // MustWriter returns a Writer that wraps the provided Writer,
21 func MustWriter(w io.Writer) io.Writer {
26 w io.Writer
  /prebuilts/go/darwin-x86/src/net/textproto/
writer.go 13 // A Writer implements convenience methods for writing
15 type Writer struct {
16 W *bufio.Writer
20 // NewWriter returns a new Writer writing to w.
21 func NewWriter(w *bufio.Writer) *Writer {
22 return &Writer{W: w}
29 func (w *Writer) PrintfLine(format string, args ...interface{}) error {
36 // DotWriter returns a writer that can be used to write a dot-encoding to w.
43 func (w *Writer) DotWriter() io.WriteCloser
    [all...]
  /prebuilts/go/linux-x86/src/cmd/internal/bio/
buf.go 20 // Writer implements a seekable buffered io.Writer.
21 type Writer struct {
23 *bufio.Writer
26 // Create creates the file named name and returns a Writer
28 func Create(name string) (*Writer, error) {
33 return &Writer{f: f, Writer: bufio.NewWriter(f)}, nil
57 func (w *Writer) Seek(offset int64, whence int) int64 {
77 func (w *Writer) Offset() int64
    [all...]
  /prebuilts/go/linux-x86/src/net/textproto/
writer.go 13 // A Writer implements convenience methods for writing
15 type Writer struct {
16 W *bufio.Writer
20 // NewWriter returns a new Writer writing to w.
21 func NewWriter(w *bufio.Writer) *Writer {
22 return &Writer{W: w}
29 func (w *Writer) PrintfLine(format string, args ...interface{}) error {
36 // DotWriter returns a writer that can be used to write a dot-encoding to w.
43 func (w *Writer) DotWriter() io.WriteCloser
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
X86MachObjectWriter.cpp 1 //===-- X86MachObjectWriter.cpp - X86 Mach-O Writer -----------------------===//
26 void RecordScatteredRelocation(MachObjectWriter *Writer,
34 void RecordTLVPRelocation(MachObjectWriter *Writer,
42 void RecordX86Relocation(MachObjectWriter *Writer,
49 void RecordX86_64Relocation(MachObjectWriter *Writer,
62 void RecordRelocation(MachObjectWriter *Writer,
66 if (Writer->is64Bit())
67 RecordX86_64Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
70 RecordX86Relocation(Writer, Asm, Layout, Fragment, Fixup, Target,
99 void X86MachObjectWriter::RecordX86_64Relocation(MachObjectWriter *Writer,
    [all...]
  /external/deqp/executor/tools/
xeBatchResultToXml.cpp 144 ResultToSingleXmlLogHandler (xe::xml::Writer& writer, BatchResultTotals& totals)
145 : m_writer (writer)
178 xe::xml::Writer& m_writer;
183 static void writeTotals (xe::xml::Writer& writer, const BatchResultTotals& totals)
185 using xe::xml::Writer;
189 writer << Writer::BeginElement("ResultTotals");
193 writer << Writer::Attribute(xe::getTestStatusCodeName((xe::TestStatusCode)code), de::toString(totals.coun (…)
    [all...]
  /external/llvm/lib/Target/PowerPC/MCTargetDesc/
PPCMachObjectWriter.cpp 1 //===-- PPCMachObjectWriter.cpp - PPC Mach-O Writer -----------------------===//
27 bool recordScatteredRelocation(MachObjectWriter *Writer,
34 void RecordPPCRelocation(MachObjectWriter *Writer, const MCAssembler &Asm,
43 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
47 if (Writer->is64Bit()) {
50 RecordPPCRelocation(Writer, Asm, Layout, Fragment, Fixup, Target,
192 MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout,
198 const unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, FK);
213 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
214 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent())
    [all...]
  /art/compiler/debug/dwarf/
expression.h 24 #include "debug/dwarf/writer.h"
29 // Writer for DWARF expressions which are used in .debug_info and .debug_loc sections.
32 // The writer is not exhaustive - it only implements opcodes we have needed so far.
33 class Expression : private Writer<> {
35 using Writer<>::data;
36 using Writer<>::size;
114 explicit Expression(std::vector<uint8_t>* buffer) : Writer<>(buffer) {
  /external/clang/lib/Frontend/
TestModuleFileExtension.h 28 class Writer : public ModuleFileExtensionWriter {
30 Writer(ModuleFileExtension *Ext) : ModuleFileExtensionWriter(Ext) { }
31 ~Writer() override;
62 createExtensionWriter(ASTWriter &Writer) override;
  /external/clang/lib/Serialization/
GeneratePCH.cpp 34 Writer(Stream, Extensions, IncludeTimestamps),
54 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot,
63 return &Writer;
67 return &Writer;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCacheAdapter.java 18 public void put(Key key, Writer writer) {
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/csv/
DelimitedWriter.java 15 import java.io.Writer;
41 private final Writer delegate;
45 * Creates a new Delimited writer using the default delimiter
48 * Writer to delegate all writes to
50 public DelimitedWriter(final Writer delegate) {
55 * Creates a new Delimited writer using the default delimiter
58 * Writer to delegate all writes to
62 public DelimitedWriter(final Writer delegate, final char delimiter) {
74 * Error writing to the underlying writer object
90 * Error writing to the underlying writer objec
    [all...]
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
NameMap.h 30 Error commit(codeview::StreamWriter &Writer);
  /frameworks/base/services/core/java/com/android/server/net/
DelayedDiskWrite.java 36 public interface Writer {
40 public void write(final String filePath, final Writer w) {
44 public void write(final String filePath, final Writer w, final boolean open) {
66 private void doWrite(String filePath, Writer w, boolean open) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/condense/
condense.cpp 7 #include "rapidjson/writer.h"
20 // Prepare JSON writer and output stream.
23 Writer<FileWriteStream> writer(os);
25 // JSON reader parse from the input stream and let writer generate the output.
26 if (!reader.Parse(is, writer)) {
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/simpledom/
simpledom.cpp 5 #include "rapidjson/writer.h"
23 Writer<StringBuffer> writer(buffer);
24 d.Accept(writer);
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 23 import java.io.Writer;
31 /** {@code non-null;} underlying writer for final output */
32 private final Writer out;
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
132 * Gets the writer to use to write to the left column.
134 * @return {@code non-null;} the left column writer
136 public Writer getLeft()
    [all...]
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 23 import java.io.Writer;
31 /** {@code non-null;} underlying writer for final output */
32 private final Writer out;
43 /** {@code non-null;} left column writer */
46 /** {@code non-null;} right column writer */
83 * @param out {@code non-null;} writer to send final output to
88 public TwoColumnOutput(Writer out, int leftWidth, int rightWidth,
132 * Gets the writer to use to write to the left column.
134 * @return {@code non-null;} the left column writer
136 public Writer getLeft()
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
CopyUtils.java 27 import java.io.Writer;
33 * (<code>OutputStream</code>, <code>Writer</code>, <code>String</code> and
85 * 2 copy Reader Writer (primitive)
87 * 3 copy InputStream Writer 2
92 * 6 copy String Writer (trivial)
94 * 7 copy byte[] Writer 3
143 // byte[] -> Writer
148 * <code>Writer</code>.
151 * @param output the <code>Writer</code> to write to
154 public static void copy(byte[] input, Writer output
    [all...]
  /external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 25 import java.io.Writer;
30 * Tests behaviour common to all implementations of {@link Writer}. This adapts
38 * Creates a new writer ready to receive an arbitrary number of chars. Each
42 public abstract Writer create() throws Exception;
45 * Returns the current set of chars written to the writer last returned by
46 * {@link #create}, and releases any resources held by that writer.
51 * Configures whether the writer is expected to throw exceptions when an
96 Writer out = create();
104 Writer out = create();
117 Writer out = create()
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldWriterTest.java 20 import java.io.Writer;
27 Writer tobj = new Support_ASimpleWriter(2);
41 Writer tobj = new Support_ASimpleWriter(20);
54 Writer tobj = new Support_ASimpleWriter(21);
68 tobj.append(testString, 20, 21); // Just fill the writer to its limit!
79 Writer tobj = new Support_ASimpleWriter(21);
101 Writer tobj = new Support_ASimpleWriter(21);
108 tobj.write("z".toCharArray()); // Just fill the writer to its limit!
118 Writer tobj = new Support_ASimpleWriter(2);
131 Writer tobj = new Support_ASimpleWriter(21)
    [all...]
  /libcore/support/src/test/java/org/apache/harmony/testframework/
CharSinkTester.java 25 import java.io.Writer;
30 * Tests behaviour common to all implementations of {@link Writer}. This adapts
38 * Creates a new writer ready to receive an arbitrary number of chars. Each
42 public abstract Writer create() throws Exception;
45 * Returns the current set of chars written to the writer last returned by
46 * {@link #create}, and releases any resources held by that writer.
51 * Configures whether the writer is expected to throw exceptions when an
96 Writer out = create();
104 Writer out = create();
117 Writer out = create()
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/bug345.dir/
main.go 20 // main.go:25: cannot use w (type "/Users/rsc/g/go/test/fixedbugs/bug345.dir/io".Writer) as type "io".Writer in function argument:
21 // io.Writer does not implement io.Writer (missing Write method)
24 var w io.Writer

Completed in 707 milliseconds

1 23 4 5 6 7 8 91011>>