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

123456789

/external/llvm/tools/llvm-readobj/
H A DObjDumper.cpp24 ObjDumper::ObjDumper(StreamWriter& Writer) argument
25 : W(Writer) {
H A DObjDumper.h25 ObjDumper(StreamWriter& Writer);
51 StreamWriter &Writer,
55 StreamWriter &Writer,
59 StreamWriter &Writer,
/external/chromium_org/third_party/leveldatabase/src/db/
H A Dlog_writer.h19 class Writer { class in namespace:leveldb::log
23 // "*dest" must remain live while this Writer is in use.
24 explicit Writer(WritableFile* dest);
25 ~Writer();
41 Writer(const Writer&);
42 void operator=(const Writer&);
H A Dlog_writer.cc15 Writer::Writer(WritableFile* dest) function in class:leveldb::log::Writer
24 Writer::~Writer() {
27 Status Writer::AddRecord(const Slice& slice) {
75 Status Writer::EmitPhysicalRecord(RecordType t, const char* ptr, size_t n) {
/external/llvm/lib/Bitcode/
H A DMakefile11 PARALLEL_DIRS = Reader Writer
/external/deqp/executor/
H A DxeXMLWriter.cpp21 * \brief XML Writer.
33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType();
95 Writer::Writer (std::ostream& dst) function in class:xe::xml::Writer
103 Writer::~Writer (void)
107 Writer& Writer
[all...]
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);
/external/smack/src/org/jivesoftware/smack/debugger/
H A DSmackDebugger.java32 * arguments: Connection, Writer, Reader.
55 * Returns the special Writer that wraps the main Writer and logs data to the GUI.
57 * @return the special Writer that wraps the main Writer and logs data to the GUI.
59 public abstract Writer getWriter();
72 * Returns a new special Writer that wraps the new connection Writer. The connection
77 * @return a new special Writer that wraps the new connection Writer
[all...]
/external/clang/lib/Serialization/
H A DASTWriterStmt.cpp33 ASTWriter &Writer; member in class:clang::ASTStmtWriter
40 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record) argument
41 : Writer(Writer), Record(Record) { }
54 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
55 Writer.AddSourceLocation(Args.LAngleLoc, Record);
56 Writer.AddSourceLocation(Args.RAngleLoc, Record);
58 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
66 Writer.AddSourceLocation(S->getSemiLoc(), Record);
75 Writer
1665 ASTStmtWriter *Writer; member in class:clang::OMPClauseWriter
[all...]
H A DGeneratePCH.cpp34 SemaPtr(nullptr), Stream(Buffer), Writer(Stream),
53 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
68 return &Writer;
72 return &Writer;
H A DASTWriterDecl.cpp36 ASTWriter &Writer; member in class:clang::ASTDeclWriter
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record) argument
46 : Writer(Writer), Context(Context), Record(Record) {
137 Writer.AddCXXCtorInitializers(CD->CtorInitializers,
139 Writer.AddStmt(FD->getBody());
151 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
160 Writer.AddStmt(FD->getBody());
165 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
166 Writer
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DWriters.java20 import java.io.Writer;
23 * Utilities for dealing with {@code Writer}s.
34 * Makes a {@code PrintWriter} for the given {@code Writer},
41 public static PrintWriter printWriterFor(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/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskCache.java16 public interface Writer { interface in interface:DiskCache
21 * @param os The output stream the Writer should write to.
35 * Write to a key in the cache. {@link Writer} is used so that the cache implementation
41 public void put(Key key, Writer writer);
/external/chromium_org/tools/ipc_fuzzer/message_lib/
H A Dmessage_file_writer.cc19 class Writer { class in namespace:ipc_fuzzer::__anon16501
21 Writer(const base::FilePath& path);
22 ~Writer() {}
50 DISALLOW_COPY_AND_ASSIGN(Writer);
53 Writer::Writer(const base::FilePath& path) : path_(path), messages_(NULL) { function in class:ipc_fuzzer::__anon16501::Writer
56 bool Writer::OpenFile() {
66 bool Writer::WriteBlob(const void *buffer, size_t size) {
78 bool Writer::CollectMessageTypes() {
90 bool Writer
[all...]
/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...]
/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,
57 void RecordRelocation(MachObjectWriter *Writer,
147 RecordARMScatteredHalfRelocation(MachObjectWriter *Writer, argument
155 unsigned IsPCRel = Writer->isFixupKindPCRel(Asm, Fixup.getKind());
167 uint32_t Value = Writer->getSymbolAddress(A_SD, Layout);
170 Writer->getSectionAddress(A_SD->getFragment()->getParent());
183 Value2 = Writer
249 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
313 requiresExternRelocation(MachObjectWriter *Writer, const MCAssembler &Asm, const MCFragment &Fragment, unsigned RelocType, const MCSymbolData *SD, uint64_t FixedValue) argument
353 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 DAppendableWriter.java22 import java.io.Writer;
25 * Writer that places all output on an {@link Appendable} target. If the target
33 class AppendableWriter extends Writer {
47 * Abstract methods from Writer
93 @Override public Writer append(char c) throws IOException {
99 @Override public Writer append(CharSequence charSeq) throws IOException {
105 @Override public Writer append(CharSequence charSeq, int start, int end)
/external/llvm/include/llvm/Support/
H A DEndianStream.h26 template <endianness endian> struct Writer { struct in namespace:llvm::support::endian
28 Writer(raw_ostream &OS) : OS(OS) {} function in struct:llvm::support::endian::Writer

Completed in 4492 milliseconds

123456789