Searched defs:mCollections (Results 1 - 5 of 5) sorted by relevance

/frameworks/support/compat/java/android/support/v4/util/
H A DArrayMap.java51 MapCollections<K, V> mCollections; field in class:ArrayMap
72 if (mCollections == null) {
73 mCollections = new MapCollections<K, V>() {
120 return mCollections;
H A DArraySet.java81 MapCollections<E, E> mCollections; field in class:ArraySet
665 if (mCollections == null) {
666 mCollections = new MapCollections<E, E>() {
713 return mCollections;
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/
H A DTrackedCollections.java34 private final WeakIdentityHashMap<Collection<?>, CollectionState> mCollections field in class:TrackedCollections
41 CollectionState collectionState = mCollections.get(collection);
46 mCollections.put(collection, collectionState);
96 : mCollections.entrySet()) {
/frameworks/base/core/java/android/util/
H A DArraySet.java76 MapCollections<E, E> mCollections; field in class:ArraySet
675 if (mCollections == null) {
676 mCollections = new MapCollections<E, E>() {
723 return mCollections;
H A DArrayMap.java100 MapCollections<K, V> mCollections; field in class:ArrayMap
808 if (mCollections == null) {
809 mCollections = new MapCollections<K, V>() {
856 return mCollections;

Completed in 101 milliseconds