Searched defs:off (Results 1 - 25 of 61) sorted by relevance

123

/frameworks/base/core/java/com/android/server/
H A DResettableTimeout.java43 public abstract void off(); method in class:ResettableTimeout
49 * <p>3. At the timeout, calls off()<p>
81 * Cancel the timeout and call off now.
93 off();
109 off();
125 // turn it off at this time.
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DByteBufferInputStream.java39 public int read(byte[] bytes, int off, int len) { argument
45 mBuf.get(bytes, off, len);
H A DCountedDataInputStream.java51 public int read(byte[] b, int off, int len) throws IOException { argument
52 int r = in.read(b, off, len);
82 public void readOrThrow(byte[] b, int off, int len) throws IOException { argument
83 int r = read(b, off, len);
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java98 public void write(byte[] b, int off, int len) throws IOException { argument
101 internalWrite(b, off, len, false);
136 private void internalWrite(byte[] b, int off, int len, boolean finish) throws IOException { argument
138 if (!coder.process(b, off, len, finish)) {
H A DBase64InputStream.java119 public int read(byte[] b, int off, int len) throws IOException { argument
127 System.arraycopy(coder.output, outputStart, b, off, bytes);
H A DLog.java207 * turn off all logging for your tag. You can also create a local.prop file that with the
463 public void write(char[] cbuf, int off, int len) { argument
467 written += println_native(bufID, priority, tag, new String(cbuf, off, len));
/frameworks/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocationFunctions.h26 size_t off = 0; local
29 const bool valBit = (pData >> off) & 1;
33 ++off;
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DCube.java65 private static String fs(float[] f, int off, int n) { argument
68 for (int i = off; i < off + n; i++) {
71 if (i != off) {
/frameworks/base/core/java/com/android/internal/util/
H A DLineBreakBufferedWriter.java118 public void write(char[] buf, int off, int len) { argument
125 if (buf[off + i] == '\n') {
136 appendToBuffer(buf, off, nextNewLine);
140 off += nextNewLine + 1;
150 appendToBuffer(buf, off, rest);
153 off += rest;
161 appendToBuffer(buf, off, len);
163 if (buf[off + i] == '\n') {
172 public void write(String s, int off, int len) { argument
179 if (s.charAt(off
232 appendToBuffer(char[] buf, int off, int len) argument
247 appendToBuffer(String s, int off, int len) argument
[all...]
H A DIndentingPrintWriter.java94 public void write(String s, int off, int len) { argument
96 s.getChars(off, len - off, buf, 0);
/frameworks/base/core/jni/
H A Dandroid_util_StringBlock.cpp36 jint off, jint len)
44 if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) {
50 ResStringPool* osb = new ResStringPool(b+off, len, true);
34 android_content_StringBlock_nativeCreate(JNIEnv* env, jobject clazz, jbyteArray bArray, jint off, jint len) argument
H A Dandroid_net_LocalSocketImpl.cpp354 jbyteArray buffer, jint off, jint len, jobject fileDescriptor)
365 if (off < 0 || len < 0 || (off + len) > env->GetArrayLength(buffer)) {
389 fd, byteBuffer + off, len);
421 jbyteArray buffer, jint off, jint len, jobject fileDescriptor)
432 if (off < 0 || len < 0 || (off + len) > env->GetArrayLength(buffer)) {
451 byteBuffer + off, len);
353 socket_readba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
420 socket_writeba(JNIEnv *env, jobject object, jbyteArray buffer, jint off, jint len, jobject fileDescriptor) argument
H A Dandroid_util_XmlBlock.cpp36 jint off, jint len)
44 if (off < 0 || off >= bLen || len < 0 || len > bLen || (off+len) > bLen) {
51 osb->setTo(b+off, len, true);
34 android_content_XmlBlock_nativeCreate(JNIEnv* env, jobject clazz, jbyteArray bArray, jint off, jint len) argument
/frameworks/base/core/java/android/text/
H A DAlteredCharSequence.java89 public char charAt(int off) { argument
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) { argument
106 TextUtils.getChars(mSource, start, end, dest, off);
112 System.arraycopy(mChars, start - mStart, dest, off, end - start);
H A DAutoText.java38 // int off;
142 int off = mTrie[here + TRIE_OFF];
143 int len = mText.charAt(off);
145 return mText.substring(off + 1, off + 1 + len);
185 char off;
188 off = ooff;
190 off = (char) right.length();
195 add(src, off);
212 private void add(String src, char off) { argument
[all...]
H A DSpannableStringInternal.java146 public final void getChars(int start, int end, char[] dest, int off) { argument
147 mText.getChars(start, end, dest, off);
/frameworks/base/core/java/android/text/method/
H A DReplacementTransformationMethod.java150 public void getChars(int start, int end, char[] dest, int off) { argument
151 TextUtils.getChars(mSource, start, end, dest, off);
152 int offend = end - start + off;
155 for (int i = off; i < offend; i++) {
H A DPasswordTransformationMethod.java188 public void getChars(int start, int end, char[] dest, int off) { argument
189 TextUtils.getChars(mSource, start, end, dest, off);
226 dest[i - start + off] = DOT;
H A DTextKeyListener.java84 int off = cap.ordinal() * 2 + (autotext ? 1 : 0);
86 if (sInstance[off] == null) {
87 sInstance[off] = new TextKeyListener(cap, autotext);
90 return sInstance[off];
107 * @param off the offset into that text where the insertion is being made.
111 public static boolean shouldCap(Capitalize cap, CharSequence cs, int off) { argument
122 return TextUtils.getCapsMode(cs, off, cap == Capitalize.WORDS
/frameworks/base/core/tests/coretests/src/com/android/internal/util/
H A DLineBreakBufferedWriterTest.java225 public void write(char[] cbuf, int off, int len) { argument
226 strings.add(new String(cbuf, off, len));
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java101 public int read(byte[] b, int off, int len) throws IOException { argument
106 if (off < 0 || len < 0 || (off + len) > b.length ) {
110 int ret = readba_native(b, off, len, myFd);
136 public void write (byte[] b, int off, int len) throws IOException { argument
141 if (off < 0 || len < 0 || (off + len) > b.length ) {
144 writeba_native(b, off, len, myFd);
194 private native int readba_native(byte[] b, int off, int len, argument
196 private native void writeba_native(byte[] b, int off, in argument
[all...]
/frameworks/base/core/java/android/util/jar/
H A DStrictJarVerifier.java125 public void write(byte[] buf, int off, int nbytes) { argument
126 digest.update(buf, off, nbytes);
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java411 public char charAt(int off) { argument
412 return mString.charAt(off);
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java254 protected final void engineUpdate(byte[] b, int off, int len) throws SignatureException { argument
271 output = mMessageStreamer.update(b, off, len);
290 int off;
294 off = input.arrayOffset() + input.position();
298 off = 0;
303 engineUpdate(b, off, len);
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DSerializedFrame.java93 public final void write(byte b[], int off, int len) { argument
95 System.arraycopy(b, off, mBuffer, mOffset, len);
140 public final int read(byte[] b, int off, int len) { argument
147 System.arraycopy(mBuffer, mPos, b, off, len);

Completed in 8598 milliseconds

123