/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
PhotoStoreTest.java | 115 Cursor c = mDb.query(Tables.PHOTO_FILES, 143 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID}, 189 Cursor c = mDb.query(Tables.PHOTO_FILES, new String[]{PhotoFiles._ID},
|
CallLogProviderTest.java | 165 Cursor c = mResolver.query(filterUri, null, null, null, null); 172 c = mResolver.query(filterUri, null, null, null, null); 229 // exposed through call_log provider query. 231 // Query. 232 Cursor cursor = mResolver.query(Calls.CONTENT_URI, null, null, null, null); 288 mResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, null, null, null, null); 293 mResolver.query(Calls.CONTENT_URI_WITH_VOICEMAIL, null, null, null, null);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Video_MediaTest.java | 51 assertNotNull(mContentResolver.query(Media.getContentUri("internal"), null, null, null, 53 assertNotNull(mContentResolver.query(Media.getContentUri("external"), null, null, null, 58 assertNull(mContentResolver.query(Media.getContentUri(volume), null, null, null, null)); 100 // query 101 Cursor c = mContentResolver.query(uri, null, null, null, null); 155 c = mContentResolver.query(uri, null, null, null, null);
|
ContactsContract_TestDataBuilder.java | 75 Cursor cursor = mProvider.query(mUri, IdQuery.COLUMNS, null, null, null); 155 mCursor = mProvider.query(getUri(), null, null, null, null); 187 mCursor = mProvider.query(getContentUri(), null,
|
/frameworks/base/media/java/android/media/ |
RingtoneManager.java | 488 return query( 496 return query( 507 ? query( 569 private Cursor query(Uri uri, method in class:RingtoneManager 577 return mContext.getContentResolver().query(uri, projection, selection, selectionArgs, 589 * @param context A context used to query.
|
/frameworks/base/media/java/android/mtp/ |
MtpPropertyGroup.java | 41 // column index for our query 59 // list of columns for database query 163 // genre requires a special query 192 c = mProvider.query(mUri, 212 c = mProvider.query(Audio.Media.getContentUri(mVolumeName), 233 c = mProvider.query(uri, 255 c = mProvider.query(mUri, 324 // don't query if not necessary 326 c = mProvider.query(mUri, mColumns, where, whereArgs, null); 336 // iterate over all objects in the query [all...] |
/packages/experimental/LoaderApp/src/com/android/loaderapp/util/ |
ContactsUtils.java | 166 photoCursor = context.getContentResolver().query( 277 contactIdCursor = cr.query(RawContacts.CONTENT_URI, 298 c = cr.query(dataUri, 319 rawContactIdCursor = cr.query(RawContacts.CONTENT_URI, 338 rawContactIdCursor = cr.query(RawContacts.CONTENT_URI,
|
/frameworks/base/core/java/android/app/ |
DownloadManager.java | 702 public static class Query { 725 public Query setFilterById(long... ids) { 735 public Query setFilterByStatus(int flags) { 741 * Controls whether this query includes downloads not visible in the system's Downloads UI. 742 * @param value if true, this query will only include downloads that should be displayed in 743 * the system's Downloads UI; if false (the default), this query will include 748 public Query setOnlyIncludeVisibleInDownloadsUi(boolean value) { 763 public Query orderBy(String column, int direction) { 780 * Run this query using the given ContentResolver. 781 * @param projection the projection to pass to ContentResolver.query() 934 public Cursor query(Query query) { method in class:DownloadManager 966 Query query = new Query().setFilterById(id); local 1018 Query query = new Query().setFilterById(id); local [all...] |
/external/bluetooth/glib/gio/ |
gdummyfile.c | 48 char *query; member in struct:__anon1858 506 g_free (decoded->query); 534 * URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ] 577 decoded->query = g_strndup (query_start, fragment_start - query_start); 582 decoded->query = g_strdup (query_start); 588 /* No query */ 589 decoded->query = NULL; 748 if (decoded->query) 751 g_string_append (uri, decoded->query);
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
TextUtilities.java | 507 * Given a string of HTML text and a query containing any number of search terms, returns 511 * @param query the search terms 515 public static String highlightTermsInHtml(String text, String query) { 517 return highlightTerms(text, query, true).toString(); 525 * Given a string of plain text and a query containing any number of search terms, returns 529 * @param query the search terms 532 public static CharSequence highlightTermsInText(String text, String query) { 534 return highlightTerms(text, query, false); 556 * Generate a version of the incoming text in which all search terms in a query are highlighted. 561 * @param query the query, which can contain multiple terms separated by whitespac [all...] |
/external/webkit/Source/WebCore/inspector/ |
InspectorDOMAgent.cpp | 108 MatchJob(Document* document, const String& query) 110 , m_query(query) { } 139 MatchExactIdJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { } 156 MatchExactClassNamesJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { } 168 MatchExactTagNamesJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { } 180 MatchQuerySelectorAllJob(Document* document, const String& query) : WebCore::MatchJob(document, query) { } [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactAggregator.java | 106 // For the query (as opposed to the merge), count will be negative 166 * Parameter for the suggestion lookup query. 366 // Query used to retrieve data from raw contacts to populate the corresponding aggregate 536 Cursor cursor = db.query(RawContactIdAndAggregationModeQuery.TABLE, 602 Cursor cursor = db.query(RawContactIdAndAccountQuery.TABLE, 753 String query; local 756 query = "SELECT count(_id) FROM " + Tables.RAW_CONTACTS + 764 query = "SELECT count(_id) FROM " + Tables.RAW_CONTACTS + 774 query = "SELECT count(_id) FROM " + Tables.RAW_CONTACTS 812 String query = local [all...] |
/packages/apps/Music/src/com/android/music/ |
ArtistAlbumBrowserActivity.java | 114 //Log.i("@@@", "starting query"); 307 cursor = MusicUtils.query(this, MediaStore.Audio.Media.EXTERNAL_CONTENT_URI, 465 String query = null; local 473 query = mCurrentArtistName; 478 title = query = mCurrentArtistNameForAlbum; 480 title = query = mCurrentAlbumName; 482 query = query + " " + mCurrentArtistNameForAlbum; 490 i.putExtra(SearchManager.QUERY, query); [all...] |
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsSmsDatabaseHelper.java | 299 String query = "SELECT thread_id FROM sms WHERE type=" + local 304 Cursor c = db.rawQuery(query, null); 337 String query = "SELECT _id FROM threads WHERE _id IN " + local 339 Cursor c = db.rawQuery(query, whereArgs); 364 Cursor c = db.query("sms", new String[] { "thread_id" }, 398 Cursor smsRows = db.query( 431 Cursor mmsRows = db.query( 1398 String query = "SELECT sql FROM sqlite_master WHERE type='table' AND name='threads'"; local [all...] |
/external/libxml2/ |
nanohttp.c | 137 char *query; /* the query string */ member in struct:xmlNanoHTTPCtxt 294 if (ctxt->query != NULL) { 295 xmlFree(ctxt->query); 296 ctxt->query = NULL; 315 if (uri->query != NULL) 316 ctxt->query = xmlMemStrdup(uri->query); 412 if (ctxt->query != NULL) xmlFree(ctxt->query); [all...] |
/build/tools/droiddoc/templates-sdk/assets/ |
android-developer-resource-browser.js | 10 // Parse page query parameters. 102 * Loads resources for the given query parameters. 121 // Show query params.
|
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/ |
ContactManager.java | 65 final Cursor cursor = resolver.query(Groups.CONTENT_URI, new String[] { Groups._ID }, 179 final Cursor c = resolver.query(DirtyQuery.CONTENT_URI, 309 * This operation is actually relatively complex. We query 338 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION, 454 * database, our query will return those multiple rows of information. 474 resolver.query(DataQuery.CONTENT_URI, DataQuery.PROJECTION, DataQuery.SELECTION, 598 final Cursor c = resolver.query( 628 resolver.query(Data.CONTENT_URI, ProfileQuery.PROJECTION, ProfileQuery.SELECTION, 683 * Constants for a query to find a contact given a sample SyncAdapter user 701 * Constants for a query to find a contact given a sample SyncAdapter use [all...] |
/external/chromium/chrome/browser/resources/shared/js/ |
util.js | 62 * Parses query parameters from Location. 68 var query = unescape(location.search.substring(1)); 69 var vars = query.split("&");
|
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_util.cc | 344 if (canonicalized_query && final_parsed.query.len > 0) { 346 final_parsed.query.begin, final_parsed.query.len); 395 const std::string query = canon_query; local 400 // the query parameters, and also up to 4 paths formed by starting at the root 414 if (!query.empty()) 415 paths->push_back(path + "?" + query);
|
/external/webkit/Source/WebCore/css/ |
MediaQueryEvaluator.cpp | 2 * CSS Media Query Evaluator 140 return true; // empty query list evaluates to true 145 MediaQuery* query = queries.at(i); local 147 if (query->ignored()) 150 if (mediaTypeMatch(query->mediaType())) { 151 const Vector<OwnPtr<MediaQueryExp> >* exps = query->expressions(); 165 result = applyRestrictor(query->restrictor(), exps->size() == j); 167 result = applyRestrictor(query->restrictor(), false);
|
/packages/apps/Browser/src/com/android/browser/provider/ |
BrowserProvider2.java | 510 c = oldDb.query(table, 537 c = oldDb.query(table, 861 public Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, method in class:BrowserProvider2 936 String query; local 1184 String query = qb.buildUnionQuery( local [all...] |
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/core/ |
VoicemailProviderHelpers.java | 163 cursor = mContentResolver.query(mBaseUri, FULL_PROJECTION, 182 cursor = mContentResolver.query(uri, FULL_PROJECTION, null, null, null); 235 cursor = mContentResolver.query(mBaseUri, FULL_PROJECTION,
|
/external/chromium/chrome/browser/net/ |
url_fixer_upper_unittest.cc | 41 const url_parse::Component query; member in struct:segment_case 53 url_parse::Component(), // query 63 url_parse::Component(), // query 73 url_parse::Component(23, 3), // query 83 url_parse::Component(), // query 93 url_parse::Component(48, 3), // query 103 url_parse::Component(), // query 113 url_parse::Component(), // query 124 url_parse::Component(), // query 134 url_parse::Component(), // query [all...] |
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
JavaExpression.java | 440 public static JavaExpression inlineIf(Type type, final JavaExpression query, 442 if (query.getType() != Type.BOOLEAN) { 449 query.write(out);
|
/external/llvm/include/llvm/ADT/ |
Trie.h | 89 QueryResult query(const std::string& s) const { function in class:llvm::Trie::Node 213 typename Node::QueryResult r = nNode->query(s1); 252 typename Node::QueryResult r = nNode->query(s1);
|