/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/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/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/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
|
D | ArrayFieldVector.java | 592 public FieldVector<T> projection(FieldVector<T> v) { in projection() method in ArrayFieldVector 597 public FieldVector<T> projection(T[] v) { in projection() method in ArrayFieldVector 598 return projection(new ArrayFieldVector<T>(v, false)); in projection() 606 public ArrayFieldVector<T> projection(ArrayFieldVector<T> v) { in projection() method in ArrayFieldVector
|
/external/icu/tools/srcgen/currysrc/libs/ |
D | org.eclipse.text_3.5.400.v20150505-1044.jar | ... text/
org/eclipse/jface/text/projection/
org/eclipse/jface/text/link ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.text_3.5.0.v20100601-1300.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/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/svox/pico/src/com/svox/pico/providers/ |
D | SettingsProvider.java | 81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument
|
/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
|
/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/mesa3d/docs/ |
D | MESA_window_pos.spec | 32 coordinate with the RasterPos command, the modelview matrix, projection
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/android/database/ |
D | SimpleTestCursorTest.java | 41 assertThat(cursor.projection[0], equalTo("projection")); in doingQueryShouldMakeQueryParamsAvailable()
|