/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockCorpora.java | 19 import android.database.DataSetObservable; 20 import android.database.DataSetObserver;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
DataRowHandlerForCommonDataKind.java | 22 import android.database.Cursor; 23 import android.database.sqlite.SQLiteDatabase;
|
DataRowHandlerForEmail.java | 23 import android.database.Cursor; 24 import android.database.sqlite.SQLiteDatabase;
|
DataRowHandlerForNickname.java | 23 import android.database.Cursor; 24 import android.database.sqlite.SQLiteDatabase;
|
ReorderingCursorWrapper.java | 18 import android.database.AbstractCursor; 19 import android.database.Cursor;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/ |
DbQueryUtils.java | 19 import android.database.DatabaseUtils; 25 * Static methods for helping us build database query selection strings.
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MediaProvider.java | 43 import android.database.Cursor; 44 import android.database.DatabaseUtils; 45 import android.database.MatrixCursor; 46 import android.database.sqlite.SQLiteDatabase; 47 import android.database.sqlite.SQLiteOpenHelper; 48 import android.database.sqlite.SQLiteQueryBuilder; 243 // If secondary external storage is ejected, then we delete all database 246 DatabaseHelper database = mDatabases.get(EXTERNAL_VOLUME); 248 if (database != null) { 251 // on these Intents for coarse grained media database notifications 3166 DatabaseHelper database = getDatabaseForUri( local 3735 DatabaseHelper database = getDatabaseForUri( local 3765 DatabaseHelper database = getDatabaseForUri(uri); local 4237 DatabaseHelper database = getDatabaseForUri(uri); local 4282 DatabaseHelper database = getDatabaseForUri(uri); local 5021 DatabaseHelper database = mDatabases.get(volume); local [all...] |
/frameworks/base/core/java/android/database/sqlite/ |
SQLiteConnection.java | 17 package android.database.sqlite; 22 import android.database.Cursor; 23 import android.database.CursorWindow; 24 import android.database.DatabaseUtils; 25 import android.database.sqlite.SQLiteDebug.DbStats; 40 * Represents a SQLite database connection. 43 * When database connection pooling is enabled, there can be multiple active 44 * connections to the same database. Otherwise there is typically only one 45 * connection per database. 48 * can concurrently access the database. Without WAL, readers and writer [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
DatabaseCursorTest.java | 17 package android.database.cts; 21 import android.database.Cursor; 22 import android.database.CursorIndexOutOfBoundsException; 23 import android.database.CursorWrapper; 24 import android.database.DataSetObserver; 25 import android.database.DatabaseUtils; 26 import android.database.sqlite.SQLiteCursor; 27 import android.database.sqlite.SQLiteCursorDriver; 28 import android.database.sqlite.SQLiteDatabase; 29 import android.database.sqlite.SQLiteQuery [all...] |
/external/chromium/chrome/browser/safe_browsing/ |
filter_false_positive_perftest.cc | 8 // It uses a normal SafeBrowsing database to create a bloom filter where it 10 // bloom filter and found in the database is considered a hit: a valid lookup 12 // bloom filter but not in the database is a miss: a false positive lookup that 28 // database value. 46 // chrome/test/data/safe_browsing/filter/database 49 // database: A normal SafeBrowsing database. 123 // Reads the set of add prefixes contained in a SafeBrowsing database into a 127 FilePath database_file = path.Append(FILE_PATH_LITERAL("database")); 254 // See if the prefix is actually in the database (in-memory prefix list) [all...] |
safe_browsing_service.cc | 212 // We need to check the database for url prefix, and later may fetch the url 233 // We need to check the database for url prefix, and later may fetch the url 322 // check before the database has finished loading. 496 // request, and if any functions on the db thread recreate the database, we 501 // case the database will be recreated before our deletion request is 506 // CheckUrl(), which will want the database. Closing the database here 534 // database isn't going to be closed properly, which could lead to corruption. 599 // If we don't do this here we may fail to close the database below. 612 // Close the database. We don't simply DeleteSoon() because if a close i 676 SafeBrowsingDatabase* database = local [all...] |
/frameworks/base/docs/html/about/versions/ |
android-4.0.3.jd | 61 <li><a href="#database">Database</a></li> 79 <p>The database table that contains an individual contact?s social stream is 226 <h3 id="database">Database</h3> 229 <li>A new {@link android.database.CrossProcessCursorWrapper} class lets content 232 processes remotely. It can also transform normal {@link android.database.Cursor} 233 objects into {@link android.database.CrossProcessCursor} objects 236 <p>The {@link android.database.CrossProcessCursorWrapper} class fixes common 240 <li>The {@link android.database.CursorWindow#CursorWindow(java.lang.String) [all...] |
/frameworks/base/docs/html/guide/topics/providers/ |
content-provider-creating.jd | 68 {@link android.database.Cursor} 128 You <em>don't</em> need a provider to use an SQLite database if the use is entirely within 158 Data that normally goes into a database, array, or similar structure. 162 store this type of data is in an SQLite database, but you can use any type of 206 The Android system includes an SQLite database API that Android's own providers use 208 {@link android.database.sqlite.SQLiteOpenHelper} class helps you create databases, and the 209 {@link android.database.sqlite.SQLiteDatabase} class is the base class for accessing 212 Remember that you don't have to use a database to implement your repository. A provider 213 appears externally as a set of tables, similar to a relational database, but this is 227 store such as a database, and then offer the data as tables or files [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/ |
TestResultsProvider.java | 25 import android.database.Cursor; 26 import android.database.sqlite.SQLiteDatabase; 27 import android.database.sqlite.SQLiteOpenHelper; 28 import android.database.sqlite.SQLiteQueryBuilder;
|
/cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/ |
PermissionContentProvider.java | 21 import android.database.Cursor;
|
PermissionContentProviderGranting.java | 21 import android.database.Cursor;
|
PermissionContentProviderPathRestricting.java | 21 import android.database.Cursor;
|
PrivateContentProvider.java | 21 import android.database.Cursor;
|
PrivateContentProviderGranting.java | 21 import android.database.Cursor;
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
AutoComplete5.java | 23 import android.database.Cursor;
|
/development/samples/NotePad/ |
_index.html | 5 <li>Accessing a database</li>
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
WeatherDataProvider.java | 26 import android.database.Cursor; 27 import android.database.MatrixCursor; 34 * will be stored in an external and persistent location (ie. File, Database, SharedPreferences) so 62 * Database, SharedPreferences) so that the data can persist if the process is ever killed.
|
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
UrlImageBinder.java | 20 import android.database.Cursor;
|
/external/chromium/chrome/browser/ |
DEPS | 20 "+webkit/database",
|
/external/chromium/chrome/browser/autofill/ |
autofill_type.h | 17 // and for associating form fields with form values in the Web Database.
|