HomeSort by relevance Sort by last modified time
    Searched full:database (Results 1126 - 1150 of 2940) sorted by null

<<41424344454647484950>>

  /external/webkit/Source/WebKit/gtk/po/
ko.po 295 msgid "Web Database Usage"
303 msgid "Web Database Quota"
307 msgid "The web database quota of the security origin in bytes"
336 msgid "The security origin of the database"
344 msgid "The name of the Web Database database"
352 msgid "The display name of the Web Storage database"
360 msgid "The expected size of the Web Database database"
368 msgid "The current size of the Web Database database
    [all...]
  /cts/tests/src/android/content/cts/
MockContentProvider.java 34 import android.database.Cursor;
35 import android.database.SQLException;
36 import android.database.sqlite.SQLiteDatabase;
37 import android.database.sqlite.SQLiteOpenHelper;
38 import android.database.sqlite.SQLiteQueryBuilder;
  /cts/tests/tests/database/src/android/database/cts/
CursorWindowTest.java 17 package android.database.cts;
19 import android.database.CharArrayBuffer;
20 import android.database.CursorWindow;
21 import android.database.MatrixCursor;
22 import android.database.sqlite.SQLiteException;
  /external/chromium/chrome/browser/search_engines/
template_url_model.h 41 // persisted to the database maintained by WebDataService. *ALL* mutations
44 // database in sync.
279 // This does NOT notify the delegate or the database.
387 // obtained from the Profile. This allows us to lazily access the database.
426 // increasing integer that is initialized from the database.
  /external/chromium/chrome/browser/ui/gtk/
gtk_chrome_cookie_view.cc 97 // Database details.
130 // Database accessed item.
322 // Database details.
412 // Database accessed prompt.
528 // Switches the display to showing the passed in database.
  /external/webkit/Source/WebCore/storage/
IDBObjectStoreBackendImpl.cpp 243 // FIXME: The Indexed Database specification does not have an error code dedicated to I/O errors.
252 continue; // The index object has been created, but does not exist in the database yet.
255 // FIXME: The Indexed Database specification does not have an error code dedicated to I/O errors.
262 // FIXME: The Indexed Database specification does not have an error code dedicated to I/O errors.
297 continue; // The index object has been created, but does not exist in the database yet.
StorageTracker.cpp 112 LOG_ERROR("Failed to create database file '%s'", databasePath.ascii().data());
171 LOG_ERROR("Failed to read in all origins from the database.");
376 LOG_ERROR("Failed to read in all origins from the database.");
382 // In the case where it is not possible to delete the database file (e.g some other program
422 // Before deleting database, we need to clear in-memory local storage data
  /frameworks/base/docs/html/training/notepad/
notepad-ex3.jd 41 to access the notes from the database directly. All we need passed into the
132 <p>We will take care of storing the updates or new notes in the database
233 We will use this to save the current note back to the database. Good
237 to read the note out of the database again and populate the fields.</p>
281 database.</p>
  /packages/experimental/StrictModeTest/src/com/android/strictmodetest/
StrictModeActivity.java 33 import android.database.Cursor;
34 import android.database.SQLException;
35 import android.database.sqlite.SQLiteDatabase;
120 } catch (android.database.sqlite.SQLiteException e) {
447 // The database will take care of replacing duplicates.
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
methods_index_all.html 151 &nbsp;&nbsp;<nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.compile_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
152 (<code>String, boolean</code>)&nbsp;in&nbsp;android.database.sqlite.SQLiteProgram
164 <nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.cursorDoubleToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)" class="hiddenlink" target="rightframe"><b>cursorDoubleToContentValuesIfPresent</b>
166 <nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.cursorFloatToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)" class="hiddenlink" target="rightframe"><b>cursorFloatToContentValuesIfPresent</b>
168 <nobr><A HREF="android.database.DatabaseUtils.html#android.database.DatabaseUtils.cursorIntToContentValuesIfPresent_added(android. (…)
    [all...]
methods_index_changes.html 96 &nbsp;&nbsp;<nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.compile_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">type&nbsp;
97 (<code>String, boolean</code>)&nbsp;in&nbsp;android.database.sqlite.SQLiteProgram
219 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_compile_changed(java.lang.String)" class="hiddenlink" target="rightframe">native_compile
221 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.native_finalize_changed()" class="hiddenlink" target="rightframe">native_finalize
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 22 import android.database.Cursor;
23 import android.database.sqlite.SQLiteDatabase;
54 // Contains an SQLite database, used as test data
106 * gets the provider under test, and creates a new database for the provider.
117 * Gets a handle to the database underlying the provider. Gets the provider instance
119 * a database object from the helper.
135 * The test data is in an SQL database. It is created in setUp() without any data,
139 // Creates an instance of the ContentValues map type expected by database insertions
149 // Adds a record to the database.
    [all...]
  /frameworks/base/core/java/android/webkit/
WebSettings.java 923 * Sets the path to where database storage API databases should be saved.
924 * Note that the WebCore Database Tracker only allows the path to be set once.
936 * Sets the path where the Geolocation permissions database should be saved.
939 * permissions database should be saved. May be the
979 * Sets whether the database storage API is enabled.
981 * @param flag true if the WebView should use the database storage API
    [all...]
  /packages/apps/Email/src/com/android/email/
NotificationController.java 29 import android.database.ContentObserver;
30 import android.database.Cursor;
231 * database changes, we save the state [e.g. message ID and count] of the most recent
232 * notification shown to the user. And, when we start observing database changes, we restore
398 * NOTE: DO NOT CALL THIS METHOD FROM THE UI THREAD (DATABASE ACCESS)
430 * NOTE: DO NOT CALL THIS METHOD FROM THE UI THREAD (DATABASE ACCESS)
689 * NOTE: DO NOT CALL THIS METHOD FROM THE UI THREAD (DATABASE ACCESS)
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/16/changes/
alldiffs_index_all.html 87 <A HREF="android.database.AbstractCursor.html" class="hiddenlink" target="rightframe">AbstractCursor</A><br>
327 <!-- Package android.database -->
328 <A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
329 <!-- Package android.database.sqlite -->
330 <A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
    [all...]
methods_index_additions.html 173 <nobr><A HREF="android.database.sqlite.SQLiteClosable.html#android.database.sqlite.SQLiteClosable.close_added()" class="hiddenlink" target="rightframe"><b>close</b>
208 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.deleteDatabase_added(java.io.File)" class="hiddenlink" target="rightframe"><b>deleteDatabase</b>
222 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.disableWriteAheadLogging_added()" class="hiddenlink" target="rightframe"><b>disableWriteAheadLogging</b>
227 &nbsp;&nbsp;<nobr><A HREF="android.database.ContentObservable.html#android.database.ContentObservable.dispatchChange_added(boolean, android.net.Uri)" class="hiddenlink" target="rightframe">type&nbsp;<b>
228 (<code>boolean, Uri</code>)</b>&nbsp;in&nbsp;android.database.ContentObservable
230 &nbsp;&nbsp;<nobr><A HREF="android.database.ContentObserver.html#android.database.ContentObserver.dispatchChange_added(boolean, android.net.Ur (…)
    [all...]
alldiffs_index_changes.html 80 <A HREF="android.database.AbstractCursor.html" class="hiddenlink" target="rightframe">AbstractCursor</A><br>
191 <!-- Package android.database -->
192 <A HREF="pkg_android.database.html" class="hiddenlink" target="rightframe">android.database</A><br>
193 <!-- Package android.database.sqlite -->
194 <A HREF="pkg_android.database.sqlite.html" class="hiddenlink" target="rightframe">android.database.sqlite</A><br>
384 &nbsp;&nbsp;<nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.close_changed()" class="hiddenlink" target="rightframe">type&nbsp;
385 ()&nbsp;in&nbsp;android.database.CursorWindo
    [all...]
  /frameworks/base/core/java/android/database/
DatabaseUtils.java 17 package android.database;
24 import android.database.sqlite.SQLiteAbortException;
25 import android.database.sqlite.SQLiteConstraintException;
26 import android.database.sqlite.SQLiteDatabase;
27 import android.database.sqlite.SQLiteDatabaseCorruptException;
28 import android.database.sqlite.SQLiteDiskIOException;
29 import android.database.sqlite.SQLiteException;
30 import android.database.sqlite.SQLiteFullException;
31 import android.database.sqlite.SQLiteProgram;
32 import android.database.sqlite.SQLiteStatement
    [all...]
  /external/chromium/chrome/browser/history/
in_memory_url_index.h 78 // Holds portions of the URL database in memory in an indexed form. Used to
86 // words and characters in the URL history database except when converting
98 // |history_dir| is a path to the directory containing the history database
107 // Opens and indexes the URL history database.
255 // from the cache or a complete rebuild from the history database.
354 // the history database is kept and saves that path to |file_path|. Returns
377 // the same directory in which the profile's history database is found. It
expire_history_backend_unittest.cc 474 // database manager are removed.
482 // When checking the file, the database must be closed. We then re-initialize
505 // Run the text database expirer. This will flush any pending entries so we
601 // database manager are removed.
612 // Run the text database expirer. This will flush any pending entries so we
659 // database manager are removed.
671 // Run the text database expirer. This will flush any pending entries so we
772 // Make sure the archived database has nothing in it.
782 // Make sure the archived database has an entry for the second URL.
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
BuildsView.java 54 * View to see all the builds which have performance results stored in the database.
488 // Look whether database constants has changed or not
530 // No database preferences has changed do nothing
534 // Update database constants
541 MessageDialog.openError(this.shell, getTitleToolTip(), "Error while updating database results constants!\nOpen error log to see more details on this error");
544 StringBuffer message = new StringBuffer("Database connection has been correctly ");
548 MessageDialog.openError(this.shell, getTitleToolTip(), "The database connection cannot be established!\nOpen error log to see more details on this error");
  /frameworks/base/telephony/java/com/android/internal/telephony/
CallerInfo.java 20 import android.database.Cursor;
222 // in the database.
248 * getCallerInfo given a URI, look up in the call-log database
262 * getCallerInfo given a phone number, look up in the call-log database
304 * could be a PSTN number in the contact database.
443 * Watch out: be sure to not do any database access in this method, since
450 * test, since we'll need a live contacts database to test against,
  /packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java 32 import android.database.Cursor;
371 // Test with an attached database, attachment entry found, but no attachment found
391 // Test with an attached database, attachment entry found - returns a file
424 // Test with an attached database, but no attachment found
434 // Test with an attached database, attachment entry found, but no attachment found
450 // Test with an attached database, attachment entry found - returns a thumbnail
690 * Record an attachment in the attachments database
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarAlarmManager.java 28 import android.database.Cursor;
29 import android.database.sqlite.SQLiteDatabase;
235 * needs to schedule. This method runs within a database transaction. It
239 * a database table called CalendarAlerts which persists across reboots. But
251 * database table is that it makes it easy to run an SQL query to find the
254 * @param db the database
288 // Extract events from the database sorted by alarm time. The
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DownloadList.java 27 import android.database.ContentObserver;
28 import android.database.Cursor;
29 import android.database.DataSetObserver;
160 // only attach everything to the listbox if we can access the download database. Otherwise,
660 * Requery the database and update the UI.
683 * Called when there's a change to the downloads database.
701 * Check if any of the selected downloads have been deleted from the downloads database, and

Completed in 498 milliseconds

<<41424344454647484950>>