Home | History | Annotate | Download | only in pm

Lines Matching defs:Instrumentation

154     private static final String TAG_INSTRUMENTATION = "instrumentation";
585 int N = p.instrumentation.size();
587 pi.instrumentation = new InstrumentationInfo[N];
589 pi.instrumentation[i] = generateInstrumentationInfo(
590 p.instrumentation.get(i), flags);
2133 if (!foundApp && pkg.instrumentation.size() == 0) {
2134 outError[0] = "<manifest> does not contain an <application> or <instrumentation>";
2660 private Instrumentation parseInstrumentation(Package owner, Resources res,
2673 mParseInstrumentationArgs.tag = "<instrumentation>";
2678 Instrumentation a = new Instrumentation(mParseInstrumentationArgs,
2704 outError[0] = "<instrumentation> does not specify targetPackage";
2709 if (!parseAllMetaData(res, parser, "<instrumentation>", a,
2715 owner.instrumentation.add(a);
4757 public final ArrayList<Instrumentation> instrumentation = new ArrayList<Instrumentation>(0);
5054 for (int i=instrumentation.size()-1; i>=0; i--) {
5055 instrumentation.get(i).setPackageName(newName);
5080 for (int i=instrumentation.size()-1; i>=0; i--) {
5081 if (name.equals(instrumentation.get(i).className)) {
5634 public final static class Instrumentation extends Component<IntentInfo> {
5637 public Instrumentation(final ParsePackageItemArgs args, final InstrumentationInfo _info) {
5649 sb.append("Instrumentation{");
5659 Instrumentation i, int flags) {