Home | History | Annotate | Download | only in app

Lines Matching defs:uids

27         SparseArray<E> uids = mMap.get(name);
28 if (uids == null) return null;
29 return uids.get(uid);
33 SparseArray<E> uids = mMap.get(name);
34 if (uids == null) {
35 uids = new SparseArray<E>(2);
36 mMap.put(name, uids);
38 uids.put(uid, value);
43 SparseArray<E> uids = mMap.get(name);
44 if (uids != null) {
45 uids.remove(uid);
46 if (uids.size() == 0) {