Home
last modified time | relevance | path

Searched refs:jitDisabled (Results 1 – 4 of 4) sorted by relevance

/external/guice/core/src/com/google/inject/internal/
DInjectorOptionsProcessor.java37 private boolean jitDisabled = false; field in InjectorOptionsProcessor
53 jitDisabled = true; in visit()
74 jitDisabled, in getOptions()
82 jitDisabled || parentOptions.jitDisabled, in getOptions()
DInjectorImpl.java73 final boolean jitDisabled; field in InjectorImpl.InjectorOptions
78 InjectorOptions(Stage stage, boolean jitDisabled, boolean disableCircularProxies, in InjectorOptions() argument
81 this.jitDisabled = jitDisabled; in InjectorOptions()
91 .add("jitDisabled", jitDisabled) in toString()
254 if (options.jitDisabled in getJustInTimeBinding()
258 throw errors.jitDisabled(key).toException(); in getJustInTimeBinding()
282 return createJustInTimeBindingRecursive(key, errors, options.jitDisabled, jitType); in getJustInTimeBinding()
664 jitBinding && options.jitDisabled,
779 boolean jitDisabled, JitLimitation jitType) throws ErrorsException {
783 && jitDisabled && !parent.options.jitDisabled) {
[all …]
DConstructorBindingImpl.java262 throw errors.jitDisabled(key).toException(); in get()
DErrors.java150 public Errors jitDisabled(Key key) { in jitDisabled() method in Errors