Lines Matching refs:intent

204     public List<R> queryIntentFromList(Intent intent, String resolvedType, 
209 ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
211 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
212 final String scheme = intent.getScheme();
215 buildResolveList(intent, categories, debug, defaultOnly,
222 public List<R> queryIntent(Intent intent, String resolvedType, boolean defaultOnly,
224 String scheme = intent.getScheme();
229 ((intent.getFlags() & Intent.FLAG_DEBUG_LOG_RESOLUTION) != 0);
233 + " of intent " + intent);
240 // If the intent includes a MIME type, then we want to collect all of
263 // if the intent type was not already */*.
266 } else if (intent.getAction() != null) {
267 // The intent specified any type ({@literal *}/*). This
270 firstTypeCut = mTypedActionToFilter.get(intent.getAction());
276 // If the intent includes a data URI, then we want to collect all of
284 // If the intent does not specify any data -- either a MIME type or
287 if (resolvedType == null && scheme == null && intent.getAction() != null) {
288 firstTypeCut = mActionToFilter.get(intent.getAction());
292 FastImmutableArraySet<String> categories = getFastIntentCategories(intent);
294 buildResolveList(intent, categories, debug, defaultOnly,
298 buildResolveList(intent, categories, debug, defaultOnly,
302 buildResolveList(intent, categories, debug, defaultOnly,
306 buildResolveList(intent, categories, debug, defaultOnly,
332 * if the intent requests to excluded stopped objects.
499 private static FastImmutableArraySet<String> getFastIntentCategories(Intent intent) {
500 final Set<String> categories = intent.getCategories();
507 private void buildResolveList(Intent intent, FastImmutableArraySet<String> categories,
510 final String action = intent.getAction();
511 final Uri data = intent.getData();
512 final String packageName = intent.getPackage();
514 final boolean excludingStopped = intent.isExcludingStopped();