Searched refs:mTo (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
H A DBoundsAnimationController.java100 private final Rect mTo; field in class:BoundsAnimationController.BoundsAnimator
121 mTo = to;
132 mFrozenTaskWidth = mTo.width();
133 mFrozenTaskHeight = mTo.height();
141 if (mFrom.width() * mFrom.height() > mTo.width() * mTo.height()) {
151 mTmpRect.left = (int) (mFrom.left * remains + mTo.left * value + 0.5f);
152 mTmpRect.top = (int) (mFrom.top * remains + mTo.top * value + 0.5f);
153 mTmpRect.right = (int) (mFrom.right * remains + mTo.right * value + 0.5f);
154 mTmpRect.bottom = (int) (mFrom.bottom * remains + mTo
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java68 private int mTo; field in class:TransitionDrawable
112 mTo = 255;
141 if (mTo == 0) {
143 mTo = 255;
148 mTo = 0;
160 mTo = mReverse ? 0 : 255;
183 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java42 int[] mTo; field in class:SimpleCursorAdapterTest
58 mTo = new int[]{com.android.internal.R.id.text1, com.android.internal.R.id.text2};
92 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo);
103 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, null, mFrom, mTo);
114 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo);
133 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo);
153 mFrom, mTo);
155 // check columns of original - mFrom and mTo should line up
191 ca.changeCursorAndColumns(mCursor2x2, mFrom, mTo);
194 // check columns of original - mFrom and mTo shoul
[all...]
/frameworks/av/media/libstagefright/
H A DDataConverter.cpp105 if (mTo == kAudioEncodingPcm8bit && mFrom == kAudioEncodingPcm16bit) {
107 } else if (mTo == kAudioEncodingPcm8bit && mFrom == kAudioEncodingPcmFloat) {
109 } else if (mTo == kAudioEncodingPcm16bit && mFrom == kAudioEncodingPcm8bit) {
111 } else if (mTo == kAudioEncodingPcm16bit && mFrom == kAudioEncodingPcmFloat) {
113 } else if (mTo == kAudioEncodingPcmFloat && mFrom == kAudioEncodingPcm8bit) {
115 } else if (mTo == kAudioEncodingPcmFloat && mFrom == kAudioEncodingPcm16bit) {
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java60 protected int[] mTo; field in class:SimpleCursorAdapter
79 mTo = to;
105 mTo = to;
137 final int count = mTo.length;
139 final int[] to = mTo;
362 mTo = to;
H A DSimpleAdapter.java57 private int[] mTo; field in class:SimpleAdapter
92 mTo = to;
190 final int[] to = mTo;
385 int len = mTo.length;
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java45 protected int[] mTo; field in class:SimpleCursorAdapter
64 mTo = to;
90 mTo = to;
121 final int count = mTo.length;
123 final int[] to = mTo;
346 mTo = to;
/frameworks/av/media/libstagefright/include/
H A DDataConverter.h72 mTo(target) { }
74 AudioEncoding mTo; member in struct:android::AudioConverter

Completed in 281 milliseconds