Searched refs:mCollections (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/packages/SystemUI/src/com/android/systemui/util/leak/ |
D | TrackedCollections.java | 34 private final WeakIdentityHashMap<Collection<?>, CollectionState> mCollections field in TrackedCollections 41 CollectionState collectionState = mCollections.get(collection); in track() 46 mCollections.put(collection, collectionState); in track() 96 : mCollections.entrySet()) { in dump()
|
/frameworks/support/compat/java/android/support/v4/util/ |
D | ArrayMap.java | 51 MapCollections<K, V> mCollections; field in ArrayMap 72 if (mCollections == null) { in getCollection() 73 mCollections = new MapCollections<K, V>() { in getCollection() 120 return mCollections; in getCollection()
|
D | ArraySet.java | 81 MapCollections<E, E> mCollections; field in ArraySet 665 if (mCollections == null) { in getCollection() 666 mCollections = new MapCollections<E, E>() { in getCollection() 713 return mCollections; in getCollection()
|
/frameworks/base/core/java/android/util/ |
D | ArraySet.java | 76 MapCollections<E, E> mCollections; field in ArraySet 675 if (mCollections == null) { in getCollection() 676 mCollections = new MapCollections<E, E>() { in getCollection() 723 return mCollections; in getCollection()
|
D | ArrayMap.java | 100 MapCollections<K, V> mCollections; field in ArrayMap 808 if (mCollections == null) { in getCollection() 809 mCollections = new MapCollections<K, V>() { in getCollection() 856 return mCollections; in getCollection()
|