Searched defs:filter (Results 51 - 57 of 57) sorted by relevance

123

/packages/apps/Music/src/com/android/music/
H A DArtistAlbumBrowserActivity.java523 private Cursor getArtistCursor(AsyncQueryHandler async, String filter) { argument
533 if (!TextUtils.isEmpty(filter)) {
534 uri = uri.buildUpon().appendQueryParameter("filter", Uri.encode(filter)).build();
599 // no filter or dither, it's a lot faster and we can't tell the difference
H A DTrackBrowserActivity.java1007 private Cursor getTrackCursor(TrackListAdapter.TrackQueryHandler queryhandler, String filter, argument
1022 if (!TextUtils.isEmpty(filter)) {
1023 uri = uri.buildUpon().appendQueryParameter("filter", Uri.encode(filter)).build();
1041 if (!TextUtils.isEmpty(filter)) {
1042 uri = uri.buildUpon().appendQueryParameter("filter", Uri.encode(filter)).build();
1050 if (!TextUtils.isEmpty(filter)) {
1051 uri = uri.buildUpon().appendQueryParameter("filter", Uri.encode(filter))
[all...]
/packages/apps/Settings/src/com/android/settings/applications/
H A DApplicationsState.java294 IntentFilter filter = new IntentFilter(Intent.ACTION_PACKAGE_ADDED);
295 filter.addAction(Intent.ACTION_PACKAGE_REMOVED);
296 filter.addAction(Intent.ACTION_PACKAGE_CHANGED);
297 filter.addDataScheme("package");
298 mContext.registerReceiver(this, filter);
508 // Creates a new list of app entries with the given filter and comparator.
509 ArrayList<AppEntry> rebuild(AppFilter filter, Comparator<AppEntry> comparator) { argument
515 mRebuildFilter = filter;
546 AppFilter filter;
553 filter
[all...]
/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java435 IntentFilter filter = new IntentFilter(NativeNfcManager.INTERNAL_TARGET_DESELECTED_ACTION);
436 filter.addAction(Intent.ACTION_SCREEN_OFF);
437 filter.addAction(Intent.ACTION_SCREEN_ON);
438 filter.addAction(Intent.ACTION_USER_PRESENT);
439 filter.addAction(Intent.ACTION_USER_SWITCHED);
440 registerForAirplaneMode(filter);
441 mContext.registerReceiverAsUser(mReceiver, UserHandle.ALL, filter, null, null);
468 void registerForAirplaneMode(IntentFilter filter) { argument
480 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
925 for (IntentFilter filter
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java2330 String[] projection, long contactId, int maxSuggestions, String filter,
2336 return queryMatchingContacts(qb, db, projection, bestMatches, maxSuggestions, filter);
2355 String[] projection, List<MatchScore> bestMatches, int maxSuggestions, String filter) {
2368 if (!TextUtils.isEmpty(filter)) {
2370 mContactsProvider.appendContactFilterAsNestedQuery(sb, filter);
2373 // Run a query and find ids of best matching contacts satisfying the filter (if any)
2385 // Exclude all contacts that did not match the filter
2329 queryAggregationSuggestions(SQLiteQueryBuilder qb, String[] projection, long contactId, int maxSuggestions, String filter, ArrayList<AggregationSuggestionParameter> parameters) argument
2354 queryMatchingContacts(SQLiteQueryBuilder qb, SQLiteDatabase db, String[] projection, List<MatchScore> bestMatches, int maxSuggestions, String filter) argument
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DContactsProvider2Test.java3665 private void assertContactFilter(long contactId, String filter) { argument
3666 Uri filterUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI, Uri.encode(filter));
3670 private void assertContactFilterNoResult(String filter) { argument
3671 Uri filterUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI, Uri.encode(filter));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java234 * don't know anything about them, so they won't show up in the contact filter screen, and
1114 matcher.addURI(ContactsContract.AUTHORITY, "contacts/filter", CONTACTS_FILTER);
1115 matcher.addURI(ContactsContract.AUTHORITY, "contacts/filter/*", CONTACTS_FILTER);
1141 matcher.addURI(ContactsContract.AUTHORITY, "contacts/strequent/filter/*",
1164 matcher.addURI(ContactsContract.AUTHORITY, "data/phones/filter", PHONES_FILTER);
1165 matcher.addURI(ContactsContract.AUTHORITY, "data/phones/filter/*", PHONES_FILTER);
1170 matcher.addURI(ContactsContract.AUTHORITY, "data/emails/filter", EMAILS_FILTER);
1171 matcher.addURI(ContactsContract.AUTHORITY, "data/emails/filter/*", EMAILS_FILTER);
1178 matcher.addURI(ContactsContract.AUTHORITY, "data/callables/filter", CALLABLES_FILTER);
1179 matcher.addURI(ContactsContract.AUTHORITY, "data/callables/filter/*", CALLABLES_FILTE
6874 setTablesAndProjectionMapForContactsWithSnippet(SQLiteQueryBuilder qb, Uri uri, String[] projection, String filter, long directoryId, boolean deferSnippeting) argument
6895 appendSearchIndexJoin( StringBuilder sb, Uri uri, String[] projection, String filter, boolean deferSnippeting) argument
6924 appendSearchIndexJoin(StringBuilder sb, String filter, boolean snippetNeeded, String startMatch, String endMatch, String ellipsis, int maxTokens, boolean deferSnippeting) argument
7078 sanitizeMatch(String filter) argument
[all...]

Completed in 259 milliseconds

123