HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 176 - 200 of 646) sorted by null

1 2 3 4 5 6 78 91011>>

  /libcore/ojluni/src/main/java/java/io/
StringWriter.java 41 public class StringWriter extends Writer {
46 * Create a new string writer using the default initial string-buffer
55 * Create a new string writer using the specified initial string-buffer
116 * Appends the specified character sequence to this writer.
133 * appended to this writer.
135 * @return This writer
148 * Appends a subsequence of the specified character sequence to this writer.
170 * @return This writer
186 * Appends the specified character to this writer.
197 * @return This writer
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
namespacetest.cpp 26 #include "rapidjson/writer.h"
48 typedef RAPIDJSON_NAMESPACE::Writer<StringBuffer> WriterType;
52 WriterType writer(buffer);
55 reader.Parse(s, writer);
59 EXPECT_TRUE(writer.IsComplete());
66 writer.Reset(buffer);
67 doc.Accept(writer);
69 EXPECT_TRUE(writer.IsComplete());
  /external/javassist/src/main/javassist/bytecode/stackmap/
MapMaker.java 307 StackMapTable.Writer writer = new StackMapTable.Writer(32); local
312 writer.sameFrame(0);
322 toStackMapBody(writer, bb, diffL, offsetDelta, prev);
330 return writer.toStackMapTable(cpool);
346 private void toStackMapBody(StackMapTable.Writer writer, TypedBlock bb,
354 writer.sameFrame(offsetDelta);
358 writer.chopFrame(offsetDelta, -diffL)
469 StackMap.Writer writer = new StackMap.Writer(); local
    [all...]
  /external/clang/lib/Serialization/
MultiOnDiskHashTable.h 274 /// \brief Writer for the on-disk hash table.
297 endian::Writer<little> Writer(OutStream);
300 Writer.write<uint32_t>(0);
304 Writer.write<uint32_t>(Merged->Files.size());
314 Writer.write<uint32_t>(0);
  /external/llvm/tools/llvm-readobj/
llvm-readobj.cpp 280 static std::error_code createDumper(const ObjectFile *Obj, StreamWriter &Writer,
286 return createCOFFDumper(Obj, Writer, Result);
288 return createELFDumper(Obj, Writer, Result);
290 return createMachODumper(Obj, Writer, Result);
297 StreamWriter Writer(outs());
299 if (std::error_code EC = createDumper(Obj, Writer, Dumper))
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
Http2Test.java 67 assertEquals(frame, sendHeaderFrames(true, sentHeaders)); // Check writer sends the same bytes.
136 assertEquals(frame, sendHeaderFrames(false, sentHeaders)); // Check writer sends the same bytes.
362 // Check writer sends the same bytes.
384 // Check writer sends the same bytes.
536 // Check writer sends the same bytes.
574 // Check writer sends the same bytes.
600 // Check writer sends the same bytes.
614 Http2.Writer writer = new Http2.Writer(new Buffer(), true) local
628 Http2.Writer writer = new Http2.Writer(new Buffer(), true); local
637 Http2.Writer writer = new Http2.Writer(new Buffer(), true); local
    [all...]
  /system/core/libziparchive/
zip_archive.cc 758 class Writer {
761 virtual ~Writer() {}
763 Writer() = default;
765 DISALLOW_COPY_AND_ASSIGN(Writer);
768 // A Writer that writes data to a fixed size memory region.
771 class MemoryWriter : public Writer {
773 MemoryWriter(uint8_t* buf, size_t size) : Writer(),
795 // A Writer that appends data to a file |fd| at its current position.
797 class FileWriter : public Writer {
863 Writer(),
    [all...]
  /external/doclava/src/com/google/doclava/
Proofread.java 22 import java.io.Writer;
27 static Writer out = null;
  /external/guava/guava/src/com/google/common/io/
GwtWorkarounds.java 27 import java.io.Writer;
31 * {@code Reader}, and {@code Writer} so that {@code BaseEncoding} can use streaming implementations
174 * A GWT-compatible substitute for a {@code Writer}.
183 * Views a {@code Writer} as a {@code CharOutput}.
185 @GwtIncompatible("Writer")
186 static CharOutput asCharOutput(final Writer writer) {
187 checkNotNull(writer);
191 writer.append(c);
196 writer.flush()
    [all...]
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
AntResourcesLocatorTest.java 26 import java.io.Writer;
126 final Writer writer = new OutputStreamWriter( local
128 writer.write(content);
129 writer.close();
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLElement.java 15 import java.io.Writer;
29 * @param writer
34 protected HTMLElement(final Writer writer, final String name) {
35 super(writer, name);
40 final HTMLElement element = new HTMLElement(writer, name);
58 * in case of problems with the writer
79 * in case of problems with the writer
95 * in case of problems with the writer
106 * in case of problems with the writer
    [all...]
  /external/jetty/src/java/org/eclipse/jetty/util/
ByteArrayISO8859Writer.java 23 import java.io.Writer;
27 /** Byte Array ISO 8859 writer.
35 public class ByteArrayISO8859Writer extends Writer
  /external/llvm/lib/Target/AMDGPU/MCTargetDesc/
R600MCCodeEmitter.cpp 150 support::endian::Writer<support::little>(OS).write(Value);
154 support::endian::Writer<support::little>(OS).write(Value);
  /external/llvm/lib/Target/BPF/MCTargetDesc/
BPFMCCodeEmitter.cpp 111 support::endian::Writer<support::little> LE(OS);
112 support::endian::Writer<support::big> BE(OS);
  /external/snakeyaml/src/test/java/org/pyyaml/
PyErrorsTest.java 23 import java.io.Writer;
115 Writer writer = new StringWriter(); local
116 Emitter emitter = new Emitter(writer, new DumperOptions());
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/types/
StrTagTest.java 21 import java.io.Writer;
167 Writer writer = new OutputStreamWriter(stream, charset); local
168 yaml.dump(str, writer);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaTestUtil.java 25 import java.io.Writer;
42 private Writer mOutput = null;
  /cts/tests/tests/content/src/android/content/cts/
ImageCaptureActivity.java 30 import java.io.Writer;
67 FileWriter writer = new FileWriter(file); local
68 writer.write(ImageCaptureUriExtraToClipDataTest.TEST_INPUT);
69 writer.flush();
70 writer.close();
  /dalvik/dexgen/src/com/android/dexgen/util/
ByteArrayAnnotatedOutput.java 20 import java.io.Writer;
475 * Writes the annotated content of this instance to the given writer.
479 public void writeAnnotationsTo(Writer out) throws IOException {
484 Writer left = twoc.getLeft();
485 Writer right = twoc.getRight();
  /dalvik/dx/src/com/android/dx/util/
ByteArrayAnnotatedOutput.java 23 import java.io.Writer;
471 * Writes the annotated content of this instance to the given writer.
475 public void writeAnnotationsTo(Writer out) throws IOException {
480 Writer left = twoc.getLeft();
481 Writer right = twoc.getRight();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToXMLStream.java 142 final java.io.Writer writer = m_writer; local
143 writer.write("<?xml version=\"");
144 writer.write(version);
145 writer.write("\" encoding=\"");
146 writer.write(encoding);
147 writer.write('\"');
148 writer.write(standalone);
149 writer.write("?>");
163 writer.write(m_lineSep, 0, m_lineSepLen)
282 final java.io.Writer writer = m_writer; local
357 final java.io.Writer writer = m_writer; local
390 final java.io.Writer writer = m_writer; local
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/worker/
WorkerEventLog.java 34 private final OpenedSocket.Writer writer; field in class:WorkerEventLog
38 this.writer = socket.writer();
43 writer.write(new StartupAnnounceMessage(trialId));
44 writer.write(new VmPropertiesLogMessage());
45 writer.flush();
49 writer.write("Bootstrap phase starting.");
50 writer.flush();
54 writer.write("Measurement phase starting (includes warmup and actual measurement).")
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/util/
ByteArrayAnnotatedOutput.java 20 import java.io.Writer;
468 * Writes the annotated content of this instance to the given writer.
472 public void writeAnnotationsTo(Writer out) throws IOException {
477 Writer left = twoc.getLeft();
478 Writer right = twoc.getRight();
  /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...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 94 struct rc_instruction * Writer;
108 struct rc_instruction * writer,
116 struct rc_instruction * writer,

Completed in 528 milliseconds

1 2 3 4 5 6 78 91011>>