Searched defs:off (Results 1 - 25 of 58) 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/compile/mclinker/lib/Target/Hexagon/
H A DHexagonRelocationFunctions.h23 size_t off = 0; local
26 const bool valBit = (pData >> off) & 1;
30 ++off;
/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);
/frameworks/base/core/jni/android/graphics/
H A DMinikinUtils.cpp30 static int snprintfcat(char* buf, int off, int size, const char* format, ...)
32 static int snprintfcat(char* buf, int off, int size, const char* format, ...) { argument
35 int n = vsnprintf(buf + off, size - off, format, args);
36 LOG_ALWAYS_FATAL_IF(n >= size - off, "String overflow in setting layout properties");
38 return off + n;
/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_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.java71 public final void getChars(int start, int end, char[] dest, int off) { argument
72 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/rs/java/android/renderscript/
H A DAllocationAdapter.java49 public void subData1D(int off, int count, int[] d) { argument
50 super.copy1DRangeFrom(off, count, d);
55 public void subData1D(int off, int count, short[] d) { argument
56 super.copy1DRangeFrom(off, count, d);
61 public void subData1D(int off, int count, byte[] d) { argument
62 super.copy1DRangeFrom(off, count, d);
67 public void subData1D(int off, int count, float[] d) { argument
68 super.copy1DRangeFrom(off, count, d);
/frameworks/rs/cpu_ref/linkloader/utils/
H A Dserialize.h86 void seek(off_t off, bool from_begin = false) { argument
88 cursor = buf_begin + off;
90 cursor += off;
/frameworks/base/core/tests/coretests/src/android/text/
H A DTextUtilsTest.java408 public char charAt(int off) { argument
409 return mString.charAt(off);
/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);
/frameworks/minikin/libs/minikin/
H A DFontCollection.cpp137 int off = 0; local
138 U16_NEXT_UNSAFE(decomposed, off, ch);
/frameworks/native/libs/binder/
H A DDebug.cpp35 ssize_t off = sizeof(indentStr)-1-(indentLevel*2); local
36 return indentStr + (off < 0 ? 0 : off);
/frameworks/native/opengl/tests/gl_jni/jni/
H A Dgl_code.cpp116 const unsigned int off = 0xffffffff; local
119 on, off, on, off, on, off, on, off,
120 off, on, off, on, off, on, off, on,
121 on, off, o
[all...]
/frameworks/native/opengl/tests/tritex/
H A Dtritex.cpp209 const unsigned int off = 0xffffffff; local
212 on, off, on, off, on, off, on, off,
213 off, on, off, on, off, on, off, on,
214 on, off, o
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp194 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, const void *data) { argument
200 if((off + count) > mCurrentCount) {
201 ALOGE("Overflow, Available count %u, got %zu at offset %u.", mCurrentCount, count, off);
206 tryDispatch(mRS, RS::dispatch->Allocation1DData(mRS->getContext(), getIDSafe(), off, mSelectedLOD,
210 void Allocation::copy1DRangeTo(uint32_t off, size_t count, void *data) { argument
215 if((off + count) > mCurrentCount) {
216 ALOGE("Overflow, Available count %u, got %zu at offset %u.", mCurrentCount, count, off);
221 tryDispatch(mRS, RS::dispatch->Allocation1DRead(mRS->getContext(), getIDSafe(), off, mSelectedLOD,
225 void Allocation::copy1DRangeFrom(uint32_t off, size_t count, sp<const Allocation> data, argument
228 tryDispatch(mRS, RS::dispatch->AllocationCopy2DRange(mRS->getContext(), getIDSafe(), off,
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicColorMatrix.cpp378 size_t off = (target - buf - 8) >> 2; local
379 rsAssert(((off & 0xff000000) == 0) ||
380 ((off & 0xff000000) == 0xff000000));
384 op |= 0xffffff & off;
916 // Currently this generates off by one errors.

Completed in 4229 milliseconds

123