Home
last modified time | relevance | path

Searched refs:projection (Results 1 – 25 of 59) sorted by relevance

123

/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowCursorLoader.java14 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()
DShadowMapView.java38 private Projection projection; field in ShadowMapView
104 if (projection == null) { in getProjection()
105 projection = new Projection() { in getProjection()
127 return projection; in getProjection()
DShadowContentResolver.java118 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/
DCursorLoaderTest.java18 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()
DContentResolverTest.java157 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/
DSimpleTestCursor.java10 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()
DTestCursor.java210 …public void setQuery(Uri uri, String[] projection, String selection, String[] selectionArgs, Strin… in setQuery() argument
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
DEABProvider.java264 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()
DEABService.java442 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()
DDatabaseContentProvider.java319 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/
Dshear.c222 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/
DMapField.cs676 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/
DFieldVector.java230 FieldVector<T> projection(FieldVector<T> v) in projection() method
238 FieldVector<T> projection(T[] v) in projection() method
DRealVector.java871 RealVector projection(RealVector v); in projection() method
879 RealVector projection(double[] v); in projection() method
DArrayFieldVector.java592 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
DArrayRealVector.java918 public RealVector projection(RealVector v) { in projection() method in ArrayRealVector
924 public RealVector projection(double[] v) { in projection() method in ArrayRealVector
925 return projection(new ArrayRealVector(v, false)); in projection()
933 public ArrayRealVector projection(ArrayRealVector v) { in projection() method in ArrayRealVector
/external/eigen/test/
Dgeo_parametrizedline.cpp41 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/
Dfullscreen.css16 @media screen, projection, print {
/external/vulkan-validation-layers/libs/glm/gtx/
Dprojection.inl7 // File : glm/gtx/projection.inl
/external/svox/pico/src/com/svox/pico/providers/
DSettingsProvider.java81 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument
/external/swiftshader/third_party/PowerVR_SDK/Examples/Intermediate/DisplacementMap/OGLES2/
DVertShader.vsh23 Transform position by the model-view-projection matrix but first
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/telephony/
DMmsFileProvider.java41 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument
/external/mesa3d/docs/specs/
DMESA_window_pos.spec32 coordinate with the RasterPos command, the modelview matrix, projection
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/provider/
DTelephonyTestProvider.java50 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, in query() argument
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/android/database/
DSimpleTestCursorTest.java41 assertThat(cursor.projection[0], equalTo("projection")); in doingQueryShouldMakeQueryParamsAvailable()

123