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

1 2 3 4 5 6 7 8 91011>>

  /external/dagger2/producers/src/test/java/dagger/producers/
ProducedTest.java 29 * Tests {@link Produced}.
35 assertThat(Produced.successful(5).get()).isEqualTo(5);
36 assertThat(Produced.successful("monkey").get()).isEqualTo("monkey");
37 assertThat(Produced.successful(o).get()).isSameAs(o);
43 Produced.failed(cause).get();
54 .addEqualityGroup(Produced.successful(132435), Produced.successful(132435))
55 .addEqualityGroup(Produced.successful("hi"), Produced.successful("hi"))
56 .addEqualityGroup(Produced.failed(e1), Produced.failed(e1)
    [all...]
  /external/smali/baksmali/src/test/resources/DuplicateTest/src/
README 1 The test dex file was produced from these smali files, using
  /frameworks/data-binding/compilerCommon/src/main/grammar-gen/android/databinding/parser/
BindingExpressionListener.java 8 * This interface defines a complete listener for a parse tree produced by
13 * Enter a parse tree produced by the {@code BracketOp}
19 * Exit a parse tree produced by the {@code BracketOp}
26 * Enter a parse tree produced by the {@code Resource}
32 * Exit a parse tree produced by the {@code Resource}
39 * Enter a parse tree produced by the {@code CastOp}
45 * Exit a parse tree produced by the {@code CastOp}
52 * Enter a parse tree produced by the {@code UnaryOp}
58 * Exit a parse tree produced by the {@code UnaryOp}
65 * Enter a parse tree produced by the {@code AndOrOp
    [all...]
BindingExpressionVisitor.java 8 * This interface defines a complete generic visitor for a parse tree produced
16 * Visit a parse tree produced by the {@code BracketOp}
24 * Visit a parse tree produced by the {@code Resource}
32 * Visit a parse tree produced by the {@code CastOp}
40 * Visit a parse tree produced by the {@code UnaryOp}
48 * Visit a parse tree produced by the {@code AndOrOp}
56 * Visit a parse tree produced by the {@code MethodInvocation}
64 * Visit a parse tree produced by the {@code Primary}
72 * Visit a parse tree produced by the {@code Grouping}
80 * Visit a parse tree produced by the {@code TernaryOp
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLParserVisitor.java 8 * This interface defines a complete generic visitor for a parse tree produced
16 * Visit a parse tree produced by {@link XMLParser#content}.
23 * Visit a parse tree produced by {@link XMLParser#element}.
30 * Visit a parse tree produced by {@link XMLParser#prolog}.
37 * Visit a parse tree produced by {@link XMLParser#document}.
44 * Visit a parse tree produced by {@link XMLParser#attribute}.
51 * Visit a parse tree produced by {@link XMLParser#chardata}.
58 * Visit a parse tree produced by {@link XMLParser#reference}.
65 * Visit a parse tree produced by {@link XMLParser#misc}.
XMLParserListener.java 8 * This interface defines a complete listener for a parse tree produced by
13 * Enter a parse tree produced by {@link XMLParser#content}.
18 * Exit a parse tree produced by {@link XMLParser#content}.
24 * Enter a parse tree produced by {@link XMLParser#element}.
29 * Exit a parse tree produced by {@link XMLParser#element}.
35 * Enter a parse tree produced by {@link XMLParser#prolog}.
40 * Exit a parse tree produced by {@link XMLParser#prolog}.
46 * Enter a parse tree produced by {@link XMLParser#document}.
51 * Exit a parse tree produced by {@link XMLParser#document}.
57 * Enter a parse tree produced by {@link XMLParser#attribute}
    [all...]
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
Producers.java 23 import dagger.producers.Produced;
39 * Returns a future of {@link Produced} that represents the completion (either success or failure)
41 * a successful {@code Produced}; if the input future fails, then the resulting future succeeds
42 * with a failing {@code Produced}.
46 * {@code Produced}.
50 public static <T> ListenableFuture<Produced<T>> createFutureProduced(ListenableFuture<T> future) {
55 new Function<T, Produced<T>>() {
57 public Produced<T> apply(final T value) {
58 return Produced.successful(value);
65 private static final FutureFallback<Produced<Object>> FUTURE_FALLBACK_FOR_PRODUCED
    [all...]
SetOfProducedProducer.java 22 import dagger.producers.Produced;
32 * future {@code Set<Produced<T>>} whose elements are populated by subsequent calls to the delegate
38 public final class SetOfProducedProducer<T> extends AbstractProducer<Set<Produced<T>>> {
44 public static <T> Producer<Set<Produced<T>>> create(Producer<Set<T>>... producers) {
55 * Returns a future {@link Set} of {@link Produced} values whose iteration order is that of the
59 * {@code Produced} element will fail with a NullPointerException.
63 * {@link Produced}.
68 public ListenableFuture<Set<Produced<T>>> compute(ProducerMonitor unusedMonitor) {
69 List<ListenableFuture<Produced<Set<T>>>> futureProducedSets =
70 new ArrayList<ListenableFuture<Produced<Set<T>>>>(contributingProducers.size())
    [all...]
  /external/bsdiff/
README.chromium 12 produced by Xdelta, and 15% smaller than those produced by .RTPatch.
  /external/dagger2/compiler/src/it/producers-functional-tests/src/test/java/producerstest/
MultibindingTest.java 20 import dagger.producers.Produced;
47 Produced.successful("foo"),
48 Produced.successful("foo1"),
49 Produced.successful("foo2"),
50 Produced.successful("bar"),
51 Produced.successful("bar1"),
52 Produced.successful("bar2"));
59 Set<Produced<String>> possiblyThrowingSet = multibindingComponent.possiblyThrowingSet().get();
62 for (Produced<String> str : possiblyThrowingSet) {
  /external/dagger2/compiler/src/it/producers-functional-tests/src/main/java/producerstest/
MultibindingComponent.java 19 import dagger.producers.Produced;
29 ListenableFuture<Set<Produced<String>>> successfulSet();
32 ListenableFuture<Set<Produced<String>>> possiblyThrowingSet();
  /external/dagger2/producers/src/test/java/dagger/producers/internal/
SetOfProducedProducerTest.java 21 import dagger.producers.Produced;
40 Producer<Set<Produced<Integer>>> producer =
46 Produced.successful(1),
47 Produced.successful(2),
48 Produced.successful(5),
49 Produced.successful(7));
55 Producer<Set<Produced<Integer>>> producer =
61 Produced.successful(1), Produced.successful(2), Produced.<Integer>failed(e))
    [all...]
ProducersTest.java 21 import dagger.producers.Produced;
41 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
48 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
55 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
63 ListenableFuture<Produced<String>> producedFuture = Producers.createFutureProduced(future);
71 private <T> ExecutionException getProducedException(Produced<T> produced) {
73 produced.get();
74 throw new IllegalArgumentException("produced did not throw");
  /external/dagger2/producers/src/main/java/dagger/producers/
Produced.java 28 * injected, you can also inject {@code Produced<T>}, which enables handling of any exceptions that
33 * UserInfo criticalInfo, {@literal Produced<ExtraInfo>} noncriticalInfo) {
46 public abstract class Produced<T> {
55 * Two {@code Produced} objects compare equal if both are successful with equal values, or both
65 /** Returns a successful {@code Produced}, whose {@link #get} will return the given value. */
66 public static <T> Produced<T> successful(@Nullable T value) {
71 * Returns a failed {@code Produced}, whose {@link #get} will throw an
74 public static <T> Produced<T> failed(Throwable throwable) {
78 private static final class Successful<T> extends Produced<T> {
105 private static final class Failed<T> extends Produced<T>
    [all...]
  /external/javassist/sample/preproc/
package.html 6 The produced class files are saved on a local disk.
  /external/llvm/test/CodeGen/AArch64/
inline-asm-constraints-badK.ll 4 ; 32-bit bitpattern ending in 1101 can't be produced.
inline-asm-constraints-badK2.ll 4 ; 32-bit bitpattern ending in 1101 can't be produced.
inline-asm-constraints-badL.ll 4 ; 32-bit bitpattern ending in 1101 can't be produced.
  /external/skia/tools/json/
SkJSONRenderer.h 15 * Takes a JSON document produced by SkJSONCanvas and issues its draw commands to the target
  /prebuilts/tools/common/m2/repository/com/google/dagger/dagger-producers/2.0-beta/
dagger-producers-2.0-beta-sources.jar 
  /system/ca-certificates/
README.cacerts 2 where "hash" is the subject hash produced by:
  /external/llvm/test/Bitcode/
padding.test 4 A file padded with '\n' can be produced under a peculiar situation:
6 * A .bc is produced os OS X, but without a darwin triple, so it has no
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/
antlr.properties 2 # and configuration options that may or may not be produced by
  /external/clang/test/FixIt/
no-fixit.cpp 3 // test that the diagnostics produced by this code do not include fixit hints
  /external/sl4a/ScriptingLayerForAndroid/res/drawable/
atari_small_notice.txt 10 COMMENT Produced with bdfedit, a tcl/tk font editing program

Completed in 797 milliseconds

1 2 3 4 5 6 7 8 91011>>