HomeSort by relevance Sort by last modified time
    Searched refs:ConstructionContext (Results 1 - 17 of 17) sorted by null

  /external/guice/core/src/com/google/inject/internal/
InternalContext.java 41 private Map<Object, ConstructionContext<?>> constructionContexts = Maps.newHashMap();
58 public <T> ConstructionContext<T> getConstructionContext(Object key) {
59 ConstructionContext<T> constructionContext
60 = (ConstructionContext<T>) constructionContexts.get(key);
61 if (constructionContext == null) {
62 constructionContext = new ConstructionContext<T>();
63 constructionContexts.put(key, constructionContext);
65 return constructionContext;
    [all...]
ProviderInternalFactory.java 45 final ConstructionContext<T> constructionContext = context.getConstructionContext(this);
48 if (constructionContext.isConstructing()) {
52 T proxyType = (T) constructionContext.createProxy(
58 constructionContext.startConstruction();
61 return provision(provider, errors, dependency, constructionContext);
65 return provision(provider, errors, dependency, constructionContext);
70 constructionContext.removeCurrentReference();
71 constructionContext.finishConstruction();
80 ConstructionContext<T> constructionContext) throws ErrorsException
    [all...]
ConstructorInjector.java 65 final ConstructionContext<T> constructionContext = context.getConstructionContext(this);
68 if (constructionContext.isConstructing()) {
70 return constructionContext.createProxy(
76 T t = constructionContext.getCurrentReference();
81 constructionContext.startConstruction();
85 return provision(errors, context, constructionContext);
89 return provision(errors, context, constructionContext);
94 constructionContext.finishConstruction();
100 ConstructionContext<T> constructionContext) throws ErrorsException
    [all...]
ConstructionContext.java 30 final class ConstructionContext<T> {
InternalFactoryToInitializableAdapter.java 51 Dependency<?> dependency, ConstructionContext<T> constructionContext) throws ErrorsException {
53 return super.provision(provider, errors, dependency, constructionContext);
BoundProviderFactory.java 70 ConstructionContext<T> constructionContext) throws ErrorsException {
72 return super.provision(provider, errors, dependency, constructionContext);
ProvidedByInternalFactory.java 78 Dependency<?> dependency, ConstructionContext<T> constructionContext)
81 Object o = super.provision(provider, errors, dependency, constructionContext);
SingletonScope.java 106 * - constructionContext: manipulations with proxies list or instance initialization
110 * -- guards constructionContext for all operations except proxy creation
121 * ConstructionContext is not thread-safe, so each call should be synchronized.
123 final ConstructionContext<T> constructionContext = new ConstructionContext<T>();
158 synchronized (constructionContext) {
161 constructionContext.setProxyDelegates(provided);
172 synchronized (constructionContext) {
173 constructionContext.finishConstruction()
    [all...]
  /external/skia/experimental/svg/model/
SkSVGDOM.cpp 332 struct ConstructionContext {
333 ConstructionContext(SkSVGIDMapper* mapper) : fParent(nullptr), fIDMapper(mapper) {}
334 ConstructionContext(const ConstructionContext& other, const sk_sp<SkSVGNode>& newParent)
375 sk_sp<SkSVGNode> construct_svg_node(const SkDOM& dom, const ConstructionContext& ctx,
402 ConstructionContext localCtx(ctx, node);
423 ConstructionContext ctx(&dom->fIDMapper);
  /external/guice/extensions/persist/lib/
xwork-2.0.4.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
sisu-guice-3.1.3-no_aop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/3.1.0/
sisu-guice-3.1.0-no_aop.jar 
sisu-guice-3.1.0.jar 
  /external/testng/lib-supplied/
guice-2.0.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /prebuilts/tools/common/m2/repository/org/sonatype/sisu/sisu-guice/2.1.7/
sisu-guice-2.1.7-noaop.jar 
  /external/guice/extensions/struts2/lib/
xwork-core-2.2.1.jar 

Completed in 3845 milliseconds