HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 101 - 125 of 4296) sorted by null

1 2 3 45 6 7 8 91011>>

  /art/tools/dexfuzz/src/dexfuzz/rawdex/
MethodAnnotation.java 32 public void write(DexRandomAccessFile file) throws IOException { method in class:MethodAnnotation
MethodIdItem.java 35 public void write(DexRandomAccessFile file) throws IOException { method in class:MethodIdItem
ParameterAnnotation.java 32 public void write(DexRandomAccessFile file) throws IOException { method in class:ParameterAnnotation
ProtoIdItem.java 35 public void write(DexRandomAccessFile file) throws IOException { method in class:ProtoIdItem
TryItem.java 34 public void write(DexRandomAccessFile file) throws IOException { method in class:TryItem
  /dalvik/dx/src/com/android/dx/io/instructions/
CodeOutput.java 26 public void write(short codeUnit); method in interface:CodeOutput
31 public void write(short u0, short u1); method in interface:CodeOutput
36 public void write(short u0, short u1, short u2); method in interface:CodeOutput
41 public void write(short u0, short u1, short u2, short u3); method in interface:CodeOutput
46 public void write(short u0, short u1, short u2, short u3, short u4); method in interface:CodeOutput
61 public void write(byte[] data); method in interface:CodeOutput
66 public void write(short[] data); method in interface:CodeOutput
71 public void write(int[] data); method in interface:CodeOutput
76 public void write(long[] data); method in interface:CodeOutput
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
IOExtensions.cs 59 writer.Write( value );
75 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
77 writer.Write( value );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
IOExtensions.cs 57 writer.Write( value );
73 public static void write<T>( this TextWriter writer, T value ) method in class:Antlr.Runtime.JavaExtensions.IOExtensions
75 writer.Write( value );
  /external/apache-harmony/support/src/test/java/tests/support/
Streams.java 41 out.write(buffer, 0, count);
54 out.write(buffer, 0, count);
  /external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java 54 void write(byte[] b, int off, int len) throws IOException; method in interface:SessionOutputBuffer
56 void write(byte[] b) throws IOException; method in interface:SessionOutputBuffer
58 void write(int b) throws IOException; method in interface:SessionOutputBuffer
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 33 * write(int val)
34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
54 public void write(int val) throws IOException; method in interface:WriterChain
56 public void write(char[] chars) throws IOException; method in interface:WriterChain
58 public void write(char[] chars, int start, int count) throws IOException; method in interface:WriterChain
60 public void write(String chars) throws IOException; method in interface:WriterChain
62 public void write(String chars, int start, int count) throws IOException method in interface:WriterChain
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSAbsentContent.java 34 public void write(OutputStream zOut) method in class:CMSAbsentContent
CMSProcessableByteArray.java 40 public void write(OutputStream zOut) method in class:CMSProcessableByteArray
43 zOut.write(bytes);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
SimpleOutputStream.java 16 public void write(int b) throws IOException method in class:SimpleOutputStream
19 write(buf, 0, 1); method
  /external/curl/lib/
warnless.h 80 # undef write macro
81 # define write(fd, buf, count) curlx_write(fd, buf, count) macro
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
ClassWriter.java 89 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:ClassWriter
102 superclass.get().write(appendable, context);
110 fieldWriter.write(new IndentingAppendable(appendable), context).append("\n");
115 constructorWriter.write(new IndentingAppendable(appendable), context);
120 methodWriter.write(new IndentingAppendable(appendable), context);
124 nestedTypeWriter.write(new IndentingAppendable(appendable), context);
NullName.java 31 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:NullName
VoidName.java 36 public Appendable write(Appendable appendable, Context context) throws IOException { method in class:VoidName
Writable.java 27 Appendable write(Appendable appendable, Context context) throws IOException; method in interface:Writable
  /external/desugar/java/com/google/devtools/build/android/desugar/
OutputFileProvider.java 18 /** Output file provider allows to write files in directory or jar files. */
27 /** Write {@code content} in {@code filename} to this output */
28 void write(String filename, byte[] content) throws IOException; method in interface:OutputFileProvider
  /external/fmtlib/fmt/
ostream.cc 15 FMT_FUNC void write(std::ostream &os, Writer &w) { function in namespace:fmt::internal
23 os.write(data, static_cast<std::streamsize>(n));
32 w.write(format_str, args);
33 internal::write(os, w);
  /external/libese/apps/weaver/card/src/com/android/weaver/
Slots.java 24 * Write the key and value to the identified slot.
26 * @param slotId ID of the slot to write to.
32 void write(short slotId, byte[] key, short keyOffset, byte[] value, short valueOffset); method in interface:Slots
39 * @param slotId ID of the slot to write to.
43 * @param valueOffset Offset into the buffer to write the value.
  /external/libxml2/win32/wince/
wincecompat.c 27 int write(int handle, const char *buffer, unsigned int len) function
  /external/python/cpython2/Lib/plat-irix5/
cddb.py 14 # You can then use c.write() to write out the changed values to the
176 def write(self): member in class:Cddb
187 f.write('album.title:\t' + self.title + '\n')
188 f.write('album.artist:\t' + self.artist + '\n')
189 f.write('album.toc:\t' + self.toc + '\n')
191 f.write('album.notes:\t' + note + '\n')
195 f.write('track%r.artist:\t%s\n' % (i, self.trackartist[i]))
206 f.write('track%r.title:\t%s\n' % (i, track))
  /external/python/cpython2/Lib/plat-irix6/
cddb.py 14 # You can then use c.write() to write out the changed values to the
176 def write(self): member in class:Cddb
187 f.write('album.title:\t' + self.title + '\n')
188 f.write('album.artist:\t' + self.artist + '\n')
189 f.write('album.toc:\t' + self.toc + '\n')
191 f.write('album.notes:\t' + note + '\n')
195 f.write('track%r.artist:\t%s\n' % (i, self.trackartist[i]))
206 f.write('track%r.title:\t%s\n' % (i, track))

Completed in 2816 milliseconds

1 2 3 45 6 7 8 91011>>