HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 226 - 250 of 2864) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/io/
PushbackReader.java 98 * @param off Offset at which to start writing characters
106 public int read(char cbuf[], int off, int len) throws IOException {
113 } else if ((off < 0) || (off > cbuf.length)) {
122 System.arraycopy(buf, pos, cbuf, off, avail);
124 off += avail;
128 len = super.read(cbuf, off, len);
163 * character to be read will have the value <code>cbuf[off]</code>, the
164 * character after that will have the value <code>cbuf[off+1]</code>, and
168 * @param off Offset of first character to push bac
    [all...]
ObjectOutputStream.java 709 * @param off the start offset in the data
713 public void write(byte[] buf, int off, int len) throws IOException {
717 int endoff = off + len;
718 if (off < 0 || len < 0 || endoff > buf.length || endoff < 0) {
721 bout.write(buf, off, len, false);
    [all...]
ObjectInputStream.java 2098 int off = getFieldOffset(name, Boolean.TYPE); local
2103 int off = getFieldOffset(name, Byte.TYPE); local
2108 int off = getFieldOffset(name, Character.TYPE); local
2113 int off = getFieldOffset(name, Short.TYPE); local
2118 int off = getFieldOffset(name, Integer.TYPE); local
2123 int off = getFieldOffset(name, Float.TYPE); local
2128 int off = getFieldOffset(name, Long.TYPE); local
2133 int off = getFieldOffset(name, Double.TYPE); local
2138 int off = getFieldOffset(name, Object.class); local
    [all...]
  /libcore/ojluni/src/main/java/java/net/
SocketInputStream.java 86 * @param off the start offset of the data
94 byte b[], int off, int len,
110 * Reads into a byte array <i>b</i> at offset <i>off</i>,
113 * @param off the start offset of the data
119 public int read(byte b[], int off, int length) throws IOException {
120 return read(b, off, length, impl.getTimeout());
123 int read(byte b[], int off, int length, int timeout) throws IOException {
137 if (length <= 0 || off < 0 || off + length > b.length) {
151 n = socketRead0(fd, b, off, length, timeout)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/exif/
ByteBufferInputStream.java 39 public int read(byte[] bytes, int off, int len) {
45 mBuf.get(bytes, off, len);
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
ByteBufferInputStream.java 39 public int read(byte[] bytes, int off, int len) {
45 mBuf.get(bytes, off, len);
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/exif/
ByteBufferInputStream.java 39 public int read(byte[] bytes, int off, int len) {
45 mBuf.get(bytes, off, len);
  /packages/apps/Messaging/src/com/android/messaging/util/exif/
ByteBufferInputStream.java 39 public int read(byte[] bytes, int off, int len) {
45 mBuf.get(bytes, off, len);
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
idle.bat 1 @echo off
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
idle.bat 1 @echo off
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
idle.bat 1 @echo off
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
idle.bat 1 @echo off
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
sym-1.s 1 # Test beginning and starting with ":"; it should be stripped off, but
2 # only one. A trailing ":" is stripped off at a label only.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
warn_noat.s 1 .set noat, 2 # This should not cause warning for at to be turned off
3 .set noat # this should turn the warnings off
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/pe/
section-exclude.d 9 Idx Name *Size *VMA *LMA *File off *Algn
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-d10v/
default_layout.d 8 Idx Name Size VMA LMA File off Algn
  /bionic/libc/kernel/uapi/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /development/ndk/platforms/android-21/include/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
NullOutputStream.java 18 public void write(byte[] buf, int off, int len)
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameEntryConverter.java 57 * @param off the index at which the encoding starts
62 int off)
66 byte[] data = new byte[(str.length() - off) / 2];
69 char left = str.charAt((index * 2) + off);
70 char right = str.charAt((index * 2) + off + 1);
  /external/compiler-rt/test/tsan/
bench_shadow_flush.cc 38 for (uptr off = 0; off < mem_size; off += stride) {
40 mem[off + off2 * kStride] = 42;
unaligned_norace.cc 47 for (int off = 0; off < 8; off++) {
51 char *p = (char*)obj + off;
53 // printf("thr=%d off=%d sz1=%d sz2=%d rw=%d p=%p\n",
54 // main, off, sz1, sz2, rw, p);
58 // printf("thr=%d off=%d sz1=%d sz2=%d rw=%d p=%p\n",
59 // main, off, sz1, sz2, rw, p);
  /external/guava/guava/src/com/google/common/io/
ByteProcessor.java 37 * from {@code buf[off]} through {@code buf[off + len - 1]}
41 * @param off the initial offset into the array
45 boolean processBytes(byte[] buf, int off, int len) throws IOException;
LineBuffer.java 45 * @param off the offset into the buffer
50 protected void add(char[] cbuf, int off, int len) throws IOException {
51 int pos = off;
60 for (int end = off + len; pos < end; pos++) {
83 line.append(cbuf, start, off + len - start);
  /external/guava/guava-tests/test/com/google/common/io/
TestCharSink.java 64 public void write(char[] cbuf, int off, int len) throws IOException {
65 super.write(cbuf, off, len);
70 public void write(String str, int off, int len) throws IOException {
71 super.write(str, off, len);

Completed in 608 milliseconds

1 2 3 4 5 6 7 8 91011>>