Home
last modified time | relevance | path

Searched refs:TABLE_NAME (Results 1 – 11 of 11) sorted by relevance

/frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DTrackerProvider.java41 private static final String TABLE_NAME = "tracking"; field in TrackerProvider
58 queryBuilder.append(String.format("CREATE TABLE %s (", TABLE_NAME)); in onCreate()
72 db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME); in onUpgrade()
88 int result = db.delete(TABLE_NAME, selection, selectionArgs); in delete()
101 long rowId = db.insert(TABLE_NAME, null, values); in insert()
115 Cursor cursor = db.query(TABLE_NAME, projection, selection, in query()
/frameworks/base/docs/html-intl/intl/zh-cn/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
198 FeedEntry.TABLE_NAME,
238 FeedEntry.TABLE_NAME, // The table to query
312 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/docs/html-intl/intl/ru/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
198 FeedEntry.TABLE_NAME,
238 FeedEntry.TABLE_NAME, // The table to query
312 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/docs/html-intl/intl/zh-tw/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
198 FeedEntry.TABLE_NAME,
238 FeedEntry.TABLE_NAME, // The table to query
312 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/docs/html-intl/intl/ko/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
198 FeedEntry.TABLE_NAME,
238 FeedEntry.TABLE_NAME, // The table to query
312 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/docs/html-intl/intl/ja/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
198 FeedEntry.TABLE_NAME,
238 FeedEntry.TABLE_NAME, // The table to query
312 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/core/tests/coretests/src/android/database/sqlite/
DSQLiteCursorTest.java32 private static final String TABLE_NAME = "testCursor"; field in SQLiteCursorTest
45 mDatabase.execSQL("CREATE TABLE " + TABLE_NAME + " (i int, j int);"); in setUp()
/frameworks/base/docs/html/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
199 FeedEntry.TABLE_NAME,
239 FeedEntry.TABLE_NAME, // The table to query
313 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/docs/html-intl/intl/pt-br/training/basics/data-storage/
Ddatabases.jd83 public static final String TABLE_NAME = "entry";
104 "CREATE TABLE " + FeedEntry.TABLE_NAME + " (" +
112 "DROP TABLE IF EXISTS " + FeedEntry.TABLE_NAME;
198 FeedEntry.TABLE_NAME,
238 FeedEntry.TABLE_NAME, // The table to query
312 FeedReaderDbHelper.FeedEntry.TABLE_NAME,
/frameworks/base/core/java/android/provider/
DCalendarContract.java2221 public static final String TABLE_NAME = "CalendarAlerts"; field in CalendarContract.CalendarAlerts
2492 public static final String TABLE_NAME = "Colors"; field in CalendarContract.Colors
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java3285 private static String TABLE_NAME = "table_name"; field in AccountManagerService.DebugDbHelper
3314 + TABLE_NAME + " TEXT NOT NULL," in createDebugTable()