/dalvik/dx/src/com/android/dx/util/ |
Output.java | 47 * @param value the value to write; all but the low 8 bits are ignored 54 * @param value the value to write; all but the low 16 bits are ignored 61 * @param value the value to write 68 * @param value the value to write 77 * @param value value to write, treated as an unsigned value 87 * @param value value to write 95 * @param bytes {@code non-null;} the array to write 97 public void write(ByteArray bytes); method in interface:Output 102 * @param bytes {@code non-null;} the array to write 104 * byte to write 107 public void write(byte[] bytes, int offset, int length); method in interface:Output 115 public void write(byte[] bytes); method in interface:Output [all...] |
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/ |
Output.java | 23 * An {@link Output} objects is an helper to write to a character stream {@link Writer}. 26 * to help them write to the underlying stream. 37 * @param writer The writer to write to. Could be a file, a string, etc. 51 public void write(String format, Object... args) { method in class:Output 53 mWriter.write(String.format(format, args)); 62 * @param c The character to write. 64 public void write(char c) { method in class:Output 65 write(Character.toString(c)); 71 * @param sb The {@link StringBuilder#toString()} method is used to ge the string to write. 73 public void write(StringBuilder sb) method in class:Output [all...] |
/external/arduino/hardware/arduino/cores/arduino/ |
Print.cpp | 16 License along with this library; if not, write to the Free Software 33 void Print::write(const char *str) function in class:Print 36 write(*str++); 40 void Print::write(const uint8_t *buffer, size_t size) function in class:Print 43 write(*buffer++); 49 write(s[i]); 55 write(str); 81 write(n); 95 if (base == 0) write(n);
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/ |
DigestOutputStream.java | 19 public void write(int b) method in class:DigestOutputStream 25 public void write( method in class:DigestOutputStream
|
MacOutputStream.java | 19 public void write(int b) method in class:MacOutputStream 25 public void write( method in class:MacOutputStream
|
/external/chromium_org/build/android/ |
symbolize.py | 34 def write(self, data): member in class:Symbolizer 38 self._output.write(data) 62 self._output.write(data[:post]) 69 self._output.write(data[:pre]) 70 self._output.write(frame) 71 self._output.write(' ') 72 self._output.write(sym) 83 symbolizer.write(line)
|
/external/chromium_org/content/child/fileapi/ |
webfilewriter_base.cc | 33 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 response, then know that the nex [all...] |
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
FileWriterSync.cpp | 43 void FileWriterSync::write(Blob* data, ExceptionState& exceptionState) function in class:WebCore::FileWriterSync 53 writer()->write(position(), data->uuid());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
webkit-patch | 47 # to write(), so when passed a raw string already encoded as utf8, 53 def write(self, object): member in class:ForgivingUTF8Writer 58 # write non-Unicode/UTF-8 data (which we shouldn't). 60 return codecs.StreamWriter.write(self, object)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/ |
outputtee.py | 41 def write(self, bytes): member in class:Tee 43 file.write(bytes)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/ |
server_process_mock.py | 43 def write(self, bytes): member in class:MockServerProcess
|
/external/chromium_org/third_party/icu/source/tools/makeconv/ |
makeconv.h | 55 (*write)(NewConverter *cnvData, const UConverterStaticData *staticData, member in struct:NewConverter
|
/external/chromium_org/third_party/tlslite/tlslite/ |
FileObject.py | 60 def write(self, data): member in class:FileObject
|
/external/chromium_org/tools/valgrind/asan/ |
asan_symbolize.py | 25 def write(self, data): member in class:Unbuffered 26 self.stream.write(data) 38 # sys.stdout.write = lambda...
|
/external/dexmaker/src/dx/java/com/android/dx/dex/code/form/ |
Form10x.java | 70 write(out, opcodeUnit(insn, 0)); method
|
Form30t.java | 80 write(out, opcodeUnit(insn, 0), offset); method
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
ShortArrayCodeOutput.java | 24 /** 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(short u0, short u1, short u2, short u3) method in class:ShortArrayCodeOutput 84 public void write(short u0, short u1, short u2, short u3, short u4) { method in class:ShortArrayCodeOutput 94 write((short) value); method 95 write((short) (value >> 16)); method 100 write((short) value); method 101 write((short) (value >> 16)); method 102 write((short) (value >> 32)); method 103 write((short) (value >> 48)); method 107 public void write(byte[] data) { method in class:ShortArrayCodeOutput 116 write((short) value); method 122 write((short) value); method 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/ |
IndentingWriter.java | 91 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));
|
Output.java | 45 * @param value the value to write; all but the low 8 bits are ignored 52 * @param value the value to write; all but the low 16 bits are ignored 59 * @param value the value to write 66 * @param value the value to write 75 * @param value value to write, treated as an unsigned value 85 * @param value value to write 93 * @param bytes {@code non-null;} the array to write 95 public void write(ByteArray bytes); method in interface:Output 100 * @param bytes {@code non-null;} the array to write 102 * byte to write 105 public void write(byte[] bytes, int offset, int length); method in interface:Output 113 public void write(byte[] bytes); method in interface:Output [all...] |
/external/flac/include/FLAC/ |
callback.h | 75 * or write a wrapper. The same is true for feof() since this is usually 103 /** Signature for the write callback. 107 * \param ptr The address of the write buffer. 171 FLAC__IOCallback_Write write; member in struct:__anon18273
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/channel/ |
ChannelOutputStream.java | 28 public void write(int b) throws IOException method in class:ChannelOutputStream 34 write(buff, 0, 1); method 57 public void write(byte[] b, int off, int len) throws IOException method in class:ChannelOutputStream 75 public void write(byte[] b) throws IOException method in class:ChannelOutputStream 77 write(b, 0, b.length); method
|
/external/guava/guava/src/com/google/common/io/ |
AppendableWriter.java | 50 @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/ |
CountingOutputStreamTest.java | 35 counter.write(0); 41 counter.write(data); 46 counter.write(data, 0, 5); 51 counter.write(data, 2, 5); 58 counter.write(data, 0, data.length + 1);
|
/external/icu4c/tools/makeconv/ |
makeconv.h | 55 (*write)(NewConverter *cnvData, const UConverterStaticData *staticData, member in struct:NewConverter
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
AnnotationMemberValue.java | 84 public void write(AnnotationsWriter writer) throws IOException { method in class:AnnotationMemberValue 86 value.write(writer);
|