Home | History | Annotate | Download | only in shadows

Lines Matching refs:pkg

20     private String pkg;
23 public void __constructor__(String pkg, String cls) {
24 if (pkg == null) throw new NullPointerException("package name is null");
26 this.pkg = pkg;
30 public void __constructor__(Context pkg, String cls) {
32 this.pkg = pkg.getPackageName();
36 public void __constructor__(Context pkg, Class<?> cls) {
37 this.pkg = pkg.getPackageName();
43 return pkg;
56 String pkg = in.readString();
58 return new ComponentName(pkg, cls);
64 out.writeString(pkg);
88 if (pkg != null ? !pkg.equals(that.pkg) : that.pkg != null) return false;
95 int result = pkg != null ? pkg.hashCode() : 0;
103 "pkg='" + pkg + '\'' +