Searched defs:mProjection (Results 1 - 10 of 10) 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/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/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/support/v4/java/android/support/v4/content/
H A DCursorLoader.java39 String[] mProjection; field in class:CursorLoader
49 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
102 mProjection = projection;
163 return mProjection;
167 mProjection = projection;
198 writer.print(prefix); writer.print("mProjection=");
199 writer.println(Arrays.toString(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/base/cmds/content/src/com/android/commands/content/
H A DContent.java523 final String[] mProjection; field in class:Content.QueryCommand
529 mProjection = projection;
535 Cursor cursor = provider.query(null, mUri, mProjection, mWhere, null, mSortOrder, null);
/frameworks/opt/photoviewer/src/com/android/ex/photo/
H A DIntents.java115 private String[] mProjection; field in class:Intents.PhotoViewIntentBuilder
176 mProjection = projection;
298 if (mProjection != null) {
299 mIntent.putExtra(EXTRA_PROJECTION, mProjection);
H A DPhotoViewController.java138 private String[] mProjection; field in class:PhotoViewController
257 mProjection = intent.getStringArrayExtra(Intents.EXTRA_PROJECTION);
259 mProjection = null;
505 return new PhotoPagerLoader(mActivity.getContext(), Uri.parse(mPhotosUri), mProjection);
/frameworks/base/libs/hwui/
H A DProgram.h434 mat4 mProjection; member in class:android::uirenderer::Program

Completed in 235 milliseconds