Home
last modified time | relevance | path

Searched refs:mTo (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapbMessageMime.java151 private ArrayList<Rfc822Token> mTo = null; // Shall not be empty field in BluetoothMapbMessageMime
256 return mTo; in getTo()
260 this.mTo = to; in setTo()
264 if (this.mTo == null) { in addTo()
265 this.mTo = new ArrayList<Rfc822Token>(1); in addTo()
267 this.mTo.add(new Rfc822Token(name, address, null)); in addTo()
442 if (mTo == null && mCc == null && mBcc == null) { in encodeHeaders()
445 if (mTo != null) { in encodeHeaders()
446 encodeHeaderAddresses(sb, "To: ", mTo); // This includes folding if needed. in encodeHeaders()
597 mTo = new ArrayList<Rfc822Token>(Arrays.asList(tokens)); in parseMimeHeaders()
/packages/apps/Gallery2/src/com/android/gallery3d/anim/
DFloatAnimation.java22 private final float mTo; field in FloatAnimation
27 mTo = to; in FloatAnimation()
34 mCurrent = mFrom + (mTo - mFrom) * progress; in onCalculate()
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/camerafocus/
DPieRenderer.java785 private float mTo = 1f; field in PieRenderer.ScaleAnimation
793 mTo = to; in setScale()
798 mDialAngle = (int) (mFrom + (mTo - mFrom) * interpolatedTime); in applyTransformation()
805 private float mTo; field in PieRenderer.LinearAnimation
812 mTo = to; in LinearAnimation()
821 mValue = (mFrom + (mTo - mFrom) * interpolatedTime); in applyTransformation()