Searched refs:mProjection (Results 1 - 13 of 13) 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.java50 String[] mProjection; field in class:CursorLoader
68 Cursor cursor = getContext().getContentResolver().query(mUri, mProjection, mSelection,
142 mProjection = projection;
203 return mProjection;
207 mProjection = projection;
238 writer.print(prefix); writer.print("mProjection=");
239 writer.println(Arrays.toString(mProjection));
/frameworks/support/content/src/main/java/androidx/contentpager/content/
H A DQuery.java44 private final @Nullable String[] mProjection; field in class:Query
66 this.mProjection = projection;
74 // NOTE: We omit mProjection and other details from ID. If a client wishes
75 // to request a page with a different mProjection or sorting, they should
118 mProjection,
127 mProjection,
137 mProjection,
186 + " projection:" + Arrays.toString(mProjection)
/frameworks/support/loader/src/main/java/androidx/loader/content/
H A DCursorLoader.java45 String[] mProjection; field in class:CursorLoader
64 mUri, mProjection, mSelection, mSelectionArgs, mSortOrder,
139 mProjection = projection;
202 return mProjection;
206 mProjection = projection;
241 writer.print(prefix); writer.print("mProjection=");
242 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.h439 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/support/content/src/androidTest/java/androidx/contentpager/content/
H A DTestContentProvider.java370 private final String[] mProjection; field in class:TestContentProvider.TestWindowedCursor
375 mProjection = projection;
394 return mProjection;
/frameworks/base/cmds/content/src/com/android/commands/content/
H A DContent.java607 final String[] mProjection; field in class:Content.QueryCommand
613 mProjection = projection;
619 Cursor cursor = provider.query(resolveCallingPackage(), mUri, mProjection,

Completed in 163 milliseconds