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

123

/packages/apps/Nfc/src/com/android/nfc/
H A DNfcService.java358 IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF);
359 filter.addAction(Intent.ACTION_SCREEN_ON);
360 filter.addAction(Intent.ACTION_USER_PRESENT);
361 filter.addAction(Intent.ACTION_USER_SWITCHED);
362 registerForAirplaneMode(filter);
363 mContext.registerReceiverAsUser(mReceiver, UserHandle.ALL, filter, null, null);
406 void registerForAirplaneMode(IntentFilter filter) { argument
418 filter.addAction(Intent.ACTION_AIRPLANE_MODE_CHANGED);
784 for (IntentFilter filter : filters) {
785 if (filter
[all...]
/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
H A DContactAggregator.java2385 String[] projection, long contactId, int maxSuggestions, String filter,
2391 return queryMatchingContacts(qb, db, projection, bestMatches, maxSuggestions, filter);
2410 String[] projection, List<MatchScore> bestMatches, int maxSuggestions, String filter) {
2423 if (!TextUtils.isEmpty(filter)) {
2425 mContactsProvider.appendContactFilterAsNestedQuery(sb, filter);
2428 // Run a query and find ids of best matching contacts satisfying the filter (if any)
2440 // Exclude all contacts that did not match the filter
2384 queryAggregationSuggestions(SQLiteQueryBuilder qb, String[] projection, long contactId, int maxSuggestions, String filter, ArrayList<AggregationSuggestionParameter> parameters) argument
2409 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.java4243 private void assertContactFilter(long contactId, String filter) { argument
4244 Uri filterUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI, Uri.encode(filter));
4248 private void assertContactFilterNoResult(String filter) { argument
4249 Uri filterUri = Uri.withAppendedPath(Contacts.CONTENT_FILTER_URI, Uri.encode(filter));
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsProvider2.java273 * don't know anything about them, so they won't show up in the contact filter screen, and
1156 matcher.addURI(ContactsContract.AUTHORITY, "contacts/filter", CONTACTS_FILTER);
1157 matcher.addURI(ContactsContract.AUTHORITY, "contacts/filter/*", CONTACTS_FILTER);
1183 matcher.addURI(ContactsContract.AUTHORITY, "contacts/strequent/filter/*",
1206 matcher.addURI(ContactsContract.AUTHORITY, "data/phones/filter", PHONES_FILTER);
1207 matcher.addURI(ContactsContract.AUTHORITY, "data/phones/filter/*", PHONES_FILTER);
1212 matcher.addURI(ContactsContract.AUTHORITY, "data/emails/filter", EMAILS_FILTER);
1213 matcher.addURI(ContactsContract.AUTHORITY, "data/emails/filter/*", EMAILS_FILTER);
1220 matcher.addURI(ContactsContract.AUTHORITY, "data/callables/filter", CALLABLES_FILTER);
1221 matcher.addURI(ContactsContract.AUTHORITY, "data/callables/filter/*", CALLABLES_FILTE
7153 setTablesAndProjectionMapForContactsWithSnippet(SQLiteQueryBuilder qb, Uri uri, String[] projection, String filter, long directoryId, boolean deferSnippeting) argument
7174 appendSearchIndexJoin( StringBuilder sb, Uri uri, String[] projection, String filter, boolean deferSnippeting) argument
7202 appendSearchIndexJoin(StringBuilder sb, String filter, boolean snippetNeeded, String startMatch, String endMatch, String ellipsis, int maxTokens, boolean deferSnippeting) argument
7356 sanitizeMatch(String filter) argument
[all...]
/packages/services/Telecomm/libs/
H A Dguava.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/common/ com/google/common/util/ ...

Completed in 625 milliseconds

123