Home | History | Annotate | Download | only in widget

Lines Matching refs:mFrom

39     String[] mFrom;
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, mTo);
153 // check columns of original - mFrom and mTo should line up
189 ca.changeCursorAndColumns(mCursor2x2, mFrom, mTo);
192 // check columns of original - mFrom and mTo should line up
210 mFrom, mTo);
249 * This is simply a way to sneak a look at the protected mFrom() array. A more API-
261 return mFrom;