/frameworks/base/docs/html/sdk/api_diff/16/ |
missingSinces.txt | 62 NO DOC BLOCK: android.database.SQLException Constructor (java.lang.String, java.lang.Throwable) 63 NO DOC BLOCK: android.database.sqlite.SQLiteException Constructor (java.lang.String, java.lang.Throwable) 91 NO DOC BLOCK: android.database.sqlite.SQLiteClosable Method close() 97 NO DOC BLOCK: android.database.sqlite.SQLiteDatabase Method deleteDatabase(java.io.File) 104 NO DOC BLOCK: android.database.sqlite.SQLiteDatabase Method disableWriteAheadLogging() 106 NO DOC BLOCK: android.database.ContentObservable Method dispatchChange(boolean, android.net.Uri) 107 NO DOC BLOCK: android.database.ContentObserver Method dispatchChange(boolean, android.net.Uri) 287 NO DOC BLOCK: android.database.sqlite.SQLiteDatabase Method isWriteAheadLoggingEnabled() 298 NO DOC BLOCK: android.database.ContentObserver Method onChange(boolean, android.net.Uri) 299 NO DOC BLOCK: android.database.sqlite.SQLiteOpenHelper Method onConfigure(android.database.sqlite.SQLiteDatabase [all...] |
/frameworks/base/docs/html/guide/topics/search/ |
adding-custom-suggestions.jd | 89 <li>Build a table (such as in an {@link android.database.sqlite.SQLiteDatabase}) for your 110 <li>Your content provider returns a {@link android.database.Cursor} that points to all 156 the {@link android.database.Cursor} must include specific columns that the system 165 android.database.Cursor} that points to the rows you have determined to be good suggestions.</p> 174 android.database.Cursor} returned with each query</dd> 184 {@link android.database.Cursor} pointing to the suggestions you deem relevant.</p> 288 {@link android.database.sqlite.SQLiteDatabase#query(String,String[],String,String[],String,String, 319 into the necessary table on each request. To do so, create a {@link android.database.MatrixCursor} 321 android.database.MatrixCursor#addRow(Object[])}. Return the final product from your Content 327 <p>When you return suggestions to the system with a {@link android.database.Cursor}, th [all...] |
/external/webkit/Source/WebCore/storage/ |
IDBLevelDBBackingStore.cpp | 53 // of fields. Each key in the backing store starts with a ternary prefix: (database id, object store id, index id). For each, 0 is reserved for meta-data. 54 // The prefix makes sure that data for a specific database, object store, and index are grouped together. The locality is important for performance: common 55 // operations should only need a minimal number of seek operations. For example, all the meta-data for a database is grouped together so that reading that 63 // <0, 0, 0, 1> => The maximum database id ever allocated [MaxDatabaseIdKey] 64 // <0, 0, 0, 100, database id> => Existence implies the database id is in the free list [DatabaseFreeListKey] 65 // <0, 0, 0, 201, utf16 origin name, utf16 database name> => Database id [DatabaseNameKey] 68 // Database meta-data: 72 // <database id, 0, 0, 0> => utf16 origin name [DatabaseMetaDataKey [all...] |
/frameworks/base/docs/html/sdk/api_diff/8/ |
user_comments_for_7_to_8.xml | 889 <identifier id="android.database"/> 895 <identifier id="android.database.DatabaseUtils"/> 901 <identifier id="android.database.DatabaseUtils.cursorDoubleToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)"/> 907 <identifier id="android.database.DatabaseUtils.cursorFloatToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)"/> 913 <identifier id="android.database.DatabaseUtils.cursorIntToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)"/> 919 <identifier id="android.database.DatabaseUtils.cursorLongToContentValuesIfPresent_added(android.database.Cursor, android.content.ContentValues, java.lang.String)"/ [all...] |
/frameworks/base/docs/html/sdk/api_diff/16/changes/ |
methods_index_all.html | 243 <nobr><A HREF="android.database.CursorWindow.html#android.database.CursorWindow.close_changed()" class="hiddenlink" target="rightframe">type 244 () in android.database.CursorWindow 246 <nobr><A HREF="android.database.sqlite.SQLiteClosable.html#android.database.sqlite.SQLiteClosable.close_added()" class="hiddenlink" target="rightframe">type <b> 247 ()</b> in android.database.sqlite.SQLiteClosable 249 <nobr><A HREF="android.database.sqlite.SQLiteDatabase.html#android.database.sqlite.SQLiteDatabase.close_changed()" class="hiddenlink" target="rightframe">type 250 () in android.database.sqlite.SQLiteDatabase 252 <nobr><A HREF="android.database.sqlite.SQLiteProgram.html#android.database.sqlite.SQLiteProgram.close_changed()" class="hiddenlink (…) [all...] |
/cts/tests/tests/content/src/android/content/cts/ |
ContextWrapperTest.java | 34 import android.database.Cursor; 35 import android.database.sqlite.SQLiteCursorDriver; 36 import android.database.sqlite.SQLiteDatabase; 37 import android.database.sqlite.SQLiteQuery; 326 return new android.database.sqlite.SQLiteCursor(db, masterQuery, editTable, query) { 359 assertEquals(4, list.size()); // Each database has a journal 360 assertTrue("1) database list: " + list, list.contains(DATABASE_NAME1)); 361 assertTrue("2) database list: " + list, list.contains(DATABASE_NAME2)); [all...] |
/cts/tests/tests/database/src/android/database/cts/ |
ContentObserverTest.java | 17 package android.database.cts; 20 import android.database.ContentObserver;
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_FilesTest.java | 24 import android.database.Cursor; 81 // Update the path and check that the database changed.
|
/cts/tests/tests/widget/src/android/widget/cts/ |
ResourceCursorAdapterTest.java | 23 import android.database.Cursor; 24 import android.database.MatrixCursor;
|
ResourceCursorTreeAdapterTest.java | 23 import android.database.Cursor; 24 import android.database.MatrixCursor;
|
SimpleCursorTreeAdapterTest.java | 23 import android.database.Cursor; 24 import android.database.MatrixCursor;
|
/development/samples/SearchableDictionary/src/com/example/android/searchabledict/ |
DictionaryProvider.java | 24 import android.database.Cursor; 29 * Provides access to the dictionary database.
|
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/ |
Notepadv2.java | 21 import android.database.Cursor; 54 // Get all of the rows from the database and create the item list
|
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/ |
Notepadv3.java | 21 import android.database.Cursor; 54 // Get all of the rows from the database and create the item list
|
/external/bluetooth/bluez/doc/ |
attribute-api.txt | 10 attribute database. One service object path for every local SDP record 11 or service from attribute database.
|
/external/bluetooth/glib/ |
INSTALL.in | 68 update-mime-database and update-desktop-database utilities, which
|
/external/chromium/chrome/browser/ |
browsing_data_remover.h | 37 // visits in url database, downloads, cookies ... 189 // Reference to database tracker held while deleting databases.
|
/external/chromium/chrome/browser/net/gaia/ |
token_service.h | 10 // tokens, which will be written to the database after retrieval, as well as 16 // LoadTokensFromDB() // When it's OK to talk to the database
|
/external/chromium/chrome/browser/net/ |
sqlite_persistent_cookie_store_unittest.cc | 79 // Test if data is stored as expected in the SQLite database. 115 // Test that we can force the database to be written by calling Flush().
|
/external/chromium/chrome/browser/search_engines/ |
template_url_model_test_util.cc | 20 // A Task used to coordinate when the database has finished processing 196 // Initialize the web data service so that the database gets updated with
|
/external/chromium/chrome/common/ |
thumbnail_score.cc | 20 // taken. We store the raw components in the database because I'm sure 67 // stuck in the SQL database, so we need to test equivalence with
|
/external/chromium/testing/gmock/scripts/generator/ |
README.cppclean | 26 * (planned) Store AST in a SQL database so relationships can be queried 101 and storing an AST in a database.
|
/external/clang/include/clang/Basic/ |
OperatorKinds.def | 1 //===--- OperatorKinds.def - C++ Overloaded Operator Database ---*- C++ -*-===// 10 // This file defines the OverloadedOperator database, which includes
|
/external/dnsmasq/dbus/ |
DBus-interface | 101 the DHCP lease database changes. Think of these signals as transactions on 102 a database with the IP address acting as the primary key.
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/utils/ |
IPerformancesConstants.java | 28 public static final String PRE_DATABASE_CONNECTION = PREFIX + "database.connection"; //$NON-NLS-1$ 30 public static final String PRE_DATABASE_LOCATION = PREFIX + "database.location"; //$NON-NLS-1$
|