/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
NinePatchedImageTest.java | 774 Projection[][] projections = null; local 775 projections = image.getProjections(width, height, projections); 777 assertEquals(chunks.length, projections.length); 779 assertEquals(chunks[i].length, projections[i].length); 782 for (int y = 0; y < projections.length; y++) { 783 for (int x = 0; x < projections[y].length; x++) { 784 assertEquals(projections[y][x].src, chunks[y][x].rect); 788 if (projections[y][x].chunk.type == Chunk.TYPE_FIXED) { 789 assertEquals(projections[y][x].dest.width, chunks[y][x].rect.width) [all...] |
/packages/apps/TV/tests/common/src/com/android/tv/testing/ |
ChannelUtils.java | 56 String[] projections = new String[ChannelInfo.PROJECTION.length + 1]; local 57 projections[0] = Channels._ID; 58 System.arraycopy(ChannelInfo.PROJECTION, 0, projections, 1, ChannelInfo.PROJECTION.length); 60 .query(uri, projections, null, null, null)) {
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
ContactsDictionaryConstants.java | 27 * Projections for {@link Contacts.CONTENT_URI}
|
/cts/tests/tests/content/src/android/content/cts/ |
AsyncQueryHandlerTest.java | 65 private static final String[] PROJECTIONS = new String[] { 132 cursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, ORDER_BY); 149 PROJECTIONS, null, null, ORDER_BY, NO_CANCEL); 174 PROJECTIONS, null, null, ORDER_BY, CANCELABLE); 207 cursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, ORDER_BY); 247 cursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, ORDER_BY); 334 DummyProvider.CONTENT_URI_MOCK_OPERATION, PROJECTIONS, null, null, ORDER_BY);
|
ContentQueryMapTest.java | 50 private static final String[] PROJECTIONS = new String[] { 75 mCursor = mResolver.query(DummyProvider.CONTENT_URI, PROJECTIONS, null, null, null);
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
XmlDocumentProvider.java | 56 * Each row is then populated with columns that are also defined as XPath-like projections. These 57 * projections fetch attributes values or text in the matching row node or its children. 123 * <p>Defining the projections as <code>/title</code>, <code>/author</code> and <code>@id</code> 340 public XMLCursor(String selection, String[] projections) { 341 super(projections); 342 // The first column in projections is used for the _ID 343 mNumberOfProjections = projections.length - 1; 345 createProjectionPattern(projections); 353 private void createProjectionPattern(String[] projections) { 362 String projection = projections[i + 1]; // +1 to skip the _ID colum [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/graphics/ |
NinePatchedImage.java | 174 private static final void recycleProjections(Projection[][] projections, List<Projection> bin) { 175 int yLen = projections.length; 178 xLen = projections[0].length; 184 bin.add(projections[y][x]); 186 projections[y][x] = null; 717 public Projection[][] getProjections(int width, int height, Projection[][] projections) { 730 if (projections == null) { 731 projections = new Projection[lenY][lenX]; 733 int y = projections.length; 734 int x = projections[0].length [all...] |
/external/v8/src/compiler/ |
node-properties.cc | 255 void NodeProperties::CollectControlProjections(Node* node, Node** projections, 259 std::memset(projections, 0, sizeof(*projections) * projection_count); 296 DCHECK_NULL(projections[index]); 297 projections[index] = use; 301 DCHECK_NOT_NULL(projections[index]);
|
control-flow-optimizer.cc | 131 // Grab the IfTrue/IfFalse projections of the Branch.
|
/frameworks/base/core/java/android/provider/ |
SearchRecentSuggestions.java | 93 /** Index into the provided query projections. For use with Cursor.update methods. */ 95 /** Index into the provided query projections. For use with Cursor.update methods. */ 97 /** Index into the provided query projections. For use with Cursor.update methods. */ 99 /** Index into the provided query projections. For use with Cursor.update methods. */
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
UIProviderValidator.java | 28 * A helper class to validate projections for the UIProvider queries.
|
/packages/apps/TV/src/com/android/tv/dvr/provider/ |
DvrDatabaseHelper.java | 83 public Cursor query(String tableName, String[] projections) { 87 return builder.query(db, projections, null, null, null, null, null);
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
GroupsTest.java | 115 Projections.PROJ_SUMMARY, null, null, null); 121 final long groupId = cursor.getLong(Projections.COL_ID); 122 final int summaryCount = cursor.getInt(Projections.COL_SUMMARY_COUNT); 123 final int summaryWithPhones = cursor.getInt(Projections.COL_SUMMARY_WITH_PHONES); 215 private interface Projections {
|
ContactsActor.java | 639 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_RAW_CONTACTS, null, 645 final long aggId = cursor.getLong(Projections.COL_CONTACTS_ID); 654 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null, 665 final Cursor cursor = resolver.query(contactUri, Projections.PROJ_ID, null, null, 715 * Various internal database projections. 717 private interface Projections {
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForGroupMembership.java | 29 import com.android.providers.contacts.ContactsDatabaseHelper.Projections; 230 Cursor c = db.query(Tables.GROUPS, Projections.ID,
|
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/ |
sparse_weight_vector.cpp | 307 // For ref. see "Efficient Projections into the l1-ball for Learning 378 // entire vector. This stops projections from sending the vector
|
/external/opencv3/modules/calib3d/include/opencv2/ |
calib3d.hpp | 122 projections. 458 The function computes projections of 3D points to the image plane given intrinsic and extrinsic 496 of squared distances between the observed projections imagePoints and the projected (using 512 projections, as well as the camera matrix and the distortion coefficients. 551 is the maximum allowed distance between the observed and computed point projections to consider it 558 projections, as well as the camera matrix and the distortion coefficients. This function finds such 560 projections imagePoints and the projected (using projectPoints ) objectPoints. The use of RANSAC 579 @param imagePoints Vector of vectors of the projections of the calibration pattern points. In the [all...] |
/external/opencv/cvaux/src/ |
cvfindhandregion.cpp | 107 /* alloc memory for the point's projections on the line */ 327 /* alloc memory for the point's projections on the line */
|
/packages/apps/TV/src/com/android/tv/search/ |
TvProviderSearch.java | 496 String[] projections = new String[] { local 502 try (Cursor c = mContentResolver.query(uri, projections, selection, selectionArgs,
|
/cts/tests/app/src/android/app/cts/ |
AlertDialog_BuilderCursorTest.java | 113 // Two projections - one with "checked" column and one without
|
/external/chromium-trace/catapult/dashboard/dashboard/ |
update_test_suites.py | 111 """Fetches Tests with deprecated and description projections."""
|
list_tests.py | 85 # Faster to fetch by keys than by projections.
|
/frameworks/base/docs/html/training/graphics/opengl/ |
projection.jd | 48 onSurfaceChanged()} method of your renderer. For more information about OpenGL ES projections and
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
BucketHelper.java | 50 // The indices should match the above projections.
|
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/ |
field_mask.proto | 55 // # Field Masks in Projections
|