/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowCursorLoader.java | 14 private String[] projection; field in ShadowCursorLoader 23 …public void __constructor__(Context context, Uri uri, String[] projection, String selection, Strin… in __constructor__() argument 26 this.projection = projection; in __constructor__() 44 return projection; in getProjection() 48 public void setProjection(String[] projection) { in setProjection() argument 49 this.projection = projection; in setProjection()
|
D | ShadowMapView.java | 38 private Projection projection; field in ShadowMapView 104 if (projection == null) { in getProjection() 105 projection = new Projection() { in getProjection() 127 return projection; in getProjection()
|
D | ShadowContentResolver.java | 118 public final Cursor query(Uri uri, String[] projection, String selection, 122 return provider.query(uri, projection, selection, selectionArgs, sortOrder); 129 returnCursor.setQuery(uri, projection, selection, selectionArgs,
|
/external/robolectric-shadows/shadows/supportv4/src/test/java/org/robolectric/shadows/support/v4/ |
D | ShadowCursorLoaderTest.java | 17 String[] projection = new String[] { "_id", "TestColumn" }; in testGetters() local 23 projection, in testGetters() 29 assertThat(cursorLoader.getProjection()).isEqualTo(projection); in testGetters() 38 String[] projection = new String[] { "_id", "TestColumn" }; in testSetters() local 44 cursorLoader.setProjection(projection); in testSetters() 50 assertThat(cursorLoader.getProjection()).isEqualTo(projection); in testSetters()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | CursorLoaderTest.java | 18 String[] projection = new String[] { "_id", "TestColumn" }; in testGetters() local 24 projection, in testGetters() 30 assertThat(cursorLoader.getProjection(), equalTo(projection)); in testGetters() 39 String[] projection = new String[] { "_id", "TestColumn" }; in testSetters() local 45 cursorLoader.setProjection(projection); in testSetters() 51 assertThat(cursorLoader.getProjection(), equalTo(projection)); in testSetters()
|
D | ContentResolverTest.java | 157 String[] projection = {}; in query__shouldKnowWhatItsParamsWere() local 165 …Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder… in query__shouldKnowWhatItsParamsWere() 168 assertThat(testCursor.projection, equalTo(projection)); in query__shouldKnowWhatItsParamsWere() 325 …@Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionAr… in shouldDelegateCallsToRegisteredProvider() 357 public String[] projection; field in ContentResolverTest.QueryParamTrackingTestCursor 363 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument 365 this.projection = projection; in setQuery()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/ |
D | SimpleTestCursor.java | 10 public String[] projection; field in SimpleTestCursor 20 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument 22 this.projection = projection; in setQuery()
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
D | ShadowContentProviderClient.java | 51 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, in query() argument 53 return provider.query(url, projection, selection, selectionArgs, sortOrder); in query() 57 public Cursor query(Uri url, String[] projection, String selection, String[] selectionArgs, in query() argument 59 return provider.query(url, projection, selection, selectionArgs, sortOrder, cancellationSignal); in query()
|
D | ShadowContentResolver.java | 218 Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder) { 221 return provider.query(uri, projection, selection, selectionArgs, sortOrder); 228 returnCursor.setQuery(uri, projection, selection, selectionArgs, sortOrder); 236 String[] projection, 244 uri, projection, selection, selectionArgs, sortOrder, cancellationSignal); 251 returnCursor.setQuery(uri, projection, selection, selectionArgs, sortOrder);
|
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/ |
D | RoboCursor.java | 14 public String[] projection; field in RoboCursor 25 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument 27 this.projection = projection; in setQuery()
|
/external/tensorflow/tensorflow/contrib/image/kernels/ |
D | image_ops.h | 60 float projection = transform[6] * output_x + transform[7] * output_y + 1.f; in operator() local 63 projection; in operator() 66 projection; in operator()
|
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/ |
D | EABProvider.java | 264 protected Cursor queryInternal(SQLiteDatabase db, Uri uri, String[] projection, in queryInternal() argument 301 return getContext().getContentResolver().query(Contacts.CONTENT_URI, projection, in queryInternal() 321 return qb.query(db, projection, selection, selectionArgs, groupBy, having, sortOrder); in queryInternal() 413 String[] projection = new String[] { in verifyIfMdnExists() local 429 projection, whereClause, selectionArgs, null); in verifyIfMdnExists() 486 String[] projection = new String[] { in printDeletingValues() local 493 projection, selection, selectionArgs, null); in printDeletingValues()
|
D | EABService.java | 442 String[] projection = new String[] { in checkForContactNumberChanges() local 461 projection, selection, null, sortOrder); in checkForContactNumberChanges() 590 String[] projection = new String[] { ContactsContract.Data._ID, in checkForPhoneNumberDelete() local 612 ContactsContract.Data.CONTENT_URI, projection, in checkForPhoneNumberDelete() 713 String[] projection = new String[] { in checkForDeletedContact() local 726 ContactsContract.DeletedContacts.CONTENT_URI, projection, in checkForDeletedContact() 757 String[] projection = new String[] { in checkForProfileNumberChanges() local 781 Cursor cursor = getContentResolver().query(entiryUri, projection, selection, null, in checkForProfileNumberChanges() 922 String[] projection = new String[] { in checkForDeletedProfileContacts() local 939 Cursor cursor = getContentResolver().query(entiryUri, projection, selection, null, null); in checkForDeletedProfileContacts()
|
D | DatabaseContentProvider.java | 319 protected abstract Cursor queryInternal(final SQLiteDatabase db, Uri uri, String[] projection, in queryInternal() argument 323 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument 332 return queryInternal(db, uri, projection, selection, selectionArgs, sortOrder); in query()
|
/external/ImageMagick/MagickCore/ |
D | shear.c | 222 MatrixInfo *destination_matrixs,const ssize_t sign,size_t *projection) in RadonProjection() argument 326 projection[GetMatrixColumns(p)+sign*x-1]=sum; in RadonProjection() 331 const double threshold,size_t *projection,ExceptionInfo *exception) in RadonTransform() argument 441 RadonProjection(image,source_matrixs,destination_matrixs,-1,projection); in RadonTransform() 498 RadonProjection(image,source_matrixs,destination_matrixs,1,projection); in RadonTransform() 595 *projection, in DeskewImage() local 605 projection=(size_t *) AcquireQuantumMemory((size_t) (2*width-1), in DeskewImage() 606 sizeof(*projection)); in DeskewImage() 607 if (projection == (size_t *) NULL) in DeskewImage() 609 status=RadonTransform(image,threshold,projection,exception); in DeskewImage() [all …]
|
/external/tensorflow/tensorflow/docs_src/programmers_guide/ |
D | embedding.md | 92 projection. 113 - *Custom*: a linear projection onto horizontal and vertical axes that you 133 points are also highlighted in the projection. 152 Advanced tip: filtering with custom projection can be powerful. Below, we 164 …/www.tensorflow.org/images/embedding-custom-projection.png" alt="Custom projection" title="Custom … 169 Custom projection controls. 172 Custom projection of neighbors of "politics" onto "best" - "worst" vector. 179 projection) as a small file. The Projector can then be pointed to a set of one
|
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/ |
D | ShadowContentResolverTest.java | 96 …@Override public Cursor query(Uri uri, String[] projection, String selection, String[] selectionAr… in getType_shouldReturnProviderValue() 228 String[] projection = {}; in query_shouldKnowWhatItsParamsWere() local 236 …Cursor cursor = shadowContentResolver.query(uri21, projection, selection, selectionArgs, sortOrder… in query_shouldKnowWhatItsParamsWere() 239 assertThat(testCursor.projection).isEqualTo(projection); in query_shouldKnowWhatItsParamsWere() 348 public Cursor query(Uri uri, String[] projection, String selection, in applyBatchForRegisteredProvider() 592 …public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String… in shouldDelegateCallsToRegisteredProvider() 762 public String[] projection; field in ShadowContentResolverTest.QueryParamTrackingCursor 768 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument 770 this.projection = projection; in setQuery()
|
/external/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | MapField.cs | 676 private readonly Func<KeyValuePair<TKey, TValue>, T> projection; field in Google.Protobuf.Collections.MapField.MapView 681 Func<KeyValuePair<TKey, TValue>, T> projection, in MapView() argument 685 this.projection = projection; in MapView() 730 return parent.list.Select(projection).GetEnumerator(); in GetEnumerator()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/ |
D | FieldVector.java | 230 FieldVector<T> projection(FieldVector<T> v) in projection() method 238 FieldVector<T> projection(T[] v) in projection() method
|
D | RealVector.java | 871 RealVector projection(RealVector v); in projection() method 879 RealVector projection(double[] v); in projection() method
|
/external/eigen/test/ |
D | geo_parametrizedline.cpp | 41 VERIFY_IS_APPROX( (l0.projection(p1)-p1).norm(), l0.distance(p1) ); in parametrizedline() 42 VERIFY_IS_MUCH_SMALLER_THAN( l0.distance(l0.projection(p1)), RealScalar(1) ); in parametrizedline()
|
/external/doclava/res/assets/templates-sdk/assets/css/ |
D | fullscreen.css | 16 @media screen, projection, print {
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | projection.inl | 7 // File : glm/gtx/projection.inl
|
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/ |
D | VertShader.vsh | 23 Transform position by the model-view-projection matrix but first
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/ |
D | MmsFileProvider.java | 41 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument
|