Lines Matching refs:Lazy
19 import dagger.Lazy;
29 @Inject public Lazy<PackagePrivate> lpp2;
30 @Inject public Provider<Lazy<PackagePrivate>> plpp2;
34 @Inject public Lazy<Generic2<PackagePrivate>> lgpp2;
35 @Inject public Provider<Lazy<Generic2<PackagePrivate>>> plgpp2;
39 public Lazy<PackagePrivate> lpp;
40 public Provider<Lazy<PackagePrivate>> plpp;
44 public Lazy<Generic<PackagePrivate>> lgpp;
45 public Provider<Lazy<Generic<PackagePrivate>>> plgpp;
51 Lazy<PackagePrivate> lpp, in Exposed()
52 Provider<Lazy<PackagePrivate>> plpp, in Exposed()
56 Lazy<Generic<PackagePrivate>> lgpp, in Exposed()
57 Provider<Lazy<Generic<PackagePrivate>>> plgpp) { in Exposed()