/external/chromium_org/components/autofill/core/browser/android/java/src/org/chromium/components/browser/autofill/ |
PersonalAutofillPopulator.java | 33 public abstract String[] projection(); method in class:PersonalAutofillPopulator.ProfileQuery 41 public String[] projection() { method in class:PersonalAutofillPopulator.EmailProfileQuery 57 public String[] projection() { method in class:PersonalAutofillPopulator.PhoneProfileQuery 79 public String[] projection() { method in class:PersonalAutofillPopulator.AddressProfileQuery 104 public String[] projection() { method in class:PersonalAutofillPopulator.NameProfileQuery 127 query.projection(),
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalAlbum.java | 75 mProjection = LocalImage.PROJECTION; 82 mProjection = LocalVideo.PROJECTION; 172 String[] projection; local 176 projection = LocalImage.PROJECTION; 180 projection = LocalVideo.PROJECTION; 186 Cursor cursor = resolver.query(baseUri, projection, "_id BETWEEN ? AND ?", 224 String[] projection, int id) { 225 return resolver.query(uri, projection, "_id=?" [all...] |
/packages/apps/Exchange/src/com/android/exchange/provider/ |
ExchangeDirectoryProvider.java | 111 GalProjection(String[] projection) { 112 size = projection.length; 113 for (int i = 0; i < projection.length; i++) { 114 columnMap.put(projection[i], i); 124 GalContactRow(GalProjection projection, long contactId, String accountName, 126 this.mProjection = projection; 127 row = new Object[projection.size]; 171 static void addPhoneRow(MatrixCursor cursor, GalProjection projection, long contactId, 175 projection, contactId, accountName, displayName); 215 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs [all...] |
/frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/ |
ExternalStorageProvider.java | 166 private static String[] resolveRootProjection(String[] projection) { 167 return projection != null ? projection : DEFAULT_ROOT_PROJECTION; 170 private static String[] resolveDocumentProjection(String[] projection) { 171 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION; 268 public Cursor queryRoots(String[] projection) throws FileNotFoundException { 269 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); 327 public Cursor queryDocument(String documentId, String[] projection) 329 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection)); [all...] |
/frameworks/base/docs/html/training/contacts-provider/ |
retrieve-details.jd | 82 <h3>Set up a projection</h3> 87 column names to your projection. Always retrieve 94 private static final String PROJECTION = 116 This projection retrieves all the columns for a row in the 231 PROJECTION, 289 Projection 292 Modify your projection to retrieve the columns that are specific to the 293 data type. Also modify the projection to use the column name constants defined in the 317 <h3>Define a projection</h3> 323 following projection [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseUtils_InsertHelperTest.java | 88 final String[] projection = new String[] { local 100 Cursor cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null); 125 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null); 157 cursor = mDatabase.query(TEST_TABLE_NAME, projection, "_id = " + id, 190 final String[] projection = new String[] { local 202 Cursor cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null); 221 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null); 240 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null); 267 cursor = mDatabase.query(TEST_TABLE_NAME, projection, null, null, null, null, null);
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/ |
UVProjectionGenerator.java | 14 * This class helps with projection calculations. 20 * Flat projection for 2D textures. 26 * @return UV coordinates after the projection 45 * Cube projection for 2D textures. 51 * @return UV coordinates after the projection 108 * Tube projection for 2D textures. 114 * @return UV coordinates after the projection 167 * Sphere projection for 2D textures. 173 * @return UV coordinates after the projection
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
ContentResolverTest.java | 157 String[] projection = {}; local 165 Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder); 168 assertThat(testCursor.projection, equalTo(projection)); 325 @Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { 357 public String[] projection; field in class:ContentResolverTest.QueryParamTrackingTestCursor 363 public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { 365 this.projection = projection;
|
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/ |
sparse_weight_vector.cpp | 262 // Algorithm for L0 projection which takes O(n log(n)), where n is 282 // check if a projection is necessary 290 // compute the final projection. 300 // Slow algorithm for accurate L1 projection which takes O(n log(n)), where n is 305 // applies a probability simplex projection to the abs(vector) 319 // check if a projection is necessary 325 // Compute projection on the probability simplex. 339 // compute the final projection. 354 // Check if a projection is necessary.
|
/external/chromium/chrome/browser/sync/sessions/ |
ordered_commit_set_unittest.cc | 49 // the set to a size of 4, so that the DB projection is wiped out and 64 OrderedCommitSet::Projection p1, p2, p3; 72 SCOPED_TRACE(::testing::Message("UI projection mismatch at i = ") << i); 78 SCOPED_TRACE(::testing::Message("PASSIVE projection mismatch at i = ") 85 SCOPED_TRACE(::testing::Message("DB projection mismatch at i = ") << i);
|
ordered_commit_set.cc | 53 // For each projection, chop off any indices larger than or equal to 55 Projection& p = it->second; 56 Projection::iterator element = std::lower_bound(p.begin(), p.end(),
|
/frameworks/base/opengl/java/android/opengl/ |
Visibility.java | 54 * Given an OpenGL ES ModelView-Projection matrix (which implicitly 58 * A ModelView-Projection matrix can be computed by multiplying the 59 * a Projection matrix by the a ModelView matrix (in that order.). There 61 * Projection matrices. The most generally applicable way is to keep 80 * @param mvp a float array containing the mode-view-projection matrix
|
GLU.java | 84 * Set up a 2D orthographic projection matrix 98 * Set up a perspective projection matrix 126 * the current modelView and projection matrices. 134 * @param project the current projection matrix 192 * the current modelView and projection matrices. 200 * @param project the current projection matrix
|
/frameworks/native/services/surfaceflinger/Effects/ |
Daltonizer.cpp | 75 // - since the projection happens along the axis of the missing component, a 93 // The following 3 matrices perform the projection of a LMS color onto the given plane 96 // projection for protanopia (L = 0) 102 // projection for deuteranopia (M = 0) 108 // projection for tritanopia (S = 0)
|
/development/samples/Vault/src/com/example/android/vault/ |
VaultProvider.java | 105 private static String[] resolveRootProjection(String[] projection) { 106 return projection != null ? projection : DEFAULT_ROOT_PROJECTION; 109 private static String[] resolveDocumentProjection(String[] projection) { 110 return projection != null ? projection : DEFAULT_DOCUMENT_PROJECTION; 203 public Cursor queryRoots(String[] projection) throws FileNotFoundException { 204 final MatrixCursor result = new MatrixCursor(resolveRootProjection(projection)); 390 public Cursor queryDocument(String documentId, String[] projection) 392 final MatrixCursor result = new MatrixCursor(resolveDocumentProjection(projection)); [all...] |
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_window_pos.spec | 32 coordinate with the RasterPos command, the modelview matrix, projection 40 projection matrix and the viewport to window mapping. Furthermore, 94 matrix, projection matrix and viewport parameters are ignored and the
|
/external/mesa3d/docs/ |
MESA_window_pos.spec | 32 coordinate with the RasterPos command, the modelview matrix, projection 40 projection matrix and the viewport to window mapping. Furthermore, 94 matrix, projection matrix and viewport parameters are ignored and the
|
/frameworks/base/docs/html/guide/topics/ui/ |
binding.jd | 28 private static String[] PROJECTION = new String[] { 33 Cursor cur = managedQuery(People.CONTENT_URI, PROJECTION, null, null); 49 <p>Note that it is necessary to have the People._ID column in projection used with CursorAdapter
|
/frameworks/base/docs/html/training/graphics/opengl/ |
index.jd | 65 <dt><b><a href="projection.html">Applying Projection and Camera Views</a></b></dt> 66 <dd>Learn how to use projection and camera views to get a new perspective on your drawn
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/debug/ |
DumpFileProvider.java | 96 final String[] projection = (inProjection != null) ? inProjection local 99 final MatrixCursor c = new MatrixCursor(projection); 105 final String column = projection[i];
|
/frameworks/base/docs/html/guide/topics/graphics/ |
opengl.jd | 17 <li><a href="#proj-es1">Projection and camera in ES 1.0</a></li> 18 <li><a href="#proj-es2">Projection and camera in ES 2.0 and higher</a></li> 257 on the right. To solve this problem, you can apply OpenGL projection modes and camera views to 260 <p>In order to apply projection and camera views, you create a projection matrix and a camera view 261 matrix and apply them to the OpenGL rendering pipeline. The projection matrix recalculates the 266 <h3 id="proj-es1">Projection and camera view in OpenGL ES 1.0</h3> 267 <p>In the ES 1.0 API, you apply projection and camera view by creating each matrix and then 271 <li><strong>Projection matrix</strong> - Create a projection matrix using the geometry of th [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
Utility.java | 650 String[] projection, String selection, String[] selectionArgs, String sortOrder, 654 Cursor c = context.getContentResolver().query(uri, projection, selection, selectionArgs, 671 public static Long getFirstRowLong(Context context, Uri uri, String[] projection, 673 return getFirstRowColumn(context, uri, projection, selection, selectionArgs, 680 public static Long getFirstRowLong(Context context, Uri uri, String[] projection, 683 return getFirstRowColumn(context, uri, projection, selection, selectionArgs, 690 public static Integer getFirstRowInt(Context context, Uri uri, String[] projection, 692 return getFirstRowColumn(context, uri, projection, selection, selectionArgs, 699 public static Integer getFirstRowInt(Context context, Uri uri, String[] projection, 702 return getFirstRowColumn(context, uri, projection, selection, selectionArgs [all...] |
/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
LocalSource.java | 73 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.BUCKET_ID, local 76 Cursor cursor = mResolver.query(uri, projection, null, null, null); 129 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.ORIENTATION, local 133 data.cursor = mResolver.query(data.uri, projection, selection, null, null); 191 String[] projection = {MediaStore.Images.Media.DATA, MediaStore.Images.Media.ORIENTATION, local 208 Cursor cursor = mResolver.query(uri, projection, selection, null, null);
|
/cts/tests/tests/provider/src/android/provider/cts/contacts/ |
DataUtil.java | 35 public static String[] queryById(ContentResolver resolver, long dataId, String[] projection) { 37 Cursor cursor = resolver.query(uri, projection, null, null, null);
|
/external/eigen/test/eigen2/ |
eigen2_parametrizedline.cpp | 41 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) ); 42 VERIFY_IS_MUCH_SMALLER_THAN( l0.distance(l0.projection(p1)), RealScalar(1) );
|