HomeSort by relevance Sort by last modified time
    Searched refs:writeTo (Results 1 - 25 of 424) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tools/signature-tools/src/signature/io/html/
IEmitter.java 20 void writeTo(StringBuilder b);
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
BodyPart.java 36 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
38 public void writeTo(OutputStream out) throws IOException {
39 getHeader().writeTo(out);
40 getBody().writeTo(out);
Body.java 53 void writeTo(OutputStream out) throws IOException;
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/
EncodedValueAdaptor.java 41 public static void writeTo(IndentingWriter writer, EncodedValue encodedValue) throws IOException {
44 AnnotationEncodedValueAdaptor.writeTo(writer, (AnnotationEncodedValue)encodedValue);
47 ArrayEncodedValueAdaptor.writeTo(writer, (ArrayEncodedValue)encodedValue);
50 BooleanRenderer.writeTo(writer, ((BooleanEncodedValue)encodedValue).getValue());
53 ByteRenderer.writeTo(writer, ((ByteEncodedValue)encodedValue).getValue());
56 CharRenderer.writeTo(writer, ((CharEncodedValue)encodedValue).getValue());
59 DoubleRenderer.writeTo(writer, ((DoubleEncodedValue)encodedValue).getValue());
69 FloatRenderer.writeTo(writer, ((FloatEncodedValue)encodedValue).getValue());
72 IntegerRenderer.writeTo(writer, ((IntEncodedValue)encodedValue).getValue());
75 LongRenderer.writeTo(writer, ((LongEncodedValue)encodedValue).getValue())
    [all...]
  /external/apache-http/src/org/apache/http/entity/
ContentProducer.java 51 void writeTo(OutputStream outstream) throws IOException;
EntityTemplate.java 72 public void writeTo(final OutputStream outstream) throws IOException {
76 this.contentproducer.writeTo(outstream);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
BlankMethodItem.java 43 public boolean writeTo(IndentingWriter writer) {
CommentedOutMethodItem.java 47 public boolean writeTo(IndentingWriter writer) throws IOException {
49 commentedOutMethodItem.writeTo(writer);
AnnotationFormatter.java 41 public static void writeTo(IndentingWriter writer,
50 writeTo(writer, annotation);
54 public static void writeTo(IndentingWriter writer, Annotation annotation) throws IOException {
CatchMethodItem.java 82 public boolean writeTo(IndentingWriter writer) throws IOException {
90 tryStartLabel.writeTo(writer);
92 tryEndLabel.writeTo(writer);
94 handlerLabel.writeTo(writer);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
DeferredOutputStream.java 7 public abstract void writeTo(OutputStream output) throws IOException;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
StringConcatenate.h 59 void writeTo(LChar* destination)
64 void writeTo(UChar* destination) { *destination = m_buffer; }
82 void writeTo(LChar* destination)
87 void writeTo(UChar* destination) { *destination = m_buffer; }
105 void writeTo(LChar* destination)
111 void writeTo(UChar* destination) { *destination = m_buffer; }
130 void writeTo(LChar* destination)
136 void writeTo(UChar* destination)
162 void writeTo(LChar* destination)
167 void writeTo(UChar* destination
    [all...]
StringOperators.h 53 void writeTo(LChar* destination)
58 adapter1.writeTo(destination);
59 adapter2.writeTo(destination + adapter1.length());
62 void writeTo(UChar* destination)
66 adapter1.writeTo(destination);
67 adapter2.writeTo(destination + adapter1.length());
94 void writeTo(LChar* destination) { m_buffer.writeTo(destination); }
95 void writeTo(UChar* destination) { m_buffer.writeTo(destination);
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Item.java 79 public abstract void writeTo(DexFile file, AnnotatedOutput out);
  /dalvik/dx/src/com/android/dx/dex/file/
Item.java 79 public abstract void writeTo(DexFile file, AnnotatedOutput out);
  /external/apache-http/src/org/apache/http/
HttpEntity.java 77 * A repeatable entity's getContent() and writeTo(OutputStream) methods
154 void writeTo(OutputStream outstream) throws IOException;
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Item.java 79 public abstract void writeTo(DexFile file, AnnotatedOutput out);
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/
BeginEpilogueMethodItem.java 44 public boolean writeTo(IndentingWriter writer) throws IOException {
EndPrologueMethodItem.java 44 public boolean writeTo(IndentingWriter writer) throws IOException {
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/
BooleanRenderer.java 36 public static void writeTo(IndentingWriter writer, boolean val) throws IOException {
CharRenderer.java 37 public static void writeTo(IndentingWriter writer, char val) throws IOException {
DoubleRenderer.java 36 public static void writeTo(IndentingWriter writer, double val) throws IOException {
FloatRenderer.java 36 public static void writeTo(IndentingWriter writer, float val) throws IOException {
ShortRenderer.java 36 public static void writeTo(IndentingWriter writer, short val) throws IOException {
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
Body.java 25 public void writeTo(OutputStream out) throws IOException, MessagingException;

Completed in 346 milliseconds

1 2 3 4 5 6 7 8 91011>>