HomeSort by relevance Sort by last modified time
    Searched refs:notepad (Results 1 - 11 of 11) sorted by null

  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadActivityTest.java 17 package com.example.android.notepad;
20 import com.example.android.notepad.NotesList;
NotePadProviderTest.java 17 package com.example.android.notepad;
49 Uri.withAppendedPath(NotePad.Notes.CONTENT_URI, "invalid");
101 super(NotePadProvider.class, NotePad.AUTHORITY);
151 NotePad.Notes.TABLE_NAME, // the table name for the insert
152 NotePad.Notes.COLUMN_NAME_TITLE, // column set to null if empty values map
165 String mimeType = mMockResolver.getType(NotePad.Notes.CONTENT_URI);
166 assertEquals(NotePad.Notes.CONTENT_TYPE, mimeType);
169 mimeType = mMockResolver.getType(NotePad.Notes.LIVE_FOLDER_URI);
170 assertEquals(NotePad.Notes.CONTENT_TYPE, mimeType);
173 Uri noteIdUri = ContentUris.withAppendedId(NotePad.Notes.CONTENT_ID_URI_BASE, 1)
    [all...]
  /development/samples/NotePad/src/com/example/android/notepad/
NotesLiveFolder.java 17 package com.example.android.notepad;
19 import com.example.android.notepad.NotePad;
66 liveFolderIntent.setData(NotePad.Notes.LIVE_FOLDER_URI);
94 = new Intent(Intent.ACTION_EDIT, NotePad.Notes.CONTENT_ID_URI_PATTERN);
NotePad.java 17 package com.example.android.notepad;
28 public final class NotePad {
29 public static final String AUTHORITY = "com.google.provider.NotePad";
32 private NotePad() {
TitleEditor.java 17 package com.example.android.notepad;
41 public static final String EDIT_TITLE_ACTION = "com.android.notepad.action.EDIT_TITLE";
45 NotePad.Notes._ID, // 0
46 NotePad.Notes.COLUMN_NAME_TITLE, // 1
144 values.put(NotePad.Notes.COLUMN_NAME_TITLE, mText.getText().toString());
NotesList.java 17 package com.example.android.notepad;
19 import com.example.android.notepad.NotePad;
61 NotePad.Notes._ID, // 0
62 NotePad.Notes.COLUMN_NAME_TITLE, // 1
88 intent.setData(NotePad.Notes.CONTENT_URI);
108 NotePad.Notes.DEFAULT_SORT_ORDER // Use the default sort order.
120 String[] dataColumns = { NotePad.Notes.COLUMN_NAME_TITLE } ;
147 * mimeTYpe NotePad.Notes.CONTENT_TYPE. If they do this, the code in onCreateOptionsMenu()
255 * this triggers the NoteEditor activity in the NotePad application
    [all...]
NotePadProvider.java 17 package com.example.android.notepad;
19 import com.example.android.notepad.NotePad;
82 NotePad.Notes._ID, // Projection position 0, the note's id
83 NotePad.Notes.COLUMN_NAME_NOTE, // Projection position 1, the note's content
84 NotePad.Notes.COLUMN_NAME_TITLE, // Projection position 2, the note's title
123 sUriMatcher.addURI(NotePad.AUTHORITY, "notes", NOTES);
127 sUriMatcher.addURI(NotePad.AUTHORITY, "notes/#", NOTE_ID);
131 sUriMatcher.addURI(NotePad.AUTHORITY, "live_folders/notes", LIVE_FOLDER_NOTES);
142 sNotesProjectionMap.put(NotePad.Notes._ID, NotePad.Notes._ID)
    [all...]
NoteEditor.java 17 package com.example.android.notepad;
61 NotePad.Notes._ID,
62 NotePad.Notes.COLUMN_NAME_TITLE,
63 NotePad.Notes.COLUMN_NAME_NOTE
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)
    [all...]
  /external/smali/
README.md 9 - [#smali on freenode](http://webchat.freenode.net/?channels=smali) - Free free to drop by and ask a question. Don't expect an instant response, but if you hang around someone will respond. Think of it more in terms of.. multi-player notepad.
  /external/chromium_org/sandbox/win/src/
job_unittest.cc 166 wchar_t notepad[] = L"notepad"; local
169 result = ::CreateProcess(NULL, notepad, NULL, NULL, FALSE, 0, NULL, NULL, &si,
  /external/chromium_org/remoting/host/win/
worker_process_launcher_unittest.cc 337 WCHAR notepad[MAX_PATH + 1]; local
339 L"\045SystemRoot\045\\system32\\notepad.exe", notepad, MAX_PATH), 0u);
346 notepad,

Completed in 1690 milliseconds