HomeSort by relevance Sort by last modified time
    Searched refs:query (Results 901 - 925 of 1949) sorted by null

<<31323334353637383940>>

  /packages/apps/Mms/src/com/android/mms/data/
Conversation.java 316 final Cursor c = SqliteWrapper.query(context, context.getContentResolver(),
374 // Check the read flag first. It's much faster to do a query than
376 // do the query compared to the update, even when there's nothing to
380 Cursor c = mContext.getContentResolver().query(threadUri,
411 * the DB queries in markAsRead don't slow down the main query for messages. Once we've
711 * Start a query for all conversations in the database on the specified
715 * upon completion of the query
721 // This query looks like this in the log:
730 * Start a query for in the database on the specified AsyncQueryHandler with the specified
734 * upon completion of the query
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_urlparse.py 13 # a string with the query and a dictionary with the expected result.
35 result.params, result.query, result.fragment)
51 self.assertEqual(result3.query, result.query)
62 result.query, result.fragment)
75 self.assertEqual(result3.query, result.query)
400 self.assertEqual(p.query, "")
410 url = "http://User:Pass@www.python.org:080/doc/?query=yes#frag"
415 self.assertEqual(p.query, "query=yes"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_urlparse.py 13 # a string with the query and a dictionary with the expected result.
35 result.params, result.query, result.fragment)
51 self.assertEqual(result3.query, result.query)
62 result.query, result.fragment)
75 self.assertEqual(result3.query, result.query)
400 self.assertEqual(p.query, "")
410 url = "http://User:Pass@www.python.org:080/doc/?query=yes#frag"
415 self.assertEqual(p.query, "query=yes"
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 536 return mResolver.query(ContentUris.withAppendedId(RawContacts.CONTENT_URI, rawContactId),
541 return mResolver.query(ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId),
546 return mResolver.query(ContentUris.withAppendedId(Contacts.CONTENT_URI, contactId),
634 Cursor c = mResolver.query(uri, projection, Data.MIMETYPE + "='"
647 Cursor c = mResolver.query(Groups.CONTENT_URI, null, null, null, null);
660 Cursor c = mResolver.query(ContactsContract.Data.CONTENT_URI, null, null, null, null);
774 Cursor c = mResolver.query(uri, new String[]{"dirty"}, null, null, null);
782 Cursor c = mResolver.query(uri, new String[]{"version"}, null, null, null);
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.director_2.3.1.v20140221-1852.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.director_2.3.0.v20130526-0335.jar 
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsSmsDatabaseHelper.java 245 Cursor c = db.query(MmsSmsProvider.TABLE_THREADS, new String[] { "recipient_ids" },
346 String query = "SELECT thread_id FROM sms WHERE type=" + local
351 Cursor c = db.rawQuery(query, null);
393 String query = "SELECT _id FROM threads WHERE _id IN " + local
395 Cursor c = db.rawQuery(query, whereArgs);
426 Cursor c = db.query("sms", new String[] { "thread_id" },
460 Cursor smsRows = db.query(
493 Cursor mmsRows = db.query(
1677 String query = "SELECT sql FROM sqlite_master WHERE type='table' AND name='" + local
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js     [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 129 cursor = db.query(DB_TABLE_NAME, new String[] {DB_COLUMN},
163 cursor = db.query(DB_TABLE_NAME, new String[] {DB_COLUMN},
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteCursorTest.java 205 SQLiteCursor cursor = (SQLiteCursor) mDatabase.query(TABLE_NAME, null, SELECTION,
232 SQLiteCursor cursor = (SQLiteCursor) mDatabase.query(TABLE_NAME, null, null,
SQLiteStatementTest.java 130 Cursor c = mDatabase.query("test", null, null, null, null, null, null);
144 c = mDatabase.query("test", null, null, null, null, null, null);
172 // test query long
177 // test query returns zero rows
196 // test query String
201 // test query returns zero rows
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_ContactCountsTest.java 61 final Cursor cursor = mResolver.query(Contacts.CONTENT_URI, TEST_PROJECTION,
76 final Cursor cursor = mResolver.query(uri, TEST_PROJECTION,
  /developers/build/prebuilts/gradle/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 86 * Perform a database query by URI.
92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:FeedProvider
106 Cursor c = builder.query(db, projection, sortOrder);
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/Application/src/main/java/com/example/android/basicsyncadapter/provider/
FeedProvider.java 86 * Perform a database query by URI.
92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:FeedProvider
106 Cursor c = builder.query(db, projection, sortOrder);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ContentBrowserActivity.java 248 public boolean onQueryTextSubmit(String query) {
249 Toast.makeText(this, "Searching for: " + query + "...", Toast.LENGTH_SHORT).show();
ContentBrowserNavActivity.java 250 public boolean onQueryTextSubmit(String query) {
251 Toast.makeText(this, "Searching for: " + query + "...", Toast.LENGTH_SHORT).show();
VideoPlayerActivity.java 265 public boolean onQueryTextSubmit(String query) {
266 Toast.makeText(this, "Searching for: " + query + "...", Toast.LENGTH_SHORT).show();
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/provider/
FeedProvider.java 86 * Perform a database query by URI.
92 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:FeedProvider
106 Cursor c = builder.query(db, projection, sortOrder);
  /external/bluetooth/bluedroid/bta/hf_client/
bta_hf_client_int.h 248 extern void bta_hf_client_send_at_cops(BOOLEAN query);
257 extern void bta_hf_client_send_at_btrh(BOOLEAN query, UINT32 val);
  /external/chromium_org/chrome/browser/safe_browsing/
protocol_manager.h 115 void set_additional_query(const std::string& query) {
116 additional_query_ = query;
246 // requires a database query (run on the database thread), and the request
247 // is sent upon completion of that query in OnGetChunksComplete.
322 // For managing the next earliest time to query the SafeBrowsing servers for
  /external/chromium_org/chrome/common/extensions/docs/examples/api/contentSettings/
popup.js 24 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/pageAction/set_icon/
background.js 13 chrome.tabs.query({active: true, currentWindow: true}, function(tabs) {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/processes/show_tabs/
popup.js 8 chrome.tabs.query({currentWindow: true, active: true}, function(tabs) {
  /external/chromium_org/chrome/installer/util/
wmi.cc 144 base::win::ScopedBstr query(L"SELECT * FROM Win32_ComputerSystem");
147 query_language, query,
  /external/chromium_org/chrome/utility/importer/
nss_decryptor.cc 241 const char* query = "SELECT hostname FROM moz_disabledHosts"; local
242 sql::Statement s(db.GetUniqueStatement(query));

Completed in 2717 milliseconds

<<31323334353637383940>>