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

1 2

  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteProgramTest.java 31 private static final String DATABASE_NAME = "database_test.db";
39 getContext().deleteDatabase(DATABASE_NAME);
40 mDatabase = getContext().openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null);
47 getContext().deleteDatabase(DATABASE_NAME);
SQLiteStatementTest.java 48 private static final String DATABASE_NAME = "database_test.db";
57 getContext().deleteDatabase(DATABASE_NAME);
58 mDatabase = getContext().openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null);
66 getContext().deleteDatabase(DATABASE_NAME);
DatabaseStatementTest.java 41 private static final String DATABASE_NAME = "database_test.db";
50 getContext().deleteDatabase(DATABASE_NAME);
51 mDatabase = getContext().openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null);
59 getContext().deleteDatabase(DATABASE_NAME);
  /development/samples/training/threadsample/src/com/example/android/threadsample/
DataProviderContract.java 95 public static final String DATABASE_NAME = "PictureDataDB";
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java 54 private static final String DATABASE_NAME = "data";
63 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
NotesDbAdapter.java 54 private static final String DATABASE_NAME = "data";
63 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
NotesDbAdapter.java 54 private static final String DATABASE_NAME = "data";
63 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NotesDbAdapter.java 54 private static final String DATABASE_NAME = "data";
63 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NotesDbAdapter.java 54 private static final String DATABASE_NAME = "data";
63 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NotesDbAdapter.java 54 private static final String DATABASE_NAME = "data";
63 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /cts/tests/tests/content/src/android/content/cts/
DummyProvider.java 40 private static final String DATABASE_NAME = "dummy.db";
79 super(context, DATABASE_NAME, null, DATABASE_VERSION);
ContextWrapperTest.java 317 String DATABASE_NAME = "databasetest";
318 String DATABASE_NAME1 = DATABASE_NAME + "1";
319 String DATABASE_NAME2 = DATABASE_NAME + "2";
365 mDatabaseFile = mContextWrapper.getDatabasePath(DATABASE_NAME + i);
367 mContextWrapper.deleteDatabase(DATABASE_NAME + i);
368 mDatabaseFile = new File(actualDBPath, DATABASE_NAME + i);
    [all...]
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
LocationDbHelper.java 62 public static final String DATABASE_NAME = "Location.db";
65 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
LocationDbHelper.java 62 public static final String DATABASE_NAME = "Location.db";
65 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
RssContentProvider.java 40 private static final String DATABASE_NAME = "rssitems.db";
106 mDb = mDbHelper.openDatabase(getContext(), DATABASE_NAME, null, DB_VERSION);
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 48 private static final String DATABASE_NAME = "dictionary";
176 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
LocationDbHelper.java 62 public static final String DATABASE_NAME = "Location.db";
65 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtils_InsertHelperTest.java 30 private static final String DATABASE_NAME = "database_test.db";
38 getContext().deleteDatabase(DATABASE_NAME);
39 mDatabase = getContext().openOrCreateDatabase(DATABASE_NAME, Context.MODE_PRIVATE, null);
48 getContext().deleteDatabase(DATABASE_NAME);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResultsProvider.java 93 private static final String DATABASE_NAME = "results.db";
98 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 217 public static final String DATABASE_NAME = "feed.db";
236 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 217 public static final String DATABASE_NAME = "feed.db";
236 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 217 public static final String DATABASE_NAME = "feed.db";
236 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
LoaderThrottle.java 120 private static final String DATABASE_NAME = "loader_throttle.db";
126 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 61 private static final String DATABASE_NAME = "note_pad.db";
184 super(context, DATABASE_NAME, null, DATABASE_VERSION);
  /development/samples/Support4Demos/src/com/example/android/supportv4/app/
LoaderThrottleSupport.java 121 private static final String DATABASE_NAME = "loader_throttle.db";
127 super(context, DATABASE_NAME, null, DATABASE_VERSION);

Completed in 6437 milliseconds

1 2