Searched defs:mCategories (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/content/
H A DIntentFilter.java236 private ArrayList<String> mCategories = null; field in class:IntentFilter
388 if (o.mCategories != null) {
389 mCategories = new ArrayList<String>(o.mCategories);
974 if (mCategories == null) mCategories = new ArrayList<String>();
975 if (!mCategories.contains(category)) {
976 mCategories.add(category.intern());
984 return mCategories != null ? mCategories
[all...]
H A DIntent.java3374 private HashSet<String> mCategories; field in class:Intent
3398 if (o.mCategories != null) {
3399 this.mCategories = new HashSet<String>(o.mCategories);
3426 if (o.mCategories != null) {
3427 this.mCategories = new HashSet<String>(o.mCategories);
4066 return mCategories != null && mCategories.contains(category);
4079 return mCategories;
[all...]
/frameworks/base/media/java/android/media/
H A DMediaRouter.java64 final ArrayList<RouteCategory> mCategories = new ArrayList<RouteCategory>(); field in class:MediaRouter.Static
461 if (!sStatic.mCategories.contains(cat)) {
462 sStatic.mCategories.add(cat);
531 sStatic.mCategories.remove(removingCat);
557 sStatic.mCategories.remove(removingCat);
570 return sStatic.mCategories.size();
581 return sStatic.mCategories.get(index);

Completed in 77 milliseconds