Searched defs:mFrom (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DActivityResult.java27 final ActivityRecord mFrom; field in class:ActivityResult
32 mFrom = from;
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java54 protected int[] mFrom; field in class:SimpleCursorAdapter
138 final int[] from = mFrom;
329 if (mFrom == null || mFrom.length != count) {
330 mFrom = new int[count];
333 mFrom[i] = c.getColumnIndexOrThrow(from[i]);
336 mFrom = null;
H A DSimpleAdapter.java52 private String[] mFrom; field in class:SimpleAdapter
83 mFrom = from;
153 final String[] from = mFrom;
352 String str = (String)h.get(mFrom[j]);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java39 String[] mFrom; field in class:SimpleCursorAdapterTest
55 mFrom = new String[]{"Column1", "Column2", "_id"};
62 mCursor2x2 = createCursor(mFrom, mData2x2);
90 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo);
101 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, null, mFrom, mTo);
112 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo);
119 Cursor c2 = createCursor(mFrom, data2);
131 SimpleCursorAdapter ca = new SimpleCursorAdapter(mContext, mLayout, mCursor2x2, mFrom, mTo);
145 * deal with cursors that have the same essential data (as defined by the original mFrom
151 mFrom, mT
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/
H A DTransitionDrawable.java66 private int mFrom; field in class:TransitionDrawable
110 mFrom = 0;
141 mFrom = 0;
146 mFrom = 255;
158 mFrom = mAlpha;
182 mAlpha = (int) (mFrom + (mTo - mFrom) * normalized);
/frameworks/base/graphics/java/android/renderscript/
H A DScriptGroup.java58 mFrom = from;
64 mFrom = from;
71 Script.KernelID mFrom; field in class:ScriptGroup.ConnectLine
406 if (n.mOutputs.get(ct3).mFrom == kid) {
430 src[ct] = cl.mFrom.getID(mRS);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptGroup.java52 mFrom = from;
58 mFrom = from;
65 Script.KernelID mFrom; field in class:ScriptGroup.ConnectLine
358 if (n.mOutputs.get(ct3).mFrom == kid) {
382 src[ct] = cl.mFrom.getID(mRS);
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java39 protected int[] mFrom; field in class:SimpleCursorAdapter
123 final int[] from = mFrom;
313 if (mFrom == null || mFrom.length != count) {
314 mFrom = new int[count];
317 mFrom[i] = mCursor.getColumnIndexOrThrow(from[i]);
320 mFrom = null;
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DPagedView.java2283 private Rect mFrom; field in class:PagedView.FlingAlongVectorAnimatorUpdateListener
2293 mFrom = from;
2303 mFrom.left += (mVelocity.x * (curTime - mPrevTime) / 1000f);
2304 mFrom.top += (mVelocity.y * (curTime - mPrevTime) / 1000f);
2306 mDragView.setTranslationX(mFrom.left);
2307 mDragView.setTranslationY(mFrom.top);

Completed in 172 milliseconds