HomeSort by relevance Sort by last modified time
    Searched refs:KEY_TITLE (Results 1 - 25 of 27) sorted by null

1 2

  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 39 public static final String KEY_TITLE = "title";
122 initialValues.put(KEY_TITLE, title);
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null,
183 args.put(KEY_TITLE, title);
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java 39 public static final String KEY_TITLE = "title";
122 initialValues.put(KEY_TITLE, title);
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null,
183 args.put(KEY_TITLE, title);
Notepadv1.java 70 String[] from = new String[] { NotesDbAdapter.KEY_TITLE };
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 39 public static final String KEY_TITLE = "title";
122 initialValues.put(KEY_TITLE, title);
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null,
183 args.put(KEY_TITLE, title);
Notepadv2.java 57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 39 public static final String KEY_TITLE = "title";
122 initialValues.put(KEY_TITLE, title);
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null,
183 args.put(KEY_TITLE, title);
Notepadv2.java 59 String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
119 i.putExtra(NotesDbAdapter.KEY_TITLE, c.getString(
120 c.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE);
NoteEdit.java 45 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
62 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString());
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java 39 public static final String KEY_TITLE = "title";
122 initialValues.put(KEY_TITLE, title);
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null,
183 args.put(KEY_TITLE, title);
Notepadv3.java 59 String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
119 i.putExtra(NotesDbAdapter.KEY_TITLE, c.getString(
120 c.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
132 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
140 String editTitle = extras.getString(NotesDbAdapter.KEY_TITLE);
NoteEdit.java 45 String title = extras.getString(NotesDbAdapter.KEY_TITLE);
62 bundle.putString(NotesDbAdapter.KEY_TITLE, mTitleText.getText().toString());
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java 39 public static final String KEY_TITLE = "title";
122 initialValues.put(KEY_TITLE, title);
146 return mDb.query(DATABASE_TABLE, new String[] {KEY_ROWID, KEY_TITLE,
162 KEY_TITLE, KEY_BODY}, KEY_ROWID + "=" + rowId, null,
183 args.put(KEY_TITLE, title);
NoteEdit.java 71 note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
Notepadv3.java 57 String[] from = new String[]{NotesDbAdapter.KEY_TITLE};
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDebug.java 52 private static final String KEY_TITLE = "title";
158 android.R.layout.simple_list_item_2, new String[]{KEY_TITLE, KEY_TEXT},
184 itemMap.put(KEY_TITLE, title);
  /packages/apps/Settings/src/com/android/settings/quicklaunch/
BookmarkPicker.java 80 private static final String KEY_TITLE = "TITLE";
82 private static final String sKeys[] = new String[] { KEY_TITLE, KEY_RESOLVE_INFO };
226 map.put(KEY_TITLE, getResolveInfoTitle(info));
  /packages/apps/Settings/src/com/android/settings/bluetooth/
ConnectSpecificProfilesActivity.java 42 private static final String KEY_TITLE = "title";
90 findPreference(KEY_TITLE).setTitle(
  /external/qemu/
linux_keycodes.h 364 #define KEY_TITLE 0x171
  /bionic/libc/kernel/common/linux/
input.h 428 #define KEY_TITLE 0x171
  /external/bluetooth/bluez/common/
uinput.h 413 #define KEY_TITLE 0x171
  /ndk/build/platforms/android-3/arch-arm/usr/include/linux/
input.h 428 #define KEY_TITLE 0x171
  /ndk/build/platforms/android-4/arch-arm/usr/include/linux/
input.h 428 #define KEY_TITLE 0x171
  /ndk/build/platforms/android-5/arch-arm/usr/include/linux/
input.h 428 #define KEY_TITLE 0x171
  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
input.h 428 #define KEY_TITLE 0x171
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
input.h 428 #define KEY_TITLE 0x171

Completed in 319 milliseconds

1 2