Home
last modified time | relevance | path

Searched refs:innerInferenceHelper (Results 1 – 6 of 6) sorted by relevance

/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DExplicitConstructorCall.java82 private InnerInferenceHelper innerInferenceHelper; field in ExplicitConstructorCall
398 if (this.innerInferenceHelper == null) in resolve()
399 this.innerInferenceHelper = new InnerInferenceHelper(); in resolve()
542 return this.innerInferenceHelper != null;
545 this.innerInferenceHelper = null;
547 public InnerInferenceHelper innerInferenceHelper() {
548 return this.innerInferenceHelper;
H A DAllocationExpression.java80 protected InnerInferenceHelper innerInferenceHelper; field in AllocationExpression
434 if (this.innerInferenceHelper == null) in resolveType()
435 this.innerInferenceHelper = new InnerInferenceHelper(); in resolveType()
791 return this.innerInferenceHelper != null;
794 this.innerInferenceHelper = null;
796 public InnerInferenceHelper innerInferenceHelper() {
797 return this.innerInferenceHelper;
H A DInvocation.java87 InnerInferenceHelper innerInferenceHelper(); in innerInferenceHelper() method
H A DMessageSend.java118 protected InnerInferenceHelper innerInferenceHelper; field in MessageSend
657 if (this.innerInferenceHelper == null) in resolveType()
658 this.innerInferenceHelper = new InnerInferenceHelper(); in resolveType()
1074 return this.innerInferenceHelper != null;
1077 this.innerInferenceHelper = null;
1079 public InnerInferenceHelper innerInferenceHelper() {
1080 return this.innerInferenceHelper;
H A DQualifiedAllocationExpression.java414 if (this.innerInferenceHelper == null) in resolveTypeForQualifiedAllocationExpression()
415 this.innerInferenceHelper = new InnerInferenceHelper(); in resolveTypeForQualifiedAllocationExpression()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/lookup/
H A DScope.java789 InnerInferenceHelper innerInferenceHelper = invocation.innerInferenceHelper();
796 …int nextLevel = compatibilityLevel18FromInner(method, innerInferenceHelper, invocationArguments[i]…
827 if (TypeBinding.notEquals(argType, resolvedType) && innerInferenceHelper != null)
828 innerInferenceHelper.registerInnerResult(method, resolvedType, argLen, i);
841 if (innerInferenceHelper != null)
842 innerInferenceHelper.registerInnerResult(method, invocArg.resolvedType, argLen, i);
881 …int level1 = compatibilityLevel18FromInner(method, innerInferenceHelper, ce.valueIfTrue, argType, …
884 …int level2 = compatibilityLevel18FromInner(method, innerInferenceHelper, ce.valueIfFalse, argType,…
4382 InnerInferenceHelper innerInferenceHelper = ((Invocation)invocationSite).innerInferenceHelper();
4383 if (innerInferenceHelper != null)
[all …]