Home
last modified time | relevance | path

Searched refs:matrixCursor (Results 1 – 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
DPhoneLookupWithStarPrefix.java69 final MatrixCursor matrixCursor = new MatrixCursor(cursor.getColumnNames()); in removeNonStarMatchesFromCursor() local
72 Cursor unreturnedMatrixCursor = matrixCursor; in removeNonStarMatchesFromCursor()
84 final MatrixCursor.RowBuilder b = matrixCursor.newRow(); in removeNonStarMatchesFromCursor()
91 return matrixCursor; in removeNonStarMatchesFromCursor()
168 final MatrixCursor matrixCursor = new MatrixCursor(cursor.getColumnNames()); in removeNoMatchPhoneNumber() local
175 final MatrixCursor.RowBuilder b = matrixCursor.newRow(); in removeNoMatchPhoneNumber()
182 return matrixCursor; in removeNoMatchPhoneNumber()
/packages/apps/Dialer/java/com/android/dialer/searchfragment/directories/
DDirectoryContactsCursorLoader.java105 MatrixCursor matrixCursor = new MatrixCursor(cursor.getColumnNames()); in createMatrixCursorFilteringNullNumbers() local
113 matrixCursor.addRow(objectArrayFromCursor(cursor)); in createMatrixCursorFilteringNullNumbers()
119 return matrixCursor; in createMatrixCursorFilteringNullNumbers()
/packages/apps/Calendar/src/com/android/calendar/widget/
DCalendarAppWidgetService.kt500 val matrixCursor: MatrixCursor? = Utils.matrixCursorFromCursor(cursor) in onLoadComplete() constant
502 mModel = buildAppWidgetModel(mContext, matrixCursor, tz) in onLoadComplete()
504 if (matrixCursor != null) { in onLoadComplete()
505 matrixCursor.close() in onLoadComplete()