Home
last modified time | relevance | path

Searched refs:analyseCode (Results 201 – 225 of 235) sorted by relevance

12345678910

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/ast/
H A DBinaryExpression.java66 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in BinaryExpression
70 return this.right.analyseCode( in analyseCode()
72 this.left.analyseCode(currentScope, flowContext, flowInfo).unconditionalInits()) in analyseCode()
75 flowInfo = this.left.analyseCode(currentScope, flowContext, flowInfo).unconditionalInits(); in analyseCode()
80 flowInfo = this.right.analyseCode(currentScope, flowContext, flowInfo).unconditionalInits(); in analyseCode()
H A DReference.java51 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in Reference
H A DSwitchStatement.java118 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in SwitchStatement
120 flowInfo = this.expression.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
178 caseInits = statement.analyseCode(this.scope, switchContext, caseInits); in analyseCode()
H A DQualifiedNameReference.java154 .analyseCode(currentScope, flowContext, flowInfo) in analyseAssignment()
186 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in QualifiedNameReference
187 return analyseCode(currentScope, flowContext, flowInfo, true); in analyseCode()
191 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, bo… in analyseCode() method in QualifiedNameReference
H A DExpression.java241 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in Expression
255 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, bo… in analyseCode() method in Expression
256 return analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
H A DAssignment.java62 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in Assignment
H A DCastExpression.java77 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in CastExpression
79 .analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
H A DAllocationExpression.java96 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in AllocationExpression
109 .analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
H A DSwitchExpression.java680 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in SwitchExpression
681 flowInfo = super.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
H A DClinit.java52 public void analyseCode( in analyseCode() method in Clinit
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DQualifiedNameReference.java149 .analyseCode(currentScope, flowContext, flowInfo) in analyseAssignment()
180 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in QualifiedNameReference
181 return analyseCode(currentScope, flowContext, flowInfo, true); in analyseCode()
184 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, bo… in analyseCode() method in QualifiedNameReference
H A DExpression.java230 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in Expression
244 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo, bo… in analyseCode() method in Expression
245 return analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
H A DReferenceExpression.java214 implicitLambda.analyseCode(currentScope, in generateImplicitLambda()
388 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method
392 this.lhs.analyseCode(currentScope, flowContext, flowInfo, true); in analyseCode()
H A DCastExpression.java69 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in CastExpression
71 .analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
H A DCompilationUnitDeclaration.java112 public void analyseCode() { in analyseCode() method in CompilationUnitDeclaration
118 this.types[i].analyseCode(this.scope); in analyseCode()
H A DAssignment.java58 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in Assignment
H A DAllocationExpression.java105 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in AllocationExpression
118 .analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
H A DClinit.java48 public void analyseCode( in analyseCode() method in Clinit
H A DLambdaExpression.java469 return this.body.analyseCode(this.scope,
483 …public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, final FlowInfo flowI…
508 lambdaInfo = this.body.analyseCode(this.scope, methodContext, lambdaInfo);
H A DStatement.java78 public abstract FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flo… in analyseCode() method in Statement
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DAbstractMethodDeclaration.java97 public abstract void analyseCode(ClassScope scope, in analyseCode() method in AbstractMethodDeclaration
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/
H A DCompiler.java776 if (!this.options.ignoreMethodBodies) unit.analyseCode(); // flow analysis in process()
932 if (analyzeCode) unit.analyseCode(); in resolve()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/workspace/Compiler/src/org/eclipse/jdt/internal/compiler/ast/
H A DBinaryExpression.java33 public FlowInfo analyseCode( in analyseCode() method in BinaryExpression
39 .analyseCode( in analyseCode()
42 left.analyseCode(currentScope, flowContext, flowInfo).unconditionalInits()) in analyseCode()
H A DAbstractMethodDeclaration.java73 …public abstract void analyseCode(ClassScope classScope, InitializationFlowContext initializationCo… in analyseCode() method in AbstractMethodDeclaration
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/
H A DCompiler.java908 if (!this.options.ignoreMethodBodies) unit.analyseCode(); // flow analysis in process()
1076 if (analyzeCode) unit.analyseCode(); in resolve()

12345678910