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

<<21222324252627282930>>

  /frameworks/base/docs/html/sdk/api_diff/5/changes/
pkg_android.database.sqlite.html 10 android.database.sqlite
74 Package <A HREF="../../../../reference/android/database/sqlite/package-summary.html" target="_top"><font size="+1"><code>android.database.sqlite</code></font></A>
85 <nobr><A HREF="../../../../reference/android/database/sqlite/SQLiteTransactionListener.html" target="_top"><code><I>SQLiteTransactionListener</I></code></A></nobr>
100 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html">SQLiteDatabase</A></nobr>
  /frameworks/base/docs/html/sdk/api_diff/8/changes/
pkg_android.database.sqlite.html 10 android.database.sqlite
74 Package <A HREF="../../../../reference/android/database/sqlite/package-summary.html" target="_top"><font size="+1"><code>android.database.sqlite</code></font></A>
85 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html">SQLiteDatabase</A></nobr>
92 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html">SQLiteProgram</A></nobr>
  /libcore/luni/src/main/java/java/sql/
SQLData.java 31 * and can store changes back into the database using the
58 * if a database error occurs.
63 * Reads data from the database into this object. This method follows these
87 * if a database error occurs.
110 * if a database error occurs.
  /packages/apps/SoundRecorder/res/values/
strings.xml 53 <!-- the name under which recordings will be visible in the media database is formatted like this -->
55 <!-- all recordings will show up in the media database with this 'artist' name -->
57 <!-- all recordings will show up in the media database with this 'album' name -->
59 <!-- all recordings will show up in the media database in a playlist with this name -->
68 <!-- shown as the message in a dialog when the recording could not be added to the media database -->
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
UserHistoryDictionary.java 22 import android.database.Cursor;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
25 import android.database.sqlite.SQLiteQueryBuilder;
62 * Database version should increase if the database structure changes
68 /** Name of the words table in the database */
77 /** Name of the frequency table in the database */
152 // Don't close the database as locale changes will require it to be reopened anyway
153 // Also, the database is written to somewhat frequently, so it needs to be kept aliv
    [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/db/
DB_Results.java 38 * to get massive results from performance results database.
70 * Get the name of the database.
80 * Set the name of the database.
90 * Get the location of the database.
101 * Set the location of the database.
120 * Set the baseline prefix of the database.
131 * Get the baseline reference version of the database.
141 * Get the version of the database.
151 * Set the version of the database.
162 * Update the database constants from a new database location
    [all...]
  /external/chromium/app/sql/
connection.h 77 // The tipical usage is to centralize the code designed to handle database
107 // The database is opened by calling Open[InMemory](). Any uncommitted
114 // Sets the page size that will be used when creating a new database. This
128 // Call to put the database in exclusive locking mode. There is no "back to
133 // Exclusive mode means that the database is not unlocked at the end of each
153 // Initializes the SQL connection for a temporary in-memory database. There
154 // will be no associated file on disk, and the initial database will be
158 // Returns trie if the database has been successfully opened.
161 // Closes the database. This is automatically performed on destruction for
162 // you, but this allows you to close the database early. You must not cal
    [all...]
  /frameworks/base/docs/html/guide/topics/data/
data-storage.jd 49 <dd>Store structured data in a private database.</dd>
371 <p>The recommended method to create a new SQLite database is to create a subclass of {@link
372 android.database.sqlite.SQLiteOpenHelper} and override the {@link
373 android.database.sqlite.SQLiteOpenHelper#onCreate(SQLiteDatabase) onCreate()} method, in which you
374 can execute a SQLite command to create tables in the database. For example:</p>
397 <p>You can then get an instance of your {@link android.database.sqlite.SQLiteOpenHelper}
398 implementation using the constructor you've defined. To write to and read from the database, call
399 {@link android.database.sqlite.SQLiteOpenHelper#getWritableDatabase()} and {@link
400 android.database.sqlite.SQLiteOpenHelper#getReadableDatabase()}, respectively. These both return a
401 {@link android.database.sqlite.SQLiteDatabase} object that represents the database an
    [all...]
  /frameworks/base/docs/html/sdk/api_diff/11/changes/
constructors_index_all.html 91 &nbsp;&nbsp;<nobr><A HREF="android.widget.CursorAdapter.html#android.widget.CursorAdapter.ctor_added(android.content.Context, android.database.Cursor, int)" class="hiddenlink" target="rightframe"><b>CursorAdapter</b>
93 &nbsp;&nbsp;<nobr><A HREF="android.widget.CursorAdapter.html#android.widget.CursorAdapter.ctor_changed(android.content.Context, android.database.Cursor)" class="hiddenlink" target="rightframe">CursorAdapter
184 &nbsp;&nbsp;<nobr><A HREF="android.widget.ResourceCursorAdapter.html#android.widget.ResourceCursorAdapter.ctor_added(android.content.Context, int, android.database.Cursor, int)" class="hiddenlink" target="rightframe"><b>ResourceCursorAdapter</b>
186 &nbsp;&nbsp;<nobr><A HREF="android.widget.ResourceCursorAdapter.html#android.widget.ResourceCursorAdapter.ctor_changed(android.content.Context, int, android.database.Cursor)" class="hiddenlink" target="rightframe">ResourceCursorAdapter
204 &nbsp;&nbsp;<nobr><A HREF="android.widget.SimpleCursorAdapter.html#android.widget.SimpleCursorAdapter.ctor_added(android.content.Context, int, android.database.Cursor, java.lang.String[], int[], int)" class="hiddenlink" target="rightframe"><b>SimpleCursorAdapter</b>
206 &nbsp;&nbsp;<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
214 &nbsp;&nbsp;<nobr><A HREF="android.database.sqlite.SQLiteCursor.html#android.database.sqlite.SQLiteCursor.ctor_added(android.database.sqlite.SQLiteCursorDriver, java.lang.String, android.database.sqlite.SQLiteQuery)" class="hiddenlink" target="rightframe"><b>SQLiteCursor</b
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 22 import android.database.Cursor;
23 import android.database.sqlite.SQLiteDatabase;
24 import android.database.sqlite.SQLiteOpenHelper;
  /cts/tests/tests/database/src/android/database/cts/
ContentObservableTest.java 17 package android.database.cts;
20 import android.database.ContentObservable;
21 import android.database.ContentObserver;
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_GenresTest.java 22 import android.database.Cursor;
23 import android.database.SQLException;
90 // the internal database does not have genres
  /external/neven/FaceRecEm/common/src/b_FDSDK/
Types.h 88 /** database arrangement type */
91 /** database entries are arranged in one coherent memory block without spaces */
94 /** database entries are arbitrarily distributed in memory and are referenced through pointers */
  /external/webkit/Source/WebCore/inspector/
InstrumentingAgents.h 70 #if ENABLE(DATABASE)
112 #if ENABLE(DATABASE)
143 #if ENABLE(DATABASE)
  /external/webkit/Source/WebCore/storage/
IDBDatabaseBackendImpl.h 47 static PassRefPtr<IDBDatabaseBackendImpl> create(const String& name, IDBBackingStore* database, IDBTransactionCoordinator* coordinator, IDBFactoryBackendImpl* factory, const String& uniqueIdentifier)
49 return adoptRef(new IDBDatabaseBackendImpl(name, database, coordinator, factory, uniqueIdentifier));
73 IDBDatabaseBackendImpl(const String& name, IDBBackingStore* database, IDBTransactionCoordinator*, IDBFactoryBackendImpl*, const String& uniqueIdentifier);
  /external/webkit/Source/WebKit/chromium/public/
WebPasswordFormData.h 63 // data from the database, so it must not be empty.
68 // fashion) whether or not a given PasswordForm result from the database is a
73 // of PasswordForm results from the database to make matches as tight as
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebSecurityOrigin.mm 165 #if ENABLE(DATABASE)
174 #if ENABLE(DATABASE)
183 #if ENABLE(DATABASE)
  /external/webkit/Source/WebKit/mac/WebView/
WebViewData.h 134 // WebKit has both a global plug-in database and a separate, per WebView plug-in database. Dashboard uses the per WebView database.
  /frameworks/base/core/java/android/content/
SearchRecentSuggestionsProvider.java 20 import android.database.Cursor;
21 import android.database.sqlite.SQLiteDatabase;
22 import android.database.sqlite.SQLiteOpenHelper;
82 // general database configuration and tables
89 // Table of database versions. Don't forget to update!
98 * This mode bit configures the database to record recent queries. <i>required</i>
104 * This mode bit configures the database to include a 2nd annotation line with each entry.
121 * Builds the database. This version has extra support for using the version field
122 * as a mode flags field, and configures the database columns depending on the mode bits
153 Log.w(TAG, "Upgrading database from version " + oldVersion + " to
    [all...]
  /frameworks/base/core/java/com/google/android/mms/util/
SqliteWrapper.java 24 import android.database.Cursor;
25 import android.database.sqlite.SQLiteException;
33 = "unable to open database file";
  /frameworks/base/policy/src/com/android/internal/policy/impl/
ShortcutManager.java 21 import android.database.ContentObserver;
22 import android.database.Cursor;
34 * <li> Keeping the local copy in sync with the database (this is an observer)
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
AdditionalTextOutput.java 26 * A class that stores consoles messages, database callbacks, alert messages, etc.
70 output.append("UI DELEGATE DATABASE CALLBACK: ");
73 output.append("database:" + databaseIdentifier + "\n");
  /libcore/luni/src/test/java/libcore/sqlite/
OldBlobTest.java 20 import SQLite.Database;
31 private static Database db = null;
39 db = new Database();
  /packages/apps/Browser/src/com/android/browser/
WebStorageSizeManager.java 61 * When an origin's database usage reaches its current quota, WebKit invokes
66 * create its first database.
78 * the estimated size, then WebCore will not create the database.
209 * The origin has exceeded its database quota.
211 * @param databaseIdentifier the identifier of the database on
214 * @param estimatedSize the estimated size of a new database, or 0 if
215 * this has been invoked in response to an existing database
263 // to webcore not creating the database.
270 " estimatedSize for the new database " +
279 // is creating a new database or it has overflowed an existing database
    [all...]
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusService.java 26 import android.database.Cursor;
27 import android.database.sqlite.SqliteWrapper;
75 // message's status in the database.

Completed in 323 milliseconds

<<21222324252627282930>>