| 343 | } |
| 344 | |
| 345 | sp<AaptFile> StringPool::createStringBlock() |
| 346 | { |
| 347 | sp<AaptFile> pool = new AaptFile(String8(), AaptGroupEntry(), |
| 348 | String8()); |
| 349 | status_t err = writeStringBlock(pool); |
| 350 | return err == NO_ERROR ? pool : NULL; |
| 351 | } |
| 352 | |
| 353 | #define ENCODE_LENGTH(str, chrsz, strSize) \ |
| 354 | { \ |
no test coverage detected