Searched refs:off (Results 1 - 25 of 64) sorted by path

123

/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dwin_asm.bat1 echo off
/frameworks/base/cmds/servicemanager/
H A Dbinder.c591 unsigned off = bio->data - bio->data0; local
595 if (bio->offs[n] == off)
/frameworks/base/core/java/android/content/res/
H A DAssetManager.java575 public final int read(byte[] b, int off, int len) throws IOException { argument
576 return readAsset(mAsset, b, off, len);
679 private native final int readAsset(int asset, byte[] b, int off, int len); argument
/frameworks/base/core/java/android/inputmethodservice/
H A DInputMethodService.java1653 final int off = mExtractedText.startOffset;
1655 newSelStart -= off;
1656 newSelEnd -= off;
2172 * turn off the extract area since there is no text to be shown.
2193 * <p>The standard implementation turns on or off its accessory area
2197 * {@link InputType#TYPE_TEXT_VARIATION_FILTER} input type will turn off the
/frameworks/base/core/java/android/net/
H A DLocalSocketImpl.java83 public int read(byte[] b, int off, int len) throws IOException { argument
88 if (off < 0 || len < 0 || (off + len) > b.length ) {
92 int ret = readba_native(b, off, len, myFd);
118 public void write (byte[] b, int off, int len) throws IOException { argument
123 if (off < 0 || len < 0 || (off + len) > b.length ) {
126 writeba_native(b, off, len, myFd);
144 private native int readba_native(byte[] b, int off, int len, argument
146 private native void writeba_native(byte[] b, int off, in argument
[all...]
/frameworks/base/core/java/android/os/
H A DParcel.java2031 int off = dataPosition() - 4;
2033 "Parcel " + this + ": Unmarshalling unknown type code " + type + " at offset " + off);
/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 DLayout.java1183 // if walking off line, look at the line we're headed to
1781 public char charAt(int off) { argument
1783 getChars(off, off + 1, buf, 0);
H A DSpannableStringInternal.java69 public final void getChars(int start, int end, char[] dest, int off) { argument
70 mText.getChars(start, end, dest, off);
H A DStaticLayout.java595 int off = j * mColumns;
596 int want = off + mColumns + TOP;
666 lines[off + START] = start;
667 lines[off + TOP] = v;
668 lines[off + DESCENT] = below + extra;
671 lines[off + mColumns + START] = end;
672 lines[off + mColumns + TOP] = v;
675 lines[off + TAB] |= TAB_MASK;
677 lines[off + DIR] |= dir << DIR_SHIFT;
H A DTextUtils.java526 public char charAt(int off) { argument
527 return AndroidCharacter.getMirror(mSource.charAt(mEnd - 1 - off));
1390 int off = 0;
1395 copySpansFrom((Spanned) text[i], 0, len, Object.class, ss, off);
1398 off += len;
1504 * @param off Location in the text at which to check.
1514 public static int getCapsMode(CharSequence cs, int off, int reqModes) { argument
1515 if (off < 0) {
1532 for (i = off; i > 0; i--) {
/frameworks/base/core/java/android/text/method/
H A DLinkMovementMethod.java206 int off = layout.getOffsetForHorizontal(line, x);
208 ClickableSpan[] link = buffer.getSpans(off, off, ClickableSpan.class);
H A DMultiTapKeyListener.java72 int off = cap.ordinal() * 2 + (autotext ? 1 : 0);
74 if (sInstance[off] == null) {
75 sInstance[off] = new MultiTapKeyListener(cap, autotext);
78 return sInstance[off];
175 int off = 0;
180 off = i;
193 content.replace(selStart, selEnd, val, off, off + 1);
H A DPasswordTransformationMethod.java189 public void getChars(int start, int end, char[] dest, int off) { argument
190 TextUtils.getChars(mSource, start, end, dest, off);
227 dest[i - start + off] = DOT;
H A DQwertyKeyListener.java59 int off = cap.ordinal() * 2 + (autoText ? 1 : 0);
61 if (sInstance[off] == null) {
62 sInstance[off] = new QwertyKeyListener(cap, autoText);
65 return sInstance[off];
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 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/java/android/util/
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 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)) {
/frameworks/base/core/java/android/view/
H A DGravity.java323 int off = 0;
324 if (inoutObj.top < display.top) off = display.top-inoutObj.top;
325 else if (inoutObj.bottom > display.bottom) off = display.bottom-inoutObj.bottom;
326 if (off != 0) {
331 inoutObj.top += off;
332 inoutObj.bottom += off;
341 int off = 0;
342 if (inoutObj.left < display.left) off = display.left-inoutObj.left;
343 else if (inoutObj.right > display.right) off = display.right-inoutObj.right;
344 if (off !
[all...]
H A DView.java2520 * Indicates that the screen has changed state and is now off.
3166 * view hierarchy. When hardware acceleration is turned off, hardware layers
5570 * insets to be 0), and returning true. This behavior is off by default, but can
11618 * turns on or off (whether it happens automatically or the user does it
12464 * acceleration is turned off. When hardware acceleration is turned on, enabling the
14105 // Reset drawn bit to original value (invalidate turns it off)
15821 // If the screen is off assume the animation start time is now instead of
17345 public void hackTurnOffWindowResizeAnim(boolean off) { argument
17346 mAttachInfo.mTurnOffWindowResizeAnim = off;
18065 // Kick off th
[all...]
H A DViewRootImpl.java1491 // point of drawing it we will hold off and schedule
5027 float collect(float off, long time, String axis) { argument
5029 if (off > 0) {
5030 normTime = (long)(off * FAST_MOVE_TIME);
5039 } else if (off < 0) {
5040 normTime = (long)((-off) * FAST_MOVE_TIME);
5064 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " accelerate: off="
5065 + off + " normTime=" + normTime + " delta=" + delta
5072 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " deccelerate: off="
5073 + off
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java3241 * Calling setText() strips off any ChangeWatchers;
6822 * to turn off ellipsizing.
8555 public char charAt(int off) { argument
8556 return mChars[off + mStart];
8572 public void getChars(int start, int end, char[] buf, int off) { argument
8577 System.arraycopy(mChars, start + mStart, buf, off, end - start);
/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.

Completed in 370 milliseconds

123