| 2064 | } |
| 2065 | |
| 2066 | sp<AaptFile> ResourceTable::flatten(Bundle* bundle) |
| 2067 | { |
| 2068 | sp<AaptFile> data = new AaptFile(String8(), AaptGroupEntry(), String8()); |
| 2069 | status_t err = flatten(bundle, data); |
| 2070 | return err == NO_ERROR ? data : NULL; |
| 2071 | } |
| 2072 | |
| 2073 | inline uint32_t ResourceTable::getResId(const sp<Package>& p, |
| 2074 | const sp<Type>& t, |
no test coverage detected