/external/webkit/Source/WebCore/storage/ |
SQLException.h | 34 #if ENABLE(DATABASE) 70 #endif // ENABLE(DATABASE)
|
SQLStatementSync.h | 34 #if ENABLE(DATABASE) 61 #endif // ENABLE(DATABASE)
|
SQLTransactionClient.h | 34 #if ENABLE(DATABASE) 56 #endif // ENABLE(DATABASE)
|
/external/webkit/Source/WebCore/storage/chromium/ |
DatabaseObserver.h | 34 #if ENABLE(DATABASE) 55 #endif // ENABLE(DATABASE)
|
QuotaTracker.h | 34 #if ENABLE(DATABASE) 65 #endif // ENABLE(DATABASE)
|
/frameworks/base/core/java/android/util/ |
TimeUtils.java | 116 * Returns a String indicating the version of the time zone database currently 118 * database implementation, but will typically contain the year in which the database 121 * <p>Time zone database updates should be expected to occur periodically due to 124 * the results may differ following a time zone database update. This method allows 125 * applications to detect that a database change has occurred, and to recalculate any 128 * <p>The time zone database may be assumed to change only when the device runtime 129 * is restarted. Therefore, it is not necessary to re-query the database version
|
/frameworks/base/core/java/android/webkit/ |
WebIconDatabase.java | 20 import android.database.Cursor; 32 * Functions for manipulating the icon database used by WebView. 183 * Interface for receiving icons from the database. 187 * Called when the icon has been retrieved from the database and the 196 * Open a the icon database and store the icons in the given path. 197 * @param path The directory path where the icon database will be stored. 212 * Close the shared instance of the icon database. 220 * Removes all the icons in the database.
|
/frameworks/base/core/java/android/widget/ |
BaseAdapter.java | 19 import android.database.DataSetObservable; 20 import android.database.DataSetObserver;
|
/frameworks/base/core/jni/ |
android_database_SQLiteQuery.cpp | 40 sqlite3* database = reinterpret_cast<sqlite3*>(databasePtr); local 51 throw_sqlite3_exception(env, database); 168 LOGE("Unknown column type when filling database window"); 187 LOG_WINDOW("Database locked, retrying"); 189 LOGE("Bailing on database busy retry"); 190 throw_sqlite3_exception(env, database, "retrycount exceeded"); 198 throw_sqlite3_exception(env, database); 242 "android/database/sqlite/SQLiteQuery", sMethods, NELEM(sMethods));
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
ListManagedCursor.java | 21 import android.database.Cursor; 47 // Map the NAME column in the people database to...
|
/frameworks/base/docs/html/sdk/api_diff/11/changes/ |
constructors_index_changes.html | 57 <nobr><A HREF="android.widget.CursorAdapter.html#android.widget.CursorAdapter.ctor_changed(android.content.Context, android.database.Cursor)" class="hiddenlink" target="rightframe">CursorAdapter 75 <nobr><A HREF="android.widget.ResourceCursorAdapter.html#android.widget.ResourceCursorAdapter.ctor_changed(android.content.Context, int, android.database.Cursor)" class="hiddenlink" target="rightframe">ResourceCursorAdapter 84 <nobr><A HREF="android.widget.SimpleCursorAdapter.html#android.widget.SimpleCursorAdapter.ctor_changed(android.content.Context, int, android.database.Cursor, java.lang.String[], int[])" class="hiddenlink" target="rightframe">SimpleCursorAdapter 86 <nobr><A HREF="android.database.sqlite.SQLiteCursor.html#android.database.sqlite.SQLiteCursor.ctor_changed(android.database.sqlite.SQLiteDatabase, android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)" class="hiddenlink" target="rightframe">SQLiteCursor
|
/packages/apps/Browser/src/com/android/browser/provider/ |
SnapshotProvider.java | 26 import android.database.Cursor; 27 import android.database.DatabaseUtils; 28 import android.database.sqlite.SQLiteDatabase; 29 import android.database.sqlite.SQLiteOpenHelper; 30 import android.database.sqlite.SQLiteQueryBuilder; 38 * This provider is expected to be potentially flaky. It uses a database 127 // another thread is busy attempting to open the database 128 // or use the database. Let that thread try to gracefully
|
/packages/apps/Browser/tests/src/com/android/browser/tests/ |
BookmarksTests.java | 23 import android.database.Cursor; 28 * and to get the mock database
|
/packages/apps/QuickSearchBox/tests/spammy/src/com/android/quicksearchbox/tests/spammy/ |
SpammySuggestionProvider.java | 23 import android.database.Cursor; 24 import android.database.MatrixCursor;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ProfileDatabaseHelper.java | 21 import android.database.sqlite.SQLiteDatabase; 25 * A separate version of the contacts database helper for storing the user's profile data.
|
VoicemailTable.java | 22 import android.database.Cursor; 34 * Interface that the voicemail content provider uses to delegate database level operations
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
LegacyContactImporterTest.java | 20 import android.database.Cursor; 21 import android.database.DatabaseUtils; 22 import android.database.sqlite.SQLiteDatabase; 91 SQLiteDatabase database = SQLiteDatabase.openOrCreateDatabase(tempDbPath, null); local 104 database.execSQL(command); 109 "Database Version not set. Be sure to add " + 111 database.getVersion() != 0); 113 database.close();
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ResourceCursorTreeAdapterTest.java | 28 import android.database.Cursor; 86 args = {android.content.Context.class, android.database.Cursor.class, int.class, 93 args = {android.content.Context.class, android.database.Cursor.class, int.class, 99 args = {android.content.Context.class, android.database.Cursor.class, int.class, 129 args = {android.content.Context.class, android.database.Cursor.class, boolean.class, 156 args = {android.content.Context.class, android.database.Cursor.class, boolean.class,
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8InjectedScriptHostCustom.cpp | 34 #include "Database.h" 126 #if ENABLE(DATABASE) 128 Database* database = V8Database::toNative(v8::Handle<v8::Object>::Cast(args[0])); local 129 if (database) 130 return v8::Number::New(host->databaseIdImpl(database));
|
/external/webkit/Source/WebCore/dom/ |
ScriptExecutionContext.h | 51 #if ENABLE(DATABASE) 52 class Database; 75 #if ENABLE(DATABASE) 81 // When the database cleanup is done, cleanupSync will be signalled. 201 #if ENABLE(DATABASE) 203 bool m_hasOpenDatabases; // This never changes back to false, even after the database thread is closed.
|
/frameworks/base/docs/html/sdk/api_diff/3/changes/ |
pkg_android.database.html | 10 android.database 74 Package <A HREF="../../../../reference/android/database/package-summary.html" target="_top"><font size="+1"><code>android.database</code></font></A> 85 <nobr><A HREF="android.database.Cursor.html"><I>Cursor</I></A></nobr> 92 <nobr><A HREF="android.database.CursorWrapper.html">CursorWrapper</A></nobr> 99 <nobr><A HREF="android.database.DatabaseUtils.html">DatabaseUtils</A></nobr>
|
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
pkg_android.database.html | 10 android.database 74 Package <A HREF="../../../../reference/android/database/package-summary.html" target="_top"><font size="+1"><code>android.database</code></font></A> 85 <nobr><A HREF="android.database.AbstractWindowedCursor.html">AbstractWindowedCursor</A></nobr> 92 <nobr><A HREF="android.database.CursorWindow.html">CursorWindow</A></nobr> 99 <nobr><A HREF="android.database.DatabaseUtils.html">DatabaseUtils</A></nobr>
|
/libcore/luni/src/test/java/libcore/sqlite/ |
AbstractSqlTest.java | 82 * @exception SQLException if there is a problem accessing the database 119 * @throws SQLException if there is a problem accessing the database 136 * @throws SQLException if there is a problem accessing the database 162 * @throws SQLException if there is a problem accessing the database 181 * @throws SQLException if there is a problem accessing the database 197 * @throws SQLException if there is a problem accessing the database
|
/external/webkit/Source/WebCore/inspector/front-end/ |
ResourcesPanel.js | 30 WebInspector.ResourcesPanel = function(database) 46 this.databasesListTreeElement = new WebInspector.StorageCategoryTreeElement(this, WebInspector.UIString("Databases"), "Databases", ["database-storage-tree-item"]); 135 var database = this._databases[i]; 136 delete database._tableViews; 137 delete database._queryView; 284 addDatabase: function(database) 286 this._databases.push(database); 288 var databaseTreeElement = new WebInspector.DatabaseTreeElement(this, database); 289 database._databasesTreeElement = databaseTreeElement; 324 var database; [all...] |
/frameworks/support/v4/java/android/support/v4/widget/ |
SimpleCursorAdapter.java | 20 import android.database.Cursor; 77 * @param c The database cursor. Can be null if the cursor is not available yet. 102 * {@link ViewBinder#setViewValue(android.view.View, android.database.Cursor, int)} 113 * android.content.Context, android.database.Cursor) 158 * @see #bindView(android.view.View, android.content.Context, android.database.Cursor) 171 * @see #bindView(android.view.View, android.content.Context, android.database.Cursor) 188 * retrieved from the database. 207 * retrieved from the database. 222 * @see android.widget.CursorAdapter#convertToString(android.database.Cursor) 240 * @see android.widget.CursorAdapter#convertToString(android.database.Cursor [all...] |