Searched refs:off (Results 51 - 64 of 64) sorted by relevance

123

/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java345 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneProxy.java186 boolean oldPowerState = false; // old power state to off
863 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete){ argument
864 mActivePhone.sendBurstDtmf(dtmfString, on, off, onComplete);
H A DCommandsInterface.java30 RADIO_OFF, /* Radio explicitly powered off (eg CFUN=0) */
987 void sendBurstDtmf(String dtmfString, int on, int off, Message result); argument
H A DCallManager.java781 * - Phone is not powered off
1039 * @param off the DTMF OFF length in milliseconds, or 0 for default
1043 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
1045 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete);
H A DPhoneBase.java928 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
H A DRIL.java438 * Reads in a single RIL message off the wire. A RIL message consists
1174 sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
1180 rr.mp.writeString(Integer.toString(off));
1387 + (on ? " on" : " off"));
/frameworks/base/core/java/android/text/
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 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/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/view/
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...]
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...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java677 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
688 mCM.sendBurstDtmf(dtmfString, on, off, onComplete);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java932 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
/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);

Completed in 337 milliseconds

123