Home | History | Annotate | Download | only in aapt

Lines Matching refs:Item

584     const String16 item16("item");
763 const String16 item16("item");
1244 "Tag <item> 'format' attribute value \"%s\" not valid\n",
1251 "A 'type' attribute is required for <item>\n");
1400 "Found tag %s where item is expected\n",
1455 "Tag <%s> can not appear inside <%s>, only <item>\n",
1489 "Illegal 'quantity' attribute is <item> inside <plurals>\n");
1494 "A 'quantity' attribute is required for <item
1503 "A 'name' attribute is required for <item>\n");
1592 "Found text \"%s\" where item tag is expected\n",
3040 ResourceTable::Item::Item(const SourcePos& _sourcePos,
3066 sourcePos.error("Resource entry %s is already defined as a single item.\n"
3079 Item item(sourcePos, false, value, style);
3082 const Item& item(mBag.valueAt(0));
3086 item.sourcePos.file.string(), item.sourcePos.line);
3098 mItem = item;
3113 Item item(sourcePos, isId, value, style, format);
3121 const Item& item(mBag.valueAt(origKey));
3122 sourcePos.error("Resource entry %s already has bag item %s.\n"
3125 item.sourcePos.file.string(), item.sourcePos.line);
3130 mBag.replaceValueFor(key, item);
3133 mBag.add(key, item);
3156 const Item& it = mBag.valueAt(i);
3171 // const Item& item(mBag.valueAt(i));
3173 // item.sourcePos.file.string(), item.sourcePos.line);
3205 mPos.error("Error retrieving parent for item: %s '%s'.\n",
3213 Item& it = mBag.editValueAt(i);
3232 Item& it = mItem;
3244 Item& it = mBag.editValueAt(i);
3254 mPos.error("Error: entry %s is not a single item or a bag.\n",
3264 Item& it = mItem;
3271 Item& it = mBag.editValueAt(i);
3277 mPos.error("Error: entry %s is not a single item or a bag.\n",
3307 const Item& it = mItem;
3315 printf("Writing item (%s): type=%d, data=0x%x, res0=0x%x\n",
3329 KeyedVector<uint32_t, const Item*> items;
3331 const Item& it = mBag.valueAt(i);
3348 const Item& it = *items.valueAt(i);
3825 const ResourceTable::Item* ResourceTable::getItem(uint32_t resID, uint32_t attrID) const
3834 const Item& it = e->getBag().valueAt(i);
3851 const Item* item = getItem(resID, attrID);
3854 if (item != NULL) {
3855 if (item->evaluating) {
3860 if (&e->getBag().valueAt(i) == item) {
3869 item->evaluating = true;
3870 res = stringToValue(outValue, NULL, item->value, false, false, item->bagKeyId);
3881 item->evaluating = false;