/libcore/luni/src/main/java/org/w3c/dom/ls/ |
LSOutput.java | 54 public java.io.Writer getCharacterStream(); 59 public void setCharacterStream(java.io.Writer characterStream);
|
/libcore/ojluni/src/main/java/java/io/ |
Writer.java | 35 * @see Writer 50 public abstract class Writer implements Appendable, Closeable, Flushable { 72 * Creates a new character-stream writer whose critical sections will 73 * synchronize on the writer itself. 75 protected Writer() { 80 * Creates a new character-stream writer whose critical sections will 86 protected Writer(Object lock) { 197 * Appends the specified character sequence to this writer. 214 * appended to this writer. 216 * @return This writer [all...] |
/external/deqp/executor/tools/ |
xeBatchResultToJUnit.cpp | 86 ResultToJUnitHandler (xe::xml::Writer& writer) 87 : m_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 [all...] |
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...] |
/packages/apps/Camera2/src/com/android/camera/stats/profiler/ |
Profilers.java | 29 private static Writer sErrorWriter = new ErrorWriter(); 30 private static Writer sWarningWriter = new WarningWriter(); 31 private static Writer sInfoWriter = new InfoWriter(); 32 private static Writer sDebugWriter = new DebugWriter(); 33 private static Writer sVerboseWriter = new VerboseWriter(); 123 private static class DebugWriter implements Writer { 130 private static class ErrorWriter implements Writer { 137 private static class InfoWriter implements Writer { 144 private static class VerboseWriter implements Writer { 151 private static class WarningWriter implements Writer { [all...] |
LoggingProfile.java | 21 * writer and uses the standard message formatting. 24 private final Writer mWriter; 27 public LoggingProfile(Writer writer, String name) { 30 mWriter = writer;
|
/external/guava/guava/src/com/google/common/io/ |
CharSink.java | 24 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. 34 * <li><b>Methods that return a writer:</b> These methods should return a <i>new</i>, 36 * returned writer is closed. 38 * typically implemented by opening a writer using one of the methods in the first category, 39 * doing something and finally closing the writer that was opened. 57 * Opens a new {@link Writer} for writing to this sink. This method should return a new, 58 * independent writer each time it is called. 60 * <p>The caller is responsible for ensuring that the returned writer is closed 79 Writer writer = openStream(); local [all...] |
/external/apache-harmony/support/src/test/java/org/apache/harmony/testframework/ |
CharWrapperTester.java | 24 import java.io.Writer; 28 * Writer}. 38 public abstract Writer create(Writer delegate) throws Exception; 47 * Configures whether the writer is expected to throw exceptions when an 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) [all...] |
/libcore/support/src/test/java/org/apache/harmony/testframework/ |
CharWrapperTester.java | 24 import java.io.Writer; 28 * Writer}. 38 public abstract Writer create(Writer delegate) throws Exception; 47 * Configures whether the writer is expected to throw exceptions when an 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) [all...] |
/external/llvm/lib/Target/ARM/MCTargetDesc/ |
ARMMachObjectWriter.cpp | 1 //===-- 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, 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->getSymbolAddress(B->getSymbol(), Layout) [all...] |
/frameworks/av/include/media/nbaio/ |
NBLog.h | 34 class Writer; 56 friend class Writer; 86 // FIXME Timeline was intended to wrap Writer and Reader, but isn't actually used yet. 101 friend class Writer; 112 // Writer is thread-safe with respect to Reader, but not with respect to multiple threads 113 // calling Writer methods. If you need multi-thread safety for writing, use LockedWriter. 114 class Writer : public RefBase { 116 Writer(); // dummy nop implementation without shared memory 120 Writer(size_t size, void *shared); 121 Writer(size_t size, const sp<IMemory>& iMemory) [all...] |
/external/compiler-rt/lib/profile/ |
InstrProfilingWriter.c | 13 COMPILER_RT_VISIBILITY int llvmWriteProfData(WriterCallback Writer, 24 return llvmWriteProfDataImpl(Writer, WriterCtx, DataBegin, DataEnd, 30 WriterCallback Writer, void *WriterCtx, 62 if (Writer(IOVec, sizeof(IOVec) / sizeof(*IOVec), &WriterCtx)) 66 if (Writer(IOVec2, sizeof(IOVec2) / sizeof(*IOVec2), &WriterCtx))
|
/external/deqp/executor/ |
xeXMLWriter.cpp | 21 * \brief XML Writer. 33 const Writer::EndElementType Writer::EndElement = Writer::EndElementType(); 127 Writer::Writer (std::ostream& dst) 135 Writer::~Writer (void) 139 Writer& Writer::operator<< (const BeginElement& begin [all...] |
/frameworks/av/services/audioflinger/ |
FastThread.h | 44 virtual void setLog(NBLog::Writer *logWriter __unused) { } 84 NBLog::Writer mDummyLogWriter; 85 NBLog::Writer* mLogWriter;
|
/frameworks/base/opengl/java/android/opengl/ |
GLDebugHelper.java | 19 import java.io.Writer; 79 public static GL wrap(GL gl, int configFlags, Writer log) { 100 public static EGL wrap(EGL egl, int configFlags, Writer log) {
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/ |
WriterTesterTest.java | 38 import java.io.Writer; 45 * Tests basic {@link Writer} behaviors for the luni implementations of the type. 80 public Writer create() throws Exception { 93 private CharArrayWriter writer; field in class:WriterTesterTest.CharArrayWriterCharSinkTester 96 public Writer create() throws Exception { 97 writer = new CharArrayWriter(); 98 return writer; 103 return writer.toCharArray(); 112 public Writer create() throws IOException { 141 private StringWriter writer; field in class:WriterTesterTest.StringWriterCharSinkTester [all...] |
/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, 98 MachObjectWriter *Writer, MCAssembler &Asm, const MCAsmLayout &Layout [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, hasErrors); 60 return &Writer; 64 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/jetty/src/java/org/eclipse/jetty/io/ |
WriterOutputStream.java | 23 import java.io.Writer; 27 /** Wrap a Writer as an OutputStream. 28 * When all you have is a Writer and only an OutputStream will do. 35 protected final Writer _writer; 40 public WriterOutputStream(Writer writer, String encoding) 42 _writer=writer; 47 public WriterOutputStream(Writer writer) 49 _writer=writer; [all...] |
/external/llvm/tools/llvm-readobj/ |
ObjDumper.h | 26 ObjDumper(StreamWriter& Writer); 76 StreamWriter &Writer, 80 StreamWriter &Writer, 84 StreamWriter &Writer,
|