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

123

/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneProxy.java181 boolean oldPowerState = false; // old power state to off
1017 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete){ argument
1018 mActivePhone.sendBurstDtmf(dtmfString, on, off, onComplete);
H A DCommandsInterface.java31 RADIO_OFF, /* Radio explicitly powered off (eg CFUN=0) */
986 void sendBurstDtmf(String dtmfString, int on, int off, Message result); argument
H A DCallManager.java809 * - Phone is not powered off
1067 * @param off the DTMF OFF length in milliseconds, or 0 for default
1071 public boolean sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
1073 getActiveFgCall().getPhone().sendBurstDtmf(dtmfString, on, off, onComplete);
H A DPhoneBase.java1034 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
H A DRIL.java446 * Reads in a single RIL message off the wire. A RIL message consists
1220 sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
1226 rr.mParcel.writeString(Integer.toString(off));
1434 + (on ? " on" : " off"));
/frameworks/base/core/java/android/text/
H A DLayout.java1204 // if walking off line, look at the line we're headed to
1820 public char charAt(int off) { argument
1822 getChars(off, off + 1, buf, 0);
H A DTextUtils.java529 public char charAt(int off) { argument
530 return AndroidCharacter.getMirror(mSource.charAt(mEnd - 1 - off));
1404 int off = 0;
1409 copySpansFrom((Spanned) text[i], 0, len, Object.class, ss, off);
1412 off += len;
1518 * @param off Location in the text at which to check.
1528 public static int getCapsMode(CharSequence cs, int off, int reqModes) { argument
1529 if (off < 0) {
1546 for (i = off; i > 0; i--) {
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java346 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
/frameworks/base/core/java/android/os/
H A DParcel.java2037 int off = dataPosition() - 4;
2039 "Parcel " + this + ": Unmarshalling unknown type code " + type + " at offset " + off);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1525 // point of drawing it we will hold off and schedule
4140 float collect(float off, long time, String axis) { argument
4142 if (off > 0) {
4143 normTime = (long)(off * FAST_MOVE_TIME);
4152 } else if (off < 0) {
4153 normTime = (long)((-off) * FAST_MOVE_TIME);
4177 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " accelerate: off="
4178 + off + " normTime=" + normTime + " delta=" + delta
4185 if (DEBUG_TRACKBALL) Log.v(TAG, axis + " deccelerate: off="
4186 + off
[all...]
H A DView.java2539 * Indicates that the screen has changed state and is now off.
3190 * view hierarchy. When hardware acceleration is turned off, hardware layers
5661 * insets to be 0), and returning true. This behavior is off by default, but can
11785 * turns on or off (whether it happens automatically or the user does it
12655 * acceleration is turned off. When hardware acceleration is turned on, enabling the
14391 // Reset drawn bit to original value (invalidate turns it off)
16165 // If the screen is off assume the animation start time is now instead of
17726 public void hackTurnOffWindowResizeAnim(boolean off) { argument
17727 mAttachInfo.mTurnOffWindowResizeAnim = off;
18442 // Kick off th
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java739 public void sendBurstDtmf(String dtmfString, int on, int off, Message onComplete) { argument
750 mCi.sendBurstDtmf(dtmfString, on, off, onComplete);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java982 public void sendBurstDtmf(String dtmfString, int on, int off, Message result) { argument
/frameworks/base/core/java/android/widget/
H A DTextView.java3445 * Calling setText() strips off any ChangeWatchers;
7047 * to turn off ellipsizing.
8847 public char charAt(int off) { argument
8848 return mChars[off + mStart];
8864 public void getChars(int start, int end, char[] buf, int off) { argument
8869 System.arraycopy(mChars, start + mStart, buf, off, end - start);

Completed in 587 milliseconds

123