HomeSort by relevance Sort by last modified time
    Searched refs:Writer (Results 126 - 150 of 370) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/marisa-trie/lib/marisa/
tail.h 33 void write(Writer &writer) const;
bitvector.h 39 void write(Writer &writer) const;
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
tail.h 33 void write(Writer &writer) const;
bitvector.h 39 void write(Writer &writer) const;
  /frameworks/base/graphics/java/android/renderscript/
RSSurfaceView.java 19 import java.io.Writer;
  /libcore/luni/src/main/java/java/io/
PipedWriter.java 24 * data back and forth, one creates a piped writer and the other creates a piped
29 public class PipedWriter extends Writer {
35 * Constructs a new unconnected {@code PipedWriter}. The resulting writer
46 * Any data written to this writer can be read from {@code destination}.
59 * Closes this writer. If a {@link PipedReader} is connected to this writer,
64 * if an error occurs while closing this writer.
78 * written to this writer becomes readable in the reader.
83 * if this writer is closed or already connected, or if {@code
102 * method does nothing if this Writer is not connected
    [all...]
StringWriter.java 23 * A specialized {@link Writer} that writes characters to a {@code StringBuffer}
30 public class StringWriter extends Writer {
38 * writer.
49 * writer.
63 * Calling this method has no effect. In contrast to most {@code Writer} subclasses,
68 * if an error occurs while closing this writer.
84 * Gets a reference to this writer's internal {@link StringBuffer}. Any
85 * changes made to the returned buffer are reflected in this writer.
87 * @return a reference to this writer's internal {@code StringBuffer}.
94 * Gets a copy of the contents of this writer as a string
    [all...]
  /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/chromium_org/third_party/WebKit/Source/core/scripts/
make_css_property_names.py 170 class CSSPropertiesWriter(in_generator.Writer):
178 in_generator.Writer.__init__(self, file_paths, enabled_conditions)
make_style_shorthands.py 38 class StylePropertyShorthandWriter(in_generator.Writer):
  /external/doclava/src/com/google/doclava/
Proofread.java 22 import java.io.Writer;
27 static Writer out = null;
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyServer.java 26 import java.io.Writer;
125 Writer writer = new OutputStreamWriter(out, "UTF-8"); local
127 writer.write("<a href='" + file + "'>" + file + "</a><br>");
129 writer.close();
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
Utf8Utils.java 28 import java.io.Writer;
181 public static void writeEscapedChar(Writer writer, char c) throws IOException {
184 writer.write('\\');
186 writer.write(c);
190 case '\n': writer.write("\\n"); return;
191 case '\r': writer.write("\\r"); return;
192 case '\t': writer.write("\\t"); return;
196 writer.write("\\u");
197 writer.write(Character.forDigit(c >> 12, 16))
    [all...]
ByteArrayAnnotatedOutput.java 28 import java.io.Writer;
502 * Writes the annotated content of this instance to the given writer.
506 public void writeAnnotationsTo(Writer out) throws IOException {
516 Writer left = twoc.getLeft();
517 Writer right = twoc.getRight();
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/
MediaTestUtil.java 25 import java.io.Writer;
42 private Writer mOutput = null;
  /libcore/luni/src/main/java/java/util/logging/
StreamHandler.java 23 import java.io.Writer;
53 // the writer that writes to the output stream
54 private Writer writer; field in class:StreamHandler
56 // the flag indicating whether the writer has been initialized
66 this.writer = null;
92 this.writer = null;
119 // initialize the writer
123 this.writer = new OutputStreamWriter(this.os);
126 this.writer = new OutputStreamWriter(this.os, getEncoding())
    [all...]
  /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/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_dataflow.h 94 struct rc_instruction * Writer;
108 struct rc_instruction * writer,
116 struct rc_instruction * writer,
  /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,
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXScanner.java 121 Writer w = new BufferedWriter(new OutputStreamWriter(System.out, "UTF-8"));
  /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);

Completed in 5872 milliseconds

1 2 3 4 56 7 8 91011>>