Searched defs:styleCount (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tools/aapt2/
H A DStringPool.cpp212 void StringPool::hintWillAdd(size_t stringCount, size_t styleCount) { argument
214 mStyles.reserve(mStyles.size() + styleCount);
311 header->styleCount = pool.mStyles.back()->str.getIndex() + 1;
312 styleIndices = out->nextBlock<uint32_t>(header->styleCount);
/frameworks/base/include/androidfw/
H A DResourceTypes.h429 * If styleCount is not zero, then immediately following the array of
444 uint32_t styleCount; member in struct:android::ResStringPool_header
520 size_t styleCount() const;
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp479 h->styleCount = dtohl(mHeader->styleCount);
523 if (mHeader->styleCount == 0) {
575 if (mHeader->styleCount > 0) {
602 for (i=0; i<mHeader->styleCount; i++) {
846 if (mError == NO_ERROR && idx < mHeader->styleCount) {
992 size_t ResStringPool::styleCount() const function in class:android::ResStringPool
994 return (mError == NO_ERROR) ? mHeader->styleCount : 0;

Completed in 1269 milliseconds