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

1 2

  /external/marisa-trie/lib/marisa/
writer.cc 10 #include "writer.h"
14 Writer::Writer()
17 Writer::Writer(std::FILE *file)
20 Writer::Writer(int fd)
23 Writer::Writer(std::ostream *stream)
26 Writer::~Writer()
    [all...]
writer.h 11 class Writer {
13 Writer();
14 explicit Writer(std::FILE *file);
15 explicit Writer(int fd);
16 explicit Writer(std::ostream *stream);
17 ~Writer();
42 void swap(Writer *rhs);
53 Writer(const Writer &);
54 Writer &operator=(const Writer &)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
writer.cc 10 #include "writer.h"
14 Writer::Writer()
17 Writer::Writer(std::FILE *file)
20 Writer::Writer(int fd)
23 Writer::Writer(std::ostream *stream)
26 Writer::~Writer()
    [all...]
writer.h 11 class Writer {
13 Writer();
14 explicit Writer(std::FILE *file);
15 explicit Writer(int fd);
16 explicit Writer(std::ostream *stream);
17 ~Writer();
43 void swap(Writer *rhs);
54 Writer(const Writer &);
55 Writer &operator=(const Writer &)
    [all...]
  /libcore/luni/src/main/java/java/io/
Writer.java 21 * The base class for all writers. A writer is a means of writing data to a
37 public abstract class Writer implements Appendable, Closeable, Flushable {
39 * The object used to synchronize access to the writer.
44 * Constructs a new {@code Writer} with {@code this} as the object used to
47 protected Writer() {
52 * Constructs a new {@code Writer} with {@code lock} used to synchronize
60 protected Writer(Object lock) {
68 * Closes this writer. Implementations of this method should free any
69 * resources associated with the writer.
72 * if an error occurs while closing this writer
    [all...]
  /frameworks/av/include/media/nbaio/
NBLog.h 32 class Writer;
54 friend class Writer;
84 // FIXME Timeline was intended to wrap Writer and Reader, but isn't actually used yet.
97 friend class Writer;
108 // Writer is thread-safe with respect to Reader, but not with respect to multiple threads
109 // calling Writer methods. If you need multi-thread safety for writing, use LockedWriter.
110 class Writer : public RefBase {
112 Writer(); // dummy nop implementation without shared memory
113 Writer(size_t size, void *shared);
114 Writer(size_t size, const sp<IMemory>& iMemory)
    [all...]
  /external/chromium/chrome/browser/ui/gtk/
certificate_dialogs.cc 27 class Writer : public Task {
29 Writer(const FilePath& path, const std::string& data)
47 BrowserThread::FILE, FROM_HERE, new Writer(path, data));
  /external/qemu/android/
config.c 356 } Writer;
359 writer_init( Writer* w, const char* fn )
375 writer_write( Writer* w, const char* src, int len )
401 writer_done( Writer* w )
413 writer_margin( Writer* w, int margin)
425 writer_c(Writer* w, char c)
431 writer_str(Writer* w, const char* str)
437 writer_node(Writer* w, AConfig* node, int margin)
467 Writer w[1];
  /external/valgrind/unittest/
posix_tests.cc 172 void Writer() {
204 MyThreadArray t(Writer, Reader);
446 // (GLOB[thread_num]) and we take a *writer* lock when we
657 // Worker2 tries to write to globals twice: without a writer lock and with it.
windows_tests.cc 294 void Writer() {
320 MyThreadArray t(Reader, Writer, Reader, Writer);
338 MyThreadArray t(Reader, Writer, Reader, Writer);
  /frameworks/av/media/libnbaio/
NBLog.cpp 74 NBLog::Writer::Writer()
79 NBLog::Writer::Writer(size_t size, void *shared)
84 NBLog::Writer::Writer(size_t size, const sp<IMemory>& iMemory)
90 void NBLog::Writer::log(const char *string)
102 void NBLog::Writer::logf(const char *fmt, ...)
109 Writer::logvf(fmt, ap); // the Writer:: is needed to avoid virtual dispatch for LockedWrite
    [all...]
  /external/chromium/chrome/browser/bookmarks/
bookmark_html_writer.cc 81 class Writer : public Task {
83 Writer(Value* bookmarks,
421 new Writer(codec.Encode(profile_->GetBookmarkModel()),
  /external/clang/lib/Frontend/
SerializedDiagnosticPrinter.cpp 53 SDiagsWriter &Writer;
55 SDiagsRenderer(SDiagsWriter &Writer, const LangOptions &LangOpts,
57 : DiagnosticNoteRenderer(LangOpts, DiagOpts), Writer(Writer) {}
612 Writer.EmitDiagnosticMessage(Loc, PLoc, Level, Message, SM, D);
626 Writer.EnterDiagBlock();
634 Writer.ExitDiagBlock();
670 Writer.EmitCodeContext(Ranges, Hints, SM);
675 Writer.EnterDiagBlock();
677 Writer.EmitDiagnosticMessage(Loc, PLoc, DiagnosticsEngine::Note
    [all...]
ASTUnit.cpp 187 ASTWriter Writer;
189 ASTWriterData() : Stream(Buffer), Writer(Stream) { }
643 return &WriterData->Writer;
    [all...]
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 295 Writer writer; field in class:StackMap.SimpleCopy
299 writer = new Writer();
304 return writer.toByteArray();
309 writer.write16bit(num);
314 writer.write16bit(offset);
319 writer.write16bit(num);
324 writer.writeVerifyTypeInfo(tag, 0);
328 writer.writeVerifyTypeInfo(OBJECT, clazz)
477 private java.io.PrintWriter writer; field in class:StackMap.Printer
    [all...]
StackMapTable.java 357 private Writer writer; field in class:StackMapTable.SimpleCopy
361 writer = new Writer(data.length);
366 return writer.toByteArray();
370 writer.sameFrame(offsetDelta);
374 writer.sameLocals(offsetDelta, stackTag, copyData(stackTag, stackData));
378 writer.chopFrame(offsetDelta, k);
382 writer.appendFrame(offsetDelta, tags, copyData(tags, data));
387 writer.fullFrame(offsetDelta, localTags, copyData(localTags, localData)
694 private PrintWriter writer; field in class:StackMapTable.Printer
    [all...]
  /frameworks/base/core/java/com/android/internal/util/
FileRotator.java 75 public interface Writer {
83 public interface Rewriter extends Reader, Writer {
188 public void combineActive(final Reader reader, final Writer writer, long currentTimeMillis)
208 writer.write(out);
373 private static void writeFile(File file, Writer writer) throws IOException {
377 writer.write(bos);
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 36 ASTWriter &Writer;
45 ASTDeclWriter(ASTWriter &Writer, ASTContext &Context, RecordData &Record)
46 : Writer(Writer), Context(Context), Record(Record) {
136 Writer.AddTypeSourceInfo(DD->getTypeSourceInfo(), Record);
145 Writer.AddStmt(FD->getBody());
150 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
151 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
155 Writer.WriteAttributes(ArrayRef<const Attr*>(D->getAttrs().begin(),
163 Record.push_back(Writer.inferSubmoduleIDFromLocation(D->getLocation()))
    [all...]
ASTWriterStmt.cpp 29 ASTWriter &Writer;
36 ASTStmtWriter(ASTWriter &Writer, ASTWriter::RecordData &Record)
37 : Writer(Writer), Record(Record) { }
50 Writer.AddSourceLocation(Args.getTemplateKeywordLoc(), Record);
51 Writer.AddSourceLocation(Args.LAngleLoc, Record);
52 Writer.AddSourceLocation(Args.RAngleLoc, Record);
54 Writer.AddTemplateArgumentLoc(Args.getTemplateArgs()[i], Record);
62 Writer.AddSourceLocation(S->getSemiLoc(), Record);
72 Writer.AddStmt(*CS)
    [all...]
ASTWriter.cpp 1 //===--- ASTWriter.cpp - AST File Writer ----------------------------------===//
77 ASTWriter &Writer;
84 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
85 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
102 Writer.AddTypeRef(T->getElementType(), Record);
107 Writer.AddTypeRef(T->getPointeeType(), Record);
112 Writer.AddTypeRef(T->getPointeeType(), Record);
117 Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record);
123 Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record)
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 1 //===--- ASTWriter.h - AST File Writer --------------------------*- C++ -*-===//
100 /// \brief The bitstream writer used to emit this precompiled header.
477 /// \brief Create a new precompiled header writer that outputs to
741 ASTWriter Writer;
744 ASTWriter &getWriter() { return Writer; }
745 const ASTWriter &getWriter() const { return Writer; }
  /external/v8/src/
gdb-jit.cc 57 class Writer BASE_EMBEDDED {
59 explicit Writer(DebugObject* debug_object)
66 ~Writer() {
77 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { }
92 Writer* w_;
195 virtual void WriteBody(Writer::Slot<THeader> header, Writer* writer) {
196 uintptr_t start = writer->position();
197 if (WriteBody(writer)) {
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 839 MCObjectWriter *Writer;
953 /// Emit the section contents using the given object writer.
993 MCObjectWriter &getWriter() const { return *Writer; }
998 /// \p Writer is used for custom object writer (as the MCJIT does),
1064 // factored so that the streamer has direct access to the .o writer, it can
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
SerializedScriptValue.cpp 127 // Writer is responsible for serializing primitive types and storing
129 class Writer {
130 WTF_MAKE_NONCOPYABLE(Writer);
132 Writer()
325 // If the writer is at odd position in the buffer, then one of
347 Serializer(Writer& writer, v8::TryCatch& tryCatch)
348 : m_writer(writer)
679 Writer& m_writer;
1173 Writer writer; local
1188 Writer writer; local
1200 Writer writer; local
1222 Writer writer; local
    [all...]
  /external/valgrind/main/drd/tests/
tsan_unittest.cpp 668 // A simple data race between writer and reader.
671 void Writer() {
684 MyThreadArray t(Writer, Reader);
696 // A simple data race between writer and reader.
700 // Writer: Reader:
702 // is most likely initialized by Writer)
709 void Writer() {
721 MyThreadArray t(Writer, Reader);
    [all...]

Completed in 1268 milliseconds

1 2