HomeSort by relevance Sort by last modified time
    Searched full:assisted (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedMethod.java 27 * Details about how a method in an assisted inject factory will be assisted.
35 * Returns the factory method that is being assisted.
52 * Returns all non-assisted dependencies required to construct and inject
AssistedInject.java 32 * annotations. The assisted parameters must exactly match one corresponding factory method within
39 * annotated with {@code @AssistedInject} trigger a "backwards compatibility mode". The assisted
47 * <code>@Assisted</code>, or they must be injectable.
FactoryModuleBuilder.java 46 * parameter requires an {@literal @}{@link Assisted} annotation. This serves to document that the
54 * <strong>{@literal @}Assisted Date startDate</strong>,
55 * <strong>{@literal @}Assisted Money amount</strong>) {
76 * <strong>{@literal @}Assisted Date startDate</strong>,
77 * <strong>{@literal @}Assisted Money amount</strong>) {
85 * <strong>{@literal @}Assisted Money amount</strong>) {
136 * the same type, use a named {@literal @}{@link Assisted} annotation to disambiguate the
141 * <strong>{@literal @}Assisted("startDate")</strong> Date startDate,
142 * <strong>{@literal @}Assisted("dueDate")</strong> Date dueDate,
153 * <strong>{@literal @}Assisted("startDate")</strong> Date startDate
    [all...]
Assisted.java 36 public @interface Assisted {
39 * The unique name for this parameter. This is matched to the {@literal @Assisted} constructor
FactoryProvider2.java 95 static final Assisted DEFAULT_ANNOTATION = new Assisted() {
101 return Assisted.class;
105 return o instanceof Assisted && ((Assisted) o).value().isEmpty();
113 return "@" + Assisted.class.getName() + "(value=)";
117 /** All the data necessary to perform an assisted inject. */
128 /** All non-assisted dependencies required by this method. */
186 /** Mapping from method to the data about how the method will be assisted. */
453 * marked with {@link AssistedInject}, this requires all {@link Assisted} parameters to exactl
    [all...]
FactoryProvider.java 69 * requires an {@literal @}{@link Assisted} annotation. This serves to document that the parameter
76 * <strong>{@literal @}Assisted Date startDate</strong>,
77 * <strong>{@literal @}Assisted Money amount</strong>) {
105 * the same type, use a named {@literal @}{@link Assisted} annotation to disambiguate the
110 * <strong>{@literal @}Assisted("startDate")</strong> Date startDate,
111 * <strong>{@literal @}Assisted("dueDate")</strong> Date dueDate,
120 * <strong>{@literal @}Assisted("startDate")</strong> Date startDate,
121 * <strong>{@literal @}Assisted("dueDate")</strong> Date dueDate,
122 * <strong>{@literal @}Assisted</strong> Money amount) {
138 * used for the first {@literal @}Assisted constructor parameter, etc.. Annotation names have n
    [all...]
AssistedConstructor.java 59 // categorize params as @Assisted or @Injected
72 * {@link ParameterListKey} is created from the ordered list of {@link Assisted}
81 * {@link Assisted} and {@link Inject}ed).
Parameter.java 65 result.append("@Assisted ");
75 if (annotation.annotationType().equals(Assisted.class)) {
  /external/guice/extensions/grapher/test/com/google/inject/grapher/demo/
DancePartyImpl.java 20 import com.google.inject.assistedinject.Assisted;
24 public DancePartyImpl(@Assisted String thatNewSound, MartyMcFly guitarist) {}
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
ManyConstructorsTest.java 193 @AssistedInject TooManyMatches(@Assisted String name, @Assisted int index) {
196 @AssistedInject TooManyMatches(@Assisted int index, @Assisted String name) {
206 @AssistedInject Foo(@Assisted String name) {
211 @AssistedInject Foo(@Assisted String name, @Assisted int index) {
252 Farm momsFarm(@Assisted("mom") String mom);
253 Farm momAndPopsFarm(@Assisted("mom") String mom, @Assisted("pop") String pop)
    [all...]
FactoryProvider2Test.java 105 public Mustang(double engineSize, @Assisted Color color) {
122 @Assisted Color color) {
162 public Corvette(@Assisted Color color, Float maxMph, @Assisted boolean isConvertable) {
186 public Beetle(@Assisted Color color) {
218 public Porsche(@Assisted Color color, double price) {
249 public Firebird(Provider<String> modifiersProvider, @Assisted Color color) {
282 public Flamingbird(Provider<String> modifiersProvider, @Assisted Provider<Color> colorProvider) {
313 Set<String> extraFeatures, Set<Integer> featureActivationSpeeds, @Assisted Color color) {
341 public Z(Provider<Set<String>> manufacturersProvider, @Assisted Color color)
    [all...]
FactoryProviderTest.java 126 public Mustang(double engineSize, @Assisted Color color) {
141 @Assisted Color color) {
182 public Corvette(@Assisted Color color) {
187 public Corvette(@Assisted Color color, @Assisted boolean isConvertable) {
192 public Corvette(@Assisted Color color, Float maxMph, @Assisted boolean isConvertable) {
211 public Beetle(@Assisted Color color) {
216 public Beetle(@Assisted Color color, @Assisted boolean isConvertable)
    [all...]
ExtensionSpiTest.java 146 @Inject Cat(@Assisted String owner) {}
150 @Inject SimpleCat(@Assisted String owner) {
155 @AssistedInject StrangeCat(@Assisted String owner) {}
156 @AssistedInject StrangeCat(@Assisted Integer age) {}
160 @Inject public ExplodingCat(@Named("catName1") String name, @Assisted String owner,
165 @Inject CatWithAName(@Assisted String owner, @Named("catName2") String name) {
FactoryModuleBuilderTest.java 371 public Mustang(@Assisted Color color) {
379 public Beetle(@Assisted Color color) {
389 @Inject Foo(@Assisted Bar bar, Baz<E> baz) {}
473 @Inject Dog(@Assisted String a, double b) {}
479 @AssistedInject Cat(@Assisted String a, @Named("cat1") String b) {}
480 @AssistedInject Cat(@Assisted int a, @Named("cat2") String b) {}
481 @AssistedInject Cat(@Assisted byte a, @Named("catfail") String b) {} // not a dependency!
536 public AssistedSingleton(@SuppressWarnings("unused") @Assisted String string) {
  /external/fec/
sumsq_mmx.c 3 * MMX-assisted version (also used on SSE)
dotprod_mmx.c 2 * MMX assisted version; also for SSE
dsp.3 3 initdp, freedp, dotprod, sumsq, peakval -\ SIMD-assisted
dotprod_av.c 2 * Altivec-assisted version
README 56 The SIMD-assisted versions generally produce the same results as the C
  /external/syslinux/com32/cmenu/libmenu/
com32io.h 35 /* BIOS Assisted output routines */
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/estimators/
nada.h 12 // Implementation of Network-Assisted Dynamic Adaptation's (NADA's) proposal
  /hardware/interfaces/gnss/1.0/
IAGnssRil.hal 22 * Extended interface for AGNSS RIL support. An Assisted GNSS Radio Interface
  /hardware/interfaces/gnss/1.0/default/
AGnssRil.h 40 * Extended interface for AGNSS RIL support. An Assisted GNSS Radio Interface Layer interface
  /external/mesa3d/docs/
thanks.html 82 <li><b>John Watson</b> assisted with web page design.
  /external/slf4j/slf4j-site/src/site/pages/
localization.html 31 Assisted Localization</b></a>. As its name indicates, CAL10N

Completed in 454 milliseconds

1 2 3 4 5 6 7