Home | History | Annotate | Download | only in pm

Lines Matching defs:Instrumentation

416             int N = p.instrumentation.size();
418 pi.instrumentation = new InstrumentationInfo[N];
420 pi.instrumentation[i] = generateInstrumentationInfo(
421 p.instrumentation.get(i), flags);
1269 } else if (tagName.equals("instrumentation")) {
1343 if (!foundApp && pkg.instrumentation.size() == 0) {
1344 outError[0] = "<manifest> does not contain an <application> or <instrumentation>";
1803 private Instrumentation parseInstrumentation(Package owner, Resources res,
1815 mParseInstrumentationArgs.tag = "<instrumentation>";
1820 Instrumentation a = new Instrumentation(mParseInstrumentationArgs,
1846 outError[0] = "<instrumentation> does not specify targetPackage";
1851 if (!parseAllMetaData(res, parser, attrs, "<instrumentation>", a,
1857 owner.instrumentation.add(a);
3457 public final ArrayList<Instrumentation> instrumentation = new ArrayList<Instrumentation>(0);
3580 for (int i=instrumentation.size()-1; i>=0; i--) {
3581 instrumentation.get(i).setPackageName(newName);
3606 for (int i=instrumentation.size()-1; i>=0; i--) {
3607 if (name.equals(instrumentation.get(i).className)) {
4050 public final static class Instrumentation extends Component {
4053 public Instrumentation(final ParsePackageItemArgs args, final InstrumentationInfo _info) {
4065 sb.append("Instrumentation{");
4075 Instrumentation i, int flags) {