Searched refs:COLUMN_NAME_TITLE (Results 1 – 10 of 10) sorted by relevance
/development/samples/NotePad/tests/src/com/example/android/notepad/ |
D | NotePadProviderTest.java | 152 NotePad.Notes.COLUMN_NAME_TITLE, // column set to null if empty values map in insertData() 425 NotePad.Notes.COLUMN_NAME_TITLE, in testQueriesOnNotesUri() 432 final String TITLE_SELECTION = NotePad.Notes.COLUMN_NAME_TITLE + " = " + "?"; in testQueriesOnNotesUri() 442 final String SORT_ORDER = NotePad.Notes.COLUMN_NAME_TITLE + " ASC"; in testQueriesOnNotesUri() 534 final String SELECTION_COLUMNS = NotePad.Notes.COLUMN_NAME_TITLE + " = " + "?"; in testQueriesOnNoteIdUri() 540 final String SORT_ORDER = NotePad.Notes.COLUMN_NAME_TITLE + " ASC"; in testQueriesOnNoteIdUri() 547 NotePad.Notes.COLUMN_NAME_TITLE}; // The note's title in testQueriesOnNoteIdUri() 657 int titleIndex = cursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE); in testInserts() 696 final String SELECTION_COLUMNS = NotePad.Notes.COLUMN_NAME_TITLE + " = " + "?"; in testDeletes() 748 final String SELECTION_COLUMNS = NotePad.Notes.COLUMN_NAME_TITLE + " = " + "?"; in testUpdates() [all …]
|
/development/samples/NotePad/src/com/example/android/notepad/ |
D | TitleEditor.java | 48 NotePad.Notes.COLUMN_NAME_TITLE, // 1 174 values.put(NotePad.Notes.COLUMN_NAME_TITLE, newTitle); in saveTitle()
|
D | NotePadProvider.java | 79 NotePad.Notes.COLUMN_NAME_TITLE, // Projection position 2, the note's title 133 sNotesProjectionMap.put(NotePad.Notes.COLUMN_NAME_TITLE, NotePad.Notes.COLUMN_NAME_TITLE); in sNotesProjectionMap.put() argument 170 + NotePad.Notes.COLUMN_NAME_TITLE + " TEXT," in onCreate() 500 if (values.containsKey(NotePad.Notes.COLUMN_NAME_TITLE) == false) { in insert() 502 values.put(NotePad.Notes.COLUMN_NAME_TITLE, r.getString(android.R.string.untitled)); in insert()
|
D | NoteEditor.java | 61 NotePad.Notes.COLUMN_NAME_TITLE, 437 int colTitleIndex = orig.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE); in performPaste() 493 values.put(NotePad.Notes.COLUMN_NAME_TITLE, title); in updateNote() 496 values.put(NotePad.Notes.COLUMN_NAME_TITLE, title); in updateNote() 568 int colTitleIndex = cursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE); in onLoadFinished()
|
D | NotePad.java | 134 public static final String COLUMN_NAME_TITLE = "title"; field in NotePad.Notes
|
D | NotesList.java | 61 NotePad.Notes.COLUMN_NAME_TITLE, // 1 109 String[] dataColumns = { NotePad.Notes.COLUMN_NAME_TITLE } ; in onCreate()
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/ |
D | FeedContract.java | 78 public static final String COLUMN_NAME_TITLE = "title"; field in FeedContract.Entry
|
D | FeedProvider.java | 227 FeedContract.Entry.COLUMN_NAME_TITLE + TYPE_TEXT + COMMA_SEP +
|
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/ |
D | SyncAdapter.java | 91 FeedContract.Entry.COLUMN_NAME_TITLE, 253 .withValue(FeedContract.Entry.COLUMN_NAME_TITLE, match.title) in updateLocalFeedData() 277 .withValue(FeedContract.Entry.COLUMN_NAME_TITLE, e.title) in updateLocalFeedData()
|
D | EntryListFragment.java | 94 FeedContract.Entry.COLUMN_NAME_TITLE, 114 FeedContract.Entry.COLUMN_NAME_TITLE,
|