Home | History | Annotate | Download | only in aapt

Lines Matching full:strings

854     StringPool strings = StringPool(false, mUTF8);
857 // First collect just the strings for attribute names that have a
861 collect_resid_strings(&strings, &resids);
863 // Next collect all remainibng strings.
864 collect_strings(&strings, &resids, stripComments, stripRawValues);
867 NOISY(printf("Found strings:\n");
868 const size_t N = strings.size();
870 printf("%s\n", String8(strings.entryAt(i).string).string());
875 sp<AaptFile> stringPool = strings.createStringBlock();
904 flatten_node(strings, dest, stripComments, stripRawValues);
915 fprintf(stderr, "**** total xml size: %d / %d%% strings (in %s)\n",
1176 // Just ignore strings that are out of range of
1178 // strings as we assign the first ID.
1219 status_t XMLNode::flatten_node(const StringPool& strings, const sp<AaptFile>& dest,
1248 mComment.size() > 0 ? strings.offsetForString(mComment) : -1);
1261 attrExt.ns.index = htodl(strings.offsetForString(mNamespaceUri));
1265 attrExt.name.index = htodl(strings.offsetForString(mElementName));
1291 namespaceExt.prefix.index = htodl(strings.offsetForString(mNamespacePrefix));
1295 namespaceExt.prefix.index = htodl(strings.offsetForString(mNamespacePrefix));
1296 namespaceExt.uri.index = htodl(strings.offsetForString(mNamespaceUri));
1303 cdataExt.data.index = htodl(strings.offsetForString(mChars));
1322 attr.ns.index = htodl(strings.offsetForString(ae.ns));
1329 attr.rawValue.index = htodl(strings.offsetForString(ae.string));
1338 attr.typedValue.data = htodl(strings.offsetForString(ae.string));
1348 status_t err = mChildren.itemAt(i)->flatten_node(strings, dest,