Searched refs:mProjection (Results 1 - 11 of 11) sorted by relevance

/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
H A DPhotoPagerLoader.java32 private final String[] mProjection; field in class:PhotoPagerLoader
38 mProjection = projection != null ? projection : PhotoContract.PhotoQuery.PROJECTION;
48 setProjection(mProjection);
/frameworks/base/core/java/android/content/
H A DCursorLoader.java46 String[] mProjection; field in class:CursorLoader
64 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
138 mProjection = projection;
199 return mProjection;
203 mProjection = projection;
234 writer.print(prefix); writer.print("mProjection=");
235 writer.println(Arrays.toString(mProjection));
/frameworks/support/core-utils/java/android/support/v4/content/
H A DCursorLoader.java41 String[] mProjection; field in class:CursorLoader
60 mUri, mProjection, mSelection, mSelectionArgs, mSortOrder,
134 mProjection = projection;
195 return mProjection;
199 mProjection = projection;
230 writer.print(prefix); writer.print("mProjection=");
231 writer.println(Arrays.toString(mProjection));
/frameworks/opt/chips/src/com/android/ex/chips/
H A DQueries.java72 private final String[] mProjection; field in class:Queries.Query
88 mProjection = projection;
94 return mProjection;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DCastControllerImpl.java59 private MediaProjectionInfo mProjection; field in class:CastControllerImpl
66 mProjection = mProjectionManager.getActiveProjectionInfo();
81 pw.print(" mProjection="); pw.println(mProjection);
136 if (mProjection != null) {
138 device.id = mProjection.getPackageName();
139 device.name = getAppName(mProjection.getPackageName());
142 device.tag = mProjection;
191 final MediaProjectionInfo oldProjection = mProjection;
193 final boolean isCurrent = Objects.equals(projection, mProjection);
[all...]
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DIntents.java117 private String[] mProjection; field in class:Intents.PhotoViewIntentBuilder
189 mProjection = projection;
319 if (mProjection != null) {
320 mIntent.putExtra(EXTRA_PROJECTION, mProjection);
H A DPhotoViewController.java140 private String[] mProjection; field in class:PhotoViewController
269 mProjection = intent.getStringArrayExtra(Intents.EXTRA_PROJECTION);
271 mProjection = null;
571 return new PhotoPagerLoader(mActivity.getContext(), Uri.parse(mPhotosUri), mProjection);
/frameworks/base/libs/hwui/
H A DProgram.cpp155 if (projectionMatrix != mProjection || offset != mOffset) {
168 mProjection = projectionMatrix;
H A DProgram.h457 mat4 mProjection; member in class:android::Program
/frameworks/base/rs/java/android/renderscript/
H A DProgramVertexFixedFunction.java203 Matrix4f mProjection; field in class:ProgramVertexFixedFunction.Constants
225 mProjection = new Matrix4f();
272 mProjection.load(m);
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java581 final String[] mProjection; field in class:Content.QueryCommand
587 mProjection = projection;
593 Cursor cursor = provider.query(resolveCallingPackage(), mUri, mProjection,

Completed in 4631 milliseconds