Home
last modified time | relevance | path

Searched refs:COLUMN_NAME_TITLE (Results 1 – 10 of 10) sorted by relevance

/development/samples/NotePad/tests/src/com/example/android/notepad/
DNotePadProviderTest.java152 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/
DTitleEditor.java48 NotePad.Notes.COLUMN_NAME_TITLE, // 1
174 values.put(NotePad.Notes.COLUMN_NAME_TITLE, newTitle); in saveTitle()
DNotePadProvider.java79 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()
DNoteEditor.java61 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()
DNotePad.java134 public static final String COLUMN_NAME_TITLE = "title"; field in NotePad.Notes
DNotesList.java61 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/
DFeedContract.java78 public static final String COLUMN_NAME_TITLE = "title"; field in FeedContract.Entry
DFeedProvider.java227 FeedContract.Entry.COLUMN_NAME_TITLE + TYPE_TEXT + COMMA_SEP +
/development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/
DSyncAdapter.java91 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()
DEntryListFragment.java94 FeedContract.Entry.COLUMN_NAME_TITLE,
114 FeedContract.Entry.COLUMN_NAME_TITLE,