/external/v8/src/ |
gdb-jit.cc | 40 class Writer BASE_EMBEDDED { 42 explicit Writer(DebugObject* debug_object) 49 ~Writer() { 60 Slot(Writer* w, uintptr_t offset) : w_(w), offset_(offset) { } 75 Writer* w_; 178 virtual void WriteBody(Writer::Slot<THeader> header, Writer* writer) { 179 uintptr_t start = writer->position(); 180 if (WriteBodyInternal(writer)) { [all...] |
/art/compiler/debug/dwarf/ |
debug_abbrev_writer.h | 27 #include "debug/dwarf/writer.h" 33 // Writer for the .debug_abbrev. 40 class DebugAbbrevWriter FINAL : private Writer<Vector> { 45 : Writer<Vector>(buffer),
|
/external/apache-harmony/support/src/test/java/tests/support/ |
Support_StringWriter.java | 21 import java.io.Writer; 23 public class Support_StringWriter extends Writer { 29 * <code>lock</code> used to synchronize access to this Writer. 40 * the <code>lock</code> used to synchronize access to this Writer. 52 * Close this Writer. This is the concrete implementation required. This 62 * Flush this Writer. This is the concrete implementation required. This
|
/external/guava/guava-tests/test/com/google/common/io/ |
TestCharSink.java | 24 import java.io.Writer; 54 public Writer openStream() throws IOException {
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/ |
HTMLDocument.java | 16 import java.io.Writer; 37 * Creates a new HTML document based on the given writer. 39 * @param writer 40 * writer for content output 44 * in case of problems with the writer 46 public HTMLDocument(final Writer writer, final String encoding) 48 super(ROOT, PUBID, SYSTEM, encoding, false, writer); 70 final HTMLElement element = new HTMLElement(writer, name); 80 * in case of problems with the writer [all...] |
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/ |
DirectorySourceFileLocatorTest.java | 24 import java.io.Writer; 64 final Writer writer = new OutputStreamWriter( local 66 writer.write("Source"); 67 writer.close();
|
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
ErrorHandler.java | 24 import java.io.Writer; 104 ByteArrayISO8859Writer writer= new ByteArrayISO8859Writer(4096); local 105 handleErrorPage(request, writer, connection.getResponse().getStatus(), connection.getResponse().getReason()); 106 writer.flush(); 107 response.setContentLength(writer.size()); 108 writer.writeTo(response.getOutputStream()); 109 writer.destroy(); 113 protected void handleErrorPage(HttpServletRequest request, Writer writer, int code, String message) 116 writeErrorPage(request, writer, code, message, _showStacks) [all...] |
/external/llvm/unittests/Support/ |
EndianStreamTest.cpp | 24 endian::Writer<little> LE(OS); 39 endian::Writer<big> BE(OS); 55 endian::Writer<little> LE(OS); 70 endian::Writer<big> BE(OS); 85 endian::Writer<little> LE(OS); 104 endian::Writer<big> BE(OS); 123 endian::Writer<little> LE(OS); 142 endian::Writer<big> BE(OS);
|
/external/okhttp/okhttp-hpacktests/src/test/java/com/squareup/okhttp/internal/spdy/ |
HpackRoundTripTest.java | 45 private Hpack.Writer hpackWriter = new Hpack.Writer(bytesOut);
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/ |
RawResourceLoaderTest.java | 15 import java.io.Writer; 44 Writer writer = new StringWriter(); local 50 writer.write(buffer, 0, n); 55 return writer.toString();
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/ |
dump.java | 40 import java.io.Writer; 45 Writer writer = null; local 48 writer = new BufferedWriter(new FileWriter(dumpFileName)); 57 annotator.writeAnnotations(writer); 62 if (writer != null) { 64 writer.close();
|
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/ |
InputOutputExceptionTest.java | 20 import java.io.Writer; 64 private static class BrokenWriter extends Writer {
|
/libcore/support/src/test/java/tests/support/ |
Support_ASimpleWriter.java | 4 import java.io.Writer; 12 public class Support_ASimpleWriter extends Writer {
|
Support_StringWriter.java | 21 import java.io.Writer; 23 public class Support_StringWriter extends Writer { 29 * <code>lock</code> used to synchronize access to this Writer. 40 * the <code>lock</code> used to synchronize access to this Writer. 52 * Close this Writer. This is the concrete implementation required. This 63 * Flush this Writer. This is the concrete implementation required. This
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
SerializerTraceWriter.java | 25 import java.io.Writer; 28 * This class wraps the real writer, it only purpose is to send 30 * Each method immediately sends the call to the wrapped writer unchanged, but 34 * listener knows what characters have been written to the output Writer. 37 * output writer and what is really going there. These differences will be due 39 * and the underlying writer may not be UTF-8 encoding. There may also be 45 final class SerializerTraceWriter extends Writer implements WriterChain 48 /** The real writer to immediately write to. 52 private final java.io.Writer m_writer; 88 * If the writer passed in is null, then this SerializerTraceWriter wil [all...] |
/external/llvm/unittests/ProfileData/ |
SampleProfTest.cpp | 32 std::unique_ptr<SampleProfileWriter> Writer; 36 : Data(), OS(new raw_string_ostream(Data)), Writer(), Reader() {} 41 Writer = std::move(WriterOrErr.get()); 70 EC = Writer->write(Profiles); 73 Writer->getOutputStream().flush();
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
ReferenceUtil.java | 40 import java.io.Writer; 63 public static void writeMethodDescriptor(Writer writer, MethodReference methodReference) throws IOException { 64 writeMethodDescriptor(writer, methodReference, false); 67 public static void writeMethodDescriptor(Writer writer, MethodReference methodReference, 70 writer.write(methodReference.getDefiningClass()); 71 writer.write("->"); 73 writer.write(methodReference.getName()); 74 writer.write('(') [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
FileWriterWithEncoding.java | 24 import java.io.Writer; 32 * Writer of files that allows the encoding to be set. 50 public class FileWriterWithEncoding extends Writer { 51 // Cannot extend ProxyWriter, as requires writer to be 54 /** The writer to decorate. */ 55 private final Writer out; 212 * Initialise the wrapped file writer. 213 * Ensure that a cleanup occurs if the writer creation fails. 218 * @return the initialised writer 222 private static Writer initWriter(File file, Object encoding, boolean append) throws IOException 231 Writer writer = null; local [all...] |
LockableFileWriter.java | 25 import java.io.Writer; 50 public class LockableFileWriter extends Writer { 51 // Cannot extend ProxyWriter, as requires writer to be 57 /** The writer to decorate. */ 58 private final Writer out; 182 // init wrapped writer 221 * Initialise the wrapped file writer. 222 * Ensure that a cleanup occurs if the writer creation fails. 227 * @return The initialised writer 230 private Writer initWriter(File file, String encoding, boolean append) throws IOException 233 Writer writer = null; local [all...] |
/external/clang/lib/Serialization/ |
ASTWriter.cpp | 1 //===--- ASTWriter.cpp - AST File Writer ------------------------*- C++ -*-===// 86 ASTWriter &Writer; 95 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record) 96 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { } 113 Writer.AddTypeRef(T->getElementType(), Record); 118 Writer.AddTypeRef(T->getPointeeType(), Record); 123 Writer.AddTypeRef(T->getOriginalType(), Record); 128 Writer.AddTypeRef(T->getOriginalType(), Record); 129 Writer.AddTypeRef(T->getAdjustedType(), Record) [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
CaptureDataSerializer.java | 37 import java.io.Writer; 48 public void write(Writer writer) throws IOException; 58 StringWriter writer = new StringWriter(); local 59 dumpMetadata(title, metadata, writer); 60 return writer.toString(); 70 FileWriter writer = new FileWriter(file, true); local 72 dumpMetadata(title, (CaptureRequest) metadata, writer); 74 dumpMetadata(title, (CaptureResult) metadata, writer); 76 writer.close() [all...] |
/packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/ |
misctest.cpp | 23 #include "rapidjson/writer.h"
761 template <typename Writer>
764 Writer writer(sb);
768 writer.WriteInt(randval[j]);
774 template <typename Writer>
776 Writer writer;
local 782 writer.Reset(ss);
784 writer.WriteInt(randval[j]); 813 Writer writer; local 842 Writer writer; local 880 Writer writer; local [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/ |
IO.java | 32 import java.io.Writer; 75 Writer write; 84 Job(Reader read,Writer write) 151 public static void copyThread(Reader in, Writer out) 166 /** Copy Reader to Writer out until EOF or exception. 168 public static void copy(Reader in, Writer out) 212 /** Copy Reader to Writer for byteCount bytes or until EOF or exception. 215 Writer out, 324 StringWriter writer=new StringWriter(); 327 copy(reader,writer); [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
SerializerSwitcher.java | 24 import java.io.Writer; 93 Writer writer = oldSerializer.getWriter(); local 95 if (null != writer) 96 serializer.setWriter(writer); 183 Writer writer = oldSerializer.getWriter(); local 185 if (null != writer) 186 serializer.setWriter(writer);
|
/external/google-tv-pairing-protocol/java/src/com/google/polo/json/ |
JSONWriter.java | 4 import java.io.Writer; 89 * The writer that will receive the output. 91 protected Writer writer; field in class:JSONWriter 96 public JSONWriter(Writer w) { 101 this.writer = w; 117 this.writer.write(','); 119 this.writer.write(s); 165 this.writer.write(c); 208 this.writer.write(',') [all...] |