HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 151 - 175 of 1982) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/dx/src/com/android/dx/util/
IndentingWriter.java 139 public void write(char[] cbuf, int off, int len) throws IOException {
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException {
154 write(str.charAt(off));
155 off++;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64.java 21 int off,
24 byte[] encoded = encode(data, off, length);
46 int off,
54 encoder.encode(data, off, length, bOut);
84 int off,
89 return encoder.encode(data, off, length, out);
Hex.java 21 int off,
24 byte[] encoded = encode(data, off, length);
46 int off,
53 encoder.encode(data, off, length, bOut);
83 int off,
88 return encoder.encode(data, off, length, out);
  /external/dexmaker/src/dx/java/com/android/dx/util/
IndentingWriter.java 139 public void write(char[] cbuf, int off, int len) throws IOException {
142 write(cbuf[off]);
143 off++;
151 public void write(String str, int off, int len) throws IOException {
154 write(str.charAt(off));
155 off++;
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 56 bool indir, uint64_t off, DebugLoc dl,
58 Offset(off), DL(dl), Order(O),
66 SDDbgValue(MDNode *mdP, const Value *C, uint64_t off, DebugLoc dl,
68 mdPtr(mdP), IsIndirect(false), Offset(off), DL(dl), Order(O),
75 SDDbgValue(MDNode *mdP, unsigned FI, uint64_t off, DebugLoc dl, unsigned O) :
76 mdPtr(mdP), IsIndirect(false), Offset(off), DL(dl), Order(O),
  /external/smali/util/src/main/java/org/jf/util/
WrappedIndentingWriter.java 154 public void write(char[] cbuf, int off, int len) throws IOException {
157 write(cbuf[off]);
158 off++;
166 public void write(String str, int off, int len) throws IOException {
169 write(str.charAt(off));
170 off++;
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/jdwp/
SocketTransportWrapper.java 225 int off = 0; local
227 while (off < Packet.HEADER_SIZE) {
229 int bytesRead = input.read(header, off, Packet.HEADER_SIZE - off);
233 off += bytesRead;
240 if (off == 0) {
243 if (off < Packet.HEADER_SIZE) {
258 while (off < len) {
259 int bytesRead = input.read(bytes, off, len - off);
296 int off = 0; local
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 82 public int read(final byte[] b, int off, int len) throws IOException {
86 return this.in.read(b, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
DigestOutputStream.java 27 int off,
31 digest.update(b, off, len);
MacOutputStream.java 27 int off,
31 mac.update(b, off, len);
  /external/clang/test/Sema/
pragma-ms_struct.c 5 #pragma ms_struct off
9 #pragma ms_struct // expected-warning {{incorrect use of '#pragma ms_struct on|off' - ignored}}
58 #pragma ms_struct off
  /external/guava/guava/src/com/google/common/io/
CountingOutputStream.java 50 @Override public void write(byte[] b, int off, int len) throws IOException {
51 out.write(b, off, len);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
CountOutputStream.java 43 public void write(byte[] buf, int off, int len) throws IOException
45 out.write(buf, off, len);
  /frameworks/base/core/java/android/text/
AlteredCharSequence.java 89 public char charAt(int off) {
90 if (off >= mStart && off < mEnd)
91 return mChars[off - mStart];
93 return mSource.charAt(off);
105 public void getChars(int start, int end, char[] dest, int off) {
106 TextUtils.getChars(mSource, start, end, dest, off);
112 System.arraycopy(mChars, start - mStart, dest, off, end - start);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
ByteBufferInputStream.java 39 public int read(byte[] bytes, int off, int len) {
45 mBuf.get(bytes, off, len);
  /libcore/luni/src/main/native/
ZipUtilities.h 33 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate);
34 void setInput(JNIEnv* env, jbyteArray buf, jint off, jint len);
  /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/Mms/src/com/android/mms/exif/
ByteBufferInputStream.java 39 public int read(byte[] bytes, int off, int len) {
45 mBuf.get(bytes, off, len);
  /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
  /bionic/libc/kernel/uapi/linux/tc_ematch/
tc_em_cmp.h 27 __u16 off; member in struct:tcf_em_cmp
  /development/ndk/platforms/android-L/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)

Completed in 744 milliseconds

1 2 3 4 5 67 8 91011>>