Searched refs:Writer (Results 1 - 25 of 300) sorted by relevance

1234567891011>>

/external/llvm/tools/llvm-readobj/
H A DObjDumper.cpp23 ObjDumper::ObjDumper(ScopedPrinter &Writer) : W(Writer) {} argument
/external/testng/src/main/java/org/testng/reporters/
H A DIBuffer.java3 import java.io.Writer;
7 void toWriter(Writer fw);
/external/swiftshader/third_party/LLVM/lib/Bitcode/
H A DMakefile11 PARALLEL_DIRS = Reader Writer
/external/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewOStream.h19 template <typename Writer> class CodeViewOStream {
25 typedef typename Writer::LabelType LabelType;
28 explicit CodeViewOStream(Writer &W);
34 Writer &W;
/external/deqp/executor/
H A DxeTestLogWriter.cpp236 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)
256 << Writer::Attribute("Unit", number.unit)
257 << Writer::Attribute("Tag", number.tag)
259 << Writer
[all...]
H A DxeXMLWriter.hpp23 * \brief XML Writer.
51 class Writer class in namespace:xe::xml
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
[all...]
H A DxeTestLogWriter.hpp37 class Writer;
43 void writeTestResult (const TestCaseResult& result, xe::xml::Writer& writer);
H A DxeXMLWriter.cpp21 * \brief XML Writer.
33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType();
127 Writer::Writer (std::ostream& dst) function in class:xe::xml::Writer
135 Writer::~Writer (void)
139 Writer& Writer
[all...]
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskCache.java14 interface Writer { interface in interface:DiskCache
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
44 void put(Key key, Writer writer);
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DCommentingIndentingWriter.java37 import java.io.Writer;
40 public CommentingIndentingWriter(Writer writer) {
/external/smali/util/src/main/java/org/jf/util/
H A DStringUtils.java35 import java.io.Writer;
38 public static void writeEscapedChar(Writer writer, char c) throws IOException {
60 public static void writeEscapedString(Writer writer, String value) throws IOException {
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DSerializer.java24 import java.io.Writer;
65 * java.io.Writer owriter;
129 public void setWriter(Writer writer);
134 * @return Reference to the result Writer, or null.
136 public Writer getWriter();
/external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOMOutputImpl.java26 import java.io.Writer;
63 private Writer fCharStream = null;
81 public Writer getCharacterStream(){
93 public void setCharacterStream(Writer characterStream){
/external/llvm/include/llvm/Support/
H A DEndianStream.h27 template <endianness endian> struct Writer { struct in namespace:llvm::support::endian
29 Writer(raw_ostream &OS) : OS(OS) {} function in struct:llvm::support::endian::Writer
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) {
/external/deqp/executor/tools/
H A DxeBatchResultToJUnit.cpp86 ResultToJUnitHandler (xe::xml::Writer& writer)
106 using xe::xml::Writer;
118 m_writer << Writer::BeginElement("testcase")
119 << Writer::Attribute("name", caseName)
120 << Writer::Attribute("classname", groupName);
123 m_writer << Writer::BeginElement("failure")
124 << Writer::Attribute("type", xe::getTestStatusCodeName(result.statusCode))
126 << Writer::EndElement;
128 m_writer << Writer::EndElement;
132 xe::xml::Writer
[all...]
H A DxeBatchResultToXml.cpp144 ResultToSingleXmlLogHandler (xe::xml::Writer& writer, BatchResultTotals& totals)
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.countByCode[code]).c_str());
197 writer << Writer::Attribute("All", de::toString(totalCases).c_str())
198 << Writer::EndElement;
204 xe::xml::Writer writer (out);
214 writer << xe::xml::Writer
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
27 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
35 void RecordARMMovwMovtRelocation(MachObjectWriter *Writer,
48 void RecordRelocation(MachObjectWriter *Writer,
122 RecordARMMovwMovtRelocation(MachObjectWriter *Writer, argument
130 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
141 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout);
144 Writer->getSectionAddress(A_SD->getFragment()->getParent());
156 Value2 = Writer->getSymbolAddress(B_SD, Layout);
157 FixedValue -= Writer
219 RecordARMScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
280 RecordRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/guava/guava/src/com/google/common/io/
H A DCharSink.java24 import java.io.Writer;
28 * A destination to which characters can be written, such as a text file. Unlike a {@link Writer}, a
30 * is an immutable <i>supplier</i> of {@code Writer} instances.
57 * Opens a new {@link Writer} for writing to this sink. This method should return a new,
64 public abstract Writer openStream() throws IOException;
67 * Opens a new buffered {@link Writer} for writing to this sink. The returned stream is not
78 public Writer openBufferedStream() throws IOException {
79 Writer writer = openStream();
95 Writer out = closer.register(openStream());
129 Writer ou
[all...]
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/
H A DCharWrapperTester.java24 import java.io.Writer;
28 * Writer}.
38 public abstract Writer create(Writer delegate) throws Exception;
84 public Writer create() throws Exception {
113 Writer o = create(delegate);
122 Writer o = create(delegate);
132 Writer o = create(delegate);
148 Writer o = create(delegate);
169 Writer
[all...]
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMMachObjectWriter.cpp1 //===-- ARMMachObjectWriter.cpp - ARM Mach Object Writer ------------------===//
29 void RecordARMScatteredRelocation(MachObjectWriter *Writer,
38 void RecordARMScatteredHalfRelocation(MachObjectWriter *Writer,
45 bool requiresExternRelocation(MachObjectWriter *Writer,
54 void recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm,
139 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, argument
147 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
160 uint32_t Value = Writer->getSymbolAddress(*A, Layout);
162 uint64_t SecAddr = Writer->getSectionAddress(A->getFragment()->getParent());
177 Value2 = Writer
243 RecordARMScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Type, unsigned Log2Size, uint64_t &FixedValue) argument
310 requiresExternRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCFragment &Fragment, unsigned RelocType, const MCSymbol &S, uint64_t FixedValue) argument
348 recordRelocation(MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/llvm/lib/Target/WebAssembly/MCTargetDesc/
H A DWebAssemblyMCCodeEmitter.cpp62 support::endian::Writer<support::little>(OS).write<uint64_t>(MI.getOpcode());
65 support::endian::Writer<support::little>(OS).write<uint64_t>(
70 support::endian::Writer<support::little>(OS).write<uint64_t>(MO.getReg());
72 support::endian::Writer<support::little>(OS).write<uint64_t>(MO.getImm());
74 support::endian::Writer<support::little>(OS).write<double>(MO.getFPImm());
76 support::endian::Writer<support::little>(OS).write<uint64_t>(0);
/external/llvm/lib/DebugInfo/CodeView/
H A DTypeRecordBuilder.cpp16 : Stream(Buffer), Writer(Stream) {
25 Writer.write(Value);
29 Writer.write(Value);
33 Writer.write(Value);
37 Writer.write(Value);
41 Writer.write(Value);
45 Writer.write(Value);
49 Writer.write(Value);
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp1 //===-- 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, MCAssemble
102 RecordX86_64Relocation( MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
365 recordScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
465 recordTLVPRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
507 RecordX86Relocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp1 //===-- 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, argument
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, argument
338 RecordScatteredRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
404 RecordTLVPRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
451 RecordX86Relocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]
/external/llvm/lib/Target/PowerPC/MCTargetDesc/
H A DPPCMachObjectWriter.cpp1 //===-- 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
191 recordScatteredRelocation( MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, unsigned Log2Size, uint64_t &FixedValue) argument
301 RecordPPCRelocation( MachObjectWriter *Writer, const MCAssembler &Asm, const MCAsmLayout &Layout, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) argument
[all...]

Completed in 524 milliseconds

1234567891011>>