Searched defs:write (Results 76 - 100 of 586) sorted by relevance

1234567891011>>

/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaDigestCalculatorProviderBuilder.java91 public void write(byte[] bytes, int off, int len) method in class:JcaDigestCalculatorProviderBuilder.DigestOutputStream
97 public void write(byte[] bytes) method in class:JcaDigestCalculatorProviderBuilder.DigestOutputStream
103 public void write(int b) method in class:JcaDigestCalculatorProviderBuilder.DigestOutputStream
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DBEROctetStringGenerator.java54 public void write( method in class:BEROctetStringGenerator.BufferedBEROctetStream
67 public void write(byte[] b, int off, int len) throws IOException method in class:BEROctetStringGenerator.BufferedBEROctetStream
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dnav_braille.js119 cvox.NavBraille.prototype.write = function() {
120 cvox.ChromeVox.braille.write(this);
/external/chromium_org/chrome/test/ext_auto/auto_provider/
H A Dserver.js7 // Stream encapsulates read/write operations over socket.
30 write: function(output) {
35 socket.write(this.socketId_, outputBuffer, function(writeInfo) {
49 socket.write(this.socketId_, outputBuffer, function(writeInfo) {
/external/chromium_org/components/cronet/android/java/src/org/chromium/net/
H A DChunkedWritableByteChannel.java15 * {@link #write} results in a ByteBuffer being created and remembered. Then all
40 public int write(ByteBuffer buffer) throws IOException { method in class:ChunkedWritableByteChannel
/external/chromium_org/content/child/fileapi/
H A Dwebfilewriter_base.cc33 void WebFileWriterBase::write( function in class:content::WebFileWriterBase
42 // When we cancel a write/truncate, we always get back the result of the write
45 // success [of the write/truncate, in a DidWrite(XXX, true)/DidSucceed() call]
47 // failure [of the write, either from cancel or other reasons] followed by
49 // In the write case, there could also be queued up non-terminal DidWrite calls
50 // before any of that comes back, but there will always be a terminal write
52 // we can ignore non-terminal write responses, take the terminal write success
53 // or the first failure as the last write respons
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterSync.cpp43 void FileWriterSync::write(Blob* data, ExceptionState& exceptionState) function in class:blink::FileWriterSync
53 writer()->write(position(), data->uuid());
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dmetered_stream.py90 self.write(txt, now)
94 def write(self, txt, now=None, pid=None): member in class:MeteredStream
108 self._stream.write(msg)
111 self.write(self._ensure_newline(txt), now, pid)
115 self._stream.write(self._erasure(self._last_partial_line))
120 self._stream.write('\n')
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
H A Dreflectionhandler_unittest.py59 def write(self, data): member in class:WriteConvertingLogger
/external/chromium_org/third_party/mesa/src/src/gallium/winsys/i915/sw/
H A Di915_sw_buffer.c61 boolean write)
59 i915_sw_buffer_map(struct i915_winsys *iws, struct i915_winsys_buffer *buffer, boolean write) argument
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Drsakey.py195 """Return True if the write() method accepts a password for use
202 def write(self, password=None): member in class:RSAKey
/external/chromium_org/tools/gyp/
H A Dgyptest.py63 sys.stdout.write(s)
105 stdout.write(p.stdout.read())
107 stderr.write(p.stderr.read())
123 def write(self, arg): member in class:Unbuffered
124 self.fp.write(arg)
183 sys.stderr.write('Specify -a to get all tests.\n')
208 sys.stdout.write('PYTHONPATH=%s\n' % os.environ['PYTHONPATH'])
233 sys.stdout.write('TESTGYP_FORMAT=%s\n' % format)
239 sys.stdout.write('Extra Gyp options: %s\n' % gyp_options)
256 sys.stdout.write("\
[all...]
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DCodeOutput.java26 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
H A DShortArrayCodeOutput.java24 /** array to write to */
57 public void write(short codeUnit) { method in class:ShortArrayCodeOutput
63 public void write(short u0, short u1) { method in class:ShortArrayCodeOutput
64 write(u0);
65 write(u1);
69 public void write(short u0, short u1, short u2) { method in class:ShortArrayCodeOutput
70 write(u0);
71 write(u1);
72 write(u2);
76 public void write(shor method in class:ShortArrayCodeOutput
84 public void write(short u0, short u1, short u2, short u3, short u4) { method in class:ShortArrayCodeOutput
107 public void write(byte[] data) { method in class:ShortArrayCodeOutput
127 public void write(short[] data) { method in class:ShortArrayCodeOutput
134 public void write(int[] data) { method in class:ShortArrayCodeOutput
141 public void write(long[] data) { method in class:ShortArrayCodeOutput
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIndentingWriter.java91 public void write(int c) throws IOException { method in class:IndentingWriter
106 out.write('\n');
116 out.write(prefix);
121 out.write(' ');
127 out.write(c);
139 public void write(char[] cbuf, int off, int len) throws IOException { method in class:IndentingWriter
142 write(cbuf[off]);
151 public void write(String str, int off, int len) throws IOException { method in class:IndentingWriter
154 write(str.charAt(off));
/external/guava/guava/src/com/google/common/io/
H A DAppendableWriter.java50 @Override public void write(char cbuf[], int off, int len) method in class:AppendableWriter
77 @Override public void write(int c) throws IOException { method in class:AppendableWriter
82 @Override public void write(String str) throws IOException { method in class:AppendableWriter
87 @Override public void write(String str, int off, int len) throws IOException { method in class:AppendableWriter
114 throw new IOException("Cannot write to a closed writer.");
/external/guava/guava-tests/test/com/google/common/io/
H A DFileBackedOutputStreamTest.java49 write(out, data, 0, 100, true);
88 write(out, data, 0, chunk1, singleByte);
97 write(out, data, chunk1, chunk2, singleByte);
114 private static void write( method in class:FileBackedOutputStreamTest
119 out.write(b[i]);
122 out.write(b, off, len);
134 out.write(data);
139 out.write(42);
145 // Verify that write had no effect
155 out.write(dat
[all...]
/external/javassist/src/main/javassist/bytecode/annotation/
H A DAnnotationMemberValue.java84 public void write(AnnotationsWriter writer) throws IOException { method in class:AnnotationMemberValue
86 value.write(writer);
H A DArrayMemberValue.java131 public void write(AnnotationsWriter writer) throws IOException { method in class:ArrayMemberValue
135 values[i].write(writer);
H A DBooleanMemberValue.java92 public void write(AnnotationsWriter writer) throws IOException { method in class:BooleanMemberValue
H A DByteMemberValue.java92 public void write(AnnotationsWriter writer) throws IOException { method in class:ByteMemberValue
H A DCharMemberValue.java93 public void write(AnnotationsWriter writer) throws IOException { method in class:CharMemberValue
H A DClassMemberValue.java122 public void write(AnnotationsWriter writer) throws IOException { method in class:ClassMemberValue
H A DDoubleMemberValue.java94 public void write(AnnotationsWriter writer) throws IOException { method in class:DoubleMemberValue
H A DFloatMemberValue.java94 public void write(AnnotationsWriter writer) throws IOException { method in class:FloatMemberValue

Completed in 1082 milliseconds

1234567891011>>