HomeSort by relevance Sort by last modified time
    Searched refs:LAZY (Results 1 - 25 of 46) sorted by null

1 2

  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DependencyRequestMapper.java 63 case LAZY:
86 case LAZY:
DependencyVariableNamer.java 20 import dagger.Lazy;
25 * with the {@link DependencyRequest}. I.e. strips out words like "lazy" and "provider" if we
26 * believe that those refer to {@link Lazy} and {@link Provider} rather than the type being
43 case LAZY:
44 return variableName.startsWith("lazy") && !variableName.equals("lazy")
DependencyRequest.java 27 import dagger.Lazy;
76 /** A request for a {@link Lazy}. E.g.: {@code Lazy<Blah>} */
77 LAZY,
97 case LAZY:
312 // inside something (e.g, Provider, Lazy, etc..).
351 } else if (isTypeOf(Lazy.class, type)) {
352 return new AutoValue_DependencyRequest_Factory_KindAndType(Kind.LAZY,
SourceFiles.java 172 case LAZY:
MembersInjectorGenerator.java 366 case LAZY:
BindingGraphValidator.java 39 import dagger.Lazy;
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
obj-macho.c 986 Lazy will remain in place. */
987 #define LAZY 0x01
1055 s->n_desc &= ~LAZY; /* The native tool switches this off too. */
1076 s->n_desc |= (REFE | LAZY | BFD_MACH_O_N_NO_DEAD_STRIP);
1767 unsigned lazy = 0; local
    [all...]
  /external/v8/src/
disassembler.cc 235 Deoptimizer::LAZY);
246 out.AddFormatted(" ;; lazy deoptimization bailout %d", id);
deoptimizer.cc 292 // and patch code for lazy deopt.
417 // Do platform-specific patching to force any activations to lazy deopt.
494 case LAZY:
509 case LAZY: return "lazy";
552 if (type == EAGER || type == SOFT || type == LAZY) {
580 case Deoptimizer::LAZY: {
    [all...]
deoptimizer.h 398 LAZY,
476 // information of a code object to perform lazy deoptimization
499 // The size in bytes of the code required at a lazy deopt patch site.
    [all...]
  /external/guice/core/test/com/google/inject/
BinderTestSuite.java 301 NONE, EAGER, LAZY
315 private CreationTime creationTime = CreationTime.LAZY;
575 assertEquals(CreationTime.LAZY, creationTime);
  /external/v8/src/arm/
deoptimizer-arm.cc 66 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
177 // address for lazy deoptimization) and compute the fp-to-sp delta in
builtins-arm.cc     [all...]
  /external/v8/src/arm64/
deoptimizer-arm64.cc 18 // Size of the code used to patch lazy bailout points.
50 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
155 // address for lazy deoptimization.
builtins-arm64.cc     [all...]
  /external/v8/src/ppc/
deoptimizer-ppc.cc 71 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
187 // address for lazy deoptimization) and compute the fp-to-sp delta in
builtins-ppc.cc     [all...]
  /external/v8/src/runtime/
runtime-compiler.cc 159 if (type == Deoptimizer::LAZY) {
  /external/v8/src/x64/
deoptimizer-x64.cc 79 patcher.masm()->Call(GetDeoptimizationEntry(isolate, i, LAZY),
  /external/v8/src/ia32/
deoptimizer-ia32.cc 53 // big enough for lazy doptimization.
129 // Emit call to lazy deoptimization at all lazy deopt points.
139 // Patch lazy deoptimization entry.
142 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
builtins-ia32.cc 822 Generate_InterpreterNotifyDeoptimizedHelper(masm, Deoptimizer::LAZY);
    [all...]
  /external/v8/src/mips/
deoptimizer-mips.cc 64 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
176 // address for lazy deoptimization) and compute the fp-to-sp delta in
  /external/v8/src/mips64/
deoptimizer-mips64.cc 64 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
176 // address for lazy deoptimization) and compute the fp-to-sp delta in
  /external/v8/src/x87/
deoptimizer-x87.cc 53 // big enough for lazy doptimization.
129 // Emit call to lazy deoptimization at all lazy deopt points.
139 // Patch lazy deoptimization entry.
142 Address deopt_entry = GetDeoptimizationEntry(isolate, i, LAZY);
  /external/guice/extensions/persist/lib/
ejb3-persistence.jar 

Completed in 229 milliseconds

1 2