HomeSort by relevance Sort by last modified time
    Searched defs:write (Results 376 - 400 of 1945) sorted by null

<<11121314151617181920>>

  /external/jsilver/src/com/google/clearsilver/jsilver/data/
AbstractData.java 124 write(out, indent); method
  /external/marisa-trie/lib/marisa/
trie.cc 90 write(writer);
95 write(writer);
98 void Trie::write(int fd) const { function in class:marisa::Trie
100 write(writer);
103 void Trie::write(std::ostream &stream) const { function in class:marisa::Trie
105 write(writer);
108 void Trie::write(Writer &writer) const { function in class:marisa::Trie
109 louds_.write(writer);
110 labels_.write(writer);
111 terminal_flags_.write(writer)
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
trie.cc 90 write(writer);
95 write(writer);
98 void Trie::write(int fd) const { function in class:marisa_alpha::Trie
100 write(writer);
103 void Trie::write(std::ostream &stream) const { function in class:marisa_alpha::Trie
105 write(writer);
108 void Trie::write(Writer &writer) const { function in class:marisa_alpha::Trie
109 louds_.write(writer);
110 labels_.write(writer);
111 terminal_flags_.write(writer)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/model/
ScalingList.java 24 import com.googlecode.mp4parser.h264.write.CAVLCWriter;
40 public void write(CAVLCWriter out) throws IOException { method in class:ScalingList
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
CAVLCWriter.java 21 package com.googlecode.mp4parser.h264.write;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/res/
RawResourceLoaderTest.java 50 writer.write(buffer, 0, n);
  /external/skia/src/svg/
SkSVGElements.cpp 84 void SkSVGElement::write(SkSVGParser& , SkString& ) { function in class:SkSVGElement
SkSVGGradient.cpp 50 SkASSERT(0); // !!! need to write this case
79 void SkSVGGradient::write(SkSVGParser& parser, SkString& baseColor) { function in class:SkSVGGradient
86 f_id.set("mask"); // write out gradient named given name + color (less initial #)
  /external/smack/src/com/kenai/jbosh/
StaticBody.java 93 byteOut.write(buffer, 0, read);
  /frameworks/base/core/java/com/android/internal/util/
BitwiseOutputStream.java 20 * An object that provides bitwise incremental write access to a byte array.
84 * Write some data and increment the current position.
89 * @param bits the amount of data to write (gte 0, lte 8)
90 * @param data to write, will be masked to expose only bits param from lsb
92 public void write(int bits, int data) throws AccessException { method in class:BitwiseOutputStream
94 throw new AccessException("illegal write (" + bits + " bits)");
107 * Write data in bulk from a byte array and increment the current position.
109 * @param bits the amount of data to write
116 write(increment, (byte)(arr[i] >>> (8 - increment))); method
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
InputStreamSource.java 73 byteStream.write(buffer, 0, bytesRead);
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/
UsbAccessoryStreamTransport.java 68 mOutputStream.write(buffer, offset, count);
  /frameworks/native/libs/gui/
SensorEventQueue.cpp 57 ssize_t SensorEventQueue::write(const sp<BitTube>& tube, function in class:android::SensorEventQueue
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
AsciiHprofWriter.java 40 public static void write(HprofData data, OutputStream outputStream) throws IOException { method in class:AsciiHprofWriter
41 new AsciiHprofWriter(data, outputStream).write();
49 private void write() throws IOException { method in class:AsciiHprofWriter
  /libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
MockDatagramChannel.java 65 public int write(ByteBuffer arg0) throws IOException { method in class:MockDatagramChannel
69 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { method in class:MockDatagramChannel
MockSocketChannel.java 61 public int write(ByteBuffer arg0) throws IOException { method in class:MockSocketChannel
65 public long write(ByteBuffer[] arg0, int arg1, int arg2) throws IOException { method in class:MockSocketChannel
  /libcore/luni/src/main/java/java/io/
PipedWriter.java 127 * Separate threads should be used to write to a {@code PipedWriter} and to
132 * the buffer to write.
134 * the index of the first character in {@code buffer} to write.
136 * the number of characters from {@code buffer} to write to this
143 * waiting for space to write data. This case is not currently
154 public void write(char[] buffer, int offset, int count) throws IOException { method in class:PipedWriter
166 * Separate threads should be used to write to a {@code PipedWriter} and to
171 * the character to write.
174 * waiting for space to write data. This case is not currently
183 public void write(int c) throws IOException method in class:PipedWriter
    [all...]
StringWriter.java 108 * the non-null character array to write.
110 * the index of the first character in {@code chars} to write.
112 * the maximum number of characters to write.
118 public void write(char[] chars, int offset, int count) { method in class:StringWriter
131 * the character to write to this writer's {@code StringBuffer}.
134 public void write(int oneChar) { method in class:StringWriter
143 * the non-null string containing the characters to write.
146 public void write(String str) { method in class:StringWriter
155 * the non-null string containing the characters to write.
157 * the index of the first character in {@code str} to write
165 public void write(String str, int offset, int count) { method in class:StringWriter
230 write(output, 0, output.length()); method
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
OldAndroidPrintWriterTest.java 31 a.write(str, 0, 26);
32 a.write('X');
36 a.write("alphabravodelta", 5, 5);
OldByteArrayOutputStreamTest.java 53 bos.write(fileString.getBytes(), 0, fileString.length());
71 bos.write(target, -1, 1);
77 bos.write(target, 0, -1);
83 bos.write(target, 1, target.length);
89 bos.write(null, 1, 1);
99 bos.write(fileString.getBytes(), 0, 10);
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPInputStreamTest.java 68 out.write(buffer, 0, count);
  /libcore/support/src/test/java/tests/support/
Support_ASimpleWriter.java 55 public void write(char[] src, int offset, int count) throws IOException { method in class:Support_ASimpleWriter
Support_StringWriter.java 103 * the non-null array containing characters to write.
107 * maximum number of characters to write
113 public void write(char[] buf, int offset, int count) { method in class:Support_StringWriter
131 * The character to write
135 public void write(int oneChar) { method in class:Support_StringWriter
146 * the non-null String containing the characters to write.
150 public void write(String str) { method in class:Support_StringWriter
162 * the non-null String containing the characters to write.
166 * the number of characters to retrieve and write.
172 public void write(String str, int offset, int count) method in class:Support_StringWriter
    [all...]
  /packages/apps/Browser/src/com/android/browser/homepages/
Template.java 52 void write(OutputStream stream, EntityData params) throws IOException; method in interface:Template.Entity
74 public void write(OutputStream stream, EntityData params) throws IOException { method in class:Template.StringEntity
75 stream.write(mValue);
89 public void write(OutputStream stream, EntityData params) throws IOException { method in class:Template.SimpleEntity
106 public void write(OutputStream stream, EntityData params) throws IOException { method in class:Template.ListEntity
110 mSubTemplate.write(stream, iter);
160 stream.write((byte[]) mData.get(key));
226 public void write(OutputStream stream) throws IOException { method in class:Template
227 write(stream, new HashMapEntityData(mData)); method
230 public void write(OutputStream stream, EntityData data) throws IOException { method in class:Template
    [all...]
  /packages/apps/Gallery2/jni_jpegstream/src/
jpeg_writer.cpp 116 int32_t JpegWriter::write(int8_t* bytes, int32_t length) { function in class:JpegWriter

Completed in 294 milliseconds

<<11121314151617181920>>