Lines Matching refs:it

271     ResourceDirIterator it(set, String8(resType));
273 while ((res=it.next()) == NO_ERROR) {
276 it.getBaseName().string(), it.getFile()->getPrintableSource().string());
278 String16 baseName(it.getBaseName());
286 it.getPath().string());
291 String8 resPath = it.getPath();
293 table->addEntry(SourcePos(it.getPath(), 0), String16(assets->getPackage()),
298 &it.getParams());
299 assets->addResource(it.getLeafName(), resPath, it.getFile(), type8);
311 ResourceDirIterator it(set, String8(type));
314 while ((res=it.next()) == NO_ERROR) {
315 res = preProcessImage(bundle, assets, it.getFile(), NULL);
328 ResourceDirIterator it(set, String8("drawable"));
331 while ((res=it.next()) == NO_ERROR) {
332 res = postProcessImage(assets, table, it.getFile());
602 // didn't find a match fall through and add it..
990 ResourceDirIterator it(resources->valueAt(index), String8("values"));
992 while ((res=it.next()) == NO_ERROR) {
993 sp<AaptFile> file = it.getFile();
994 res = compileResourceFile(bundle, assets, file, it.getParams(),
1041 ResourceDirIterator it(layouts, String8("layout"));
1042 while ((err=it.next()) == NO_ERROR) {
1043 String8 src = it.getFile()->getPrintableSource();
1044 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1047 block.setTo(it.getFile()->getData(), it.getFile()->getSize(), true);
1061 ResourceDirIterator it(anims, String8("anim"));
1062 while ((err=it.next()) == NO_ERROR) {
1063 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1076 ResourceDirIterator it(animators, String8("animator"));
1077 while ((err=it.next()) == NO_ERROR) {
1078 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1091 ResourceDirIterator it(interpolators, String8("interpolator"));
1092 while ((err=it.next()) == NO_ERROR) {
1093 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1106 ResourceDirIterator it(xmls, String8("xml"));
1107 while ((err=it.next()) == NO_ERROR) {
1108 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1128 ResourceDirIterator it(colors, String8("color"));
1129 while ((err=it.next()) == NO_ERROR) {
1130 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1143 ResourceDirIterator it(menus, String8("menu"));
1144 while ((err=it.next()) == NO_ERROR) {
1145 String8 src = it.getFile()->getPrintableSource();
1146 err = compileXmlFile(assets, it.getFile(), &table, xmlFlags);
1151 block.setTo(it.getFile()->getData(), it.getFile()->getSize(), true);
1242 // parse it with the comments intact, so that we can use them to
1974 " * aapt tool from the resource data it found. It\n"
1987 // as a target in the dependency file right next to it.
2197 // If there is no '.', we'll assume that it's one of the built in names.