Home | History | Annotate | Download | only in res

Lines Matching refs:resourceTable

12  * A {@link ResourceTable} for a single package, e.g: "android" / ox01
14 public class PackageResourceTable implements ResourceTable {
17 private final BiMap<Integer, ResName> resourceTable = HashBiMap.create();
39 Integer id = resourceTable.inverse().get(resName);
44 resourceTable
53 return resourceTable.get(resourceId);
120 ResName existingEntry = resourceTable.put(resId, resName);
132 Integer oldId = resourceTable.inverse().get(resNameWithUnderscores);
134 resourceTable.forcePut(oldId, resName);
137 Integer id = resourceTable.inverse().get(resName);
140 ResName existing = resourceTable.put(id, resName);