Home | History | Annotate | Download | only in notepad

Lines Matching refs:Notes

61             NotePad.Notes._ID,
62 NotePad.Notes.COLUMN_NAME_TITLE,
63 NotePad.Notes.COLUMN_NAME_NOTE
201 * Using the URI passed in with the triggering Intent, gets the note or notes in
209 mUri, // The URI that gets multiple notes from the provider.
270 int colTitleIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE);
289 int colNoteIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE);
412 int colNoteIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE);
481 if (uri != null && NotePad.Notes.CONTENT_ITEM_TYPE.equals(cr.getType(uri))) {
496 int colNoteIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_NOTE);
497 int colTitleIndex = mCursor.getColumnIndex(NotePad.Notes.COLUMN_NAME_TITLE);
528 values.put(NotePad.Notes.COLUMN_NAME_MODIFICATION_DATE, System.currentTimeMillis());
553 values.put(NotePad.Notes.COLUMN_NAME_TITLE, title);
556 values.put(NotePad.Notes.COLUMN_NAME_TITLE, title);
559 // This puts the desired notes text into the map.
560 values.put(NotePad.Notes.COLUMN_NAME_NOTE, text);
594 values.put(NotePad.Notes.COLUMN_NAME_NOTE, mOriginalContent);