OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matrixCursor
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/
MusicProvider.java
19
import android.database.
MatrixCursor
;
159
public
MatrixCursor
getRootContainerCurser() {
160
MatrixCursor
matrixCursor
= new
MatrixCursor
(BrowserService.MEDIA_CONTAINER_PROJECTION);
164
matrixCursor
.addRow(new Object[] {
175
matrixCursor
.addRow(new Object[] {
182
return
matrixCursor
;
185
public
MatrixCursor
getRootItemCursor(int type) {
187
MatrixCursor
matrixCursor = new MatrixCursor(BrowserService.MEDIA_CONTAINER_PROJECTION)
[
all
...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
PhoneLookupWithStarPrefix.java
21
import android.database.
MatrixCursor
;
68
final
MatrixCursor
matrixCursor
= new
MatrixCursor
(cursor.getColumnNames());
71
Cursor unreturnedMatrixCursor =
matrixCursor
;
82
// Copy row from cursor into
matrixCursor
83
final
MatrixCursor
.RowBuilder b =
matrixCursor
.newRow();
90
return
matrixCursor
;
/developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
AssetProvider.java
25
import android.database.
MatrixCursor
;
147
MatrixCursor
matrixCursor
= new
MatrixCursor
(projection, 1);
164
matrixCursor
.addRow(row);
165
return
matrixCursor
;
/packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetService.java
29
import android.database.
MatrixCursor
;
496
MatrixCursor
matrixCursor
= Utils.matrixCursorFromCursor(cursor);
498
mModel = buildAppWidgetModel(mContext,
matrixCursor
, tz);
500
if (
matrixCursor
!= null) {
501
matrixCursor
.close();
/packages/apps/Calendar/src/com/android/calendar/event/
EditEventFragment.java
34
import android.database.
MatrixCursor
;
331
MatrixCursor
matrixCursor
= Utils.matrixCursorFromCursor(cursor);
334
+
matrixCursor
.getCount() + " calendars");
336
mView.setCalendarsCursor(
matrixCursor
, isAdded() && isResumed(),
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/providers/protos/mock/
MockUiProvider.java
22
import android.database.
MatrixCursor
;
424
final
MatrixCursor
matrixCursor
=
428
MatrixCursor
.RowBuilder rowBuilder =
matrixCursor
.newRow();
434
return
matrixCursor
;
Completed in 182 milliseconds