Home
last modified time | relevance | path

Searched refs:analyseCode (Results 1 – 25 of 235) sorted by relevance

12345678910

/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DEqualExpression.java30 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in EqualExpression
37 return right.analyseCode(currentScope, flowContext, in analyseCode()
41 return right.analyseCode(currentScope, flowContext, in analyseCode()
50 .analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
54 .analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
58 return right.analyseCode( in analyseCode()
68 return right.analyseCode(currentScope, flowContext, in analyseCode()
72 return right.analyseCode(currentScope, flowContext, in analyseCode()
81 .analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
85 .analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
[all …]
H A DArrayReference.java38 return analyseCode(currentScope, flowContext, flowInfo) in analyseAssignment()
41 return assignment.expression.analyseCode( in analyseAssignment()
44 analyseCode(currentScope, flowContext, flowInfo) in analyseAssignment()
49 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in ArrayReference
52 return position.analyseCode(currentScope, flowContext, receiver in analyseCode()
53 .analyseCode(currentScope, flowContext, flowInfo)); in analyseCode()
H A DAND_AND_Expression.java30 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in AND_AND_Expression
44 FlowInfo mergedInfo = left.analyseCode(currentScope, flowContext, in analyseCode()
46 mergedInfo = right.analyseCode(currentScope, flowContext, in analyseCode()
53 FlowInfo leftInfo = left.analyseCode(currentScope, flowContext, in analyseCode()
67 rightInfo = right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DOR_OR_Expression.java30 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in OR_OR_Expression
44 FlowInfo mergedInfo = left.analyseCode(currentScope, flowContext, in analyseCode()
46 mergedInfo = right.analyseCode(currentScope, flowContext, in analyseCode()
53 FlowInfo leftInfo = left.analyseCode(currentScope, flowContext, in analyseCode()
68 rightInfo = right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DFieldReference.java72 flowInfo = receiver.analyseCode(currentScope, flowContext, flowInfo, in analyseAssignment()
75 flowInfo = assignment.expression.analyseCode(currentScope, in analyseAssignment()
107 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in FieldReference
110 return analyseCode(currentScope, flowContext, flowInfo, true); in analyseCode()
113 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in FieldReference
116 receiver.analyseCode(currentScope, flowContext, flowInfo, !binding in analyseCode()
H A DConditionalExpression.java48 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in ConditionalExpression
58 flowInfo = condition.analyseCode(currentScope, flowContext, flowInfo, in analyseCode()
68 trueFlowInfo = valueIfTrue.analyseCode(currentScope, flowContext, in analyseCode()
78 falseFlowInfo = valueIfFalse.analyseCode(currentScope, flowContext, in analyseCode()
H A DIfStatement.java67 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in IfStatement
71 flowInfo = condition.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
90 thenFlowInfo = thenStatement.analyseCode(currentScope, in analyseCode()
109 elseFlowInfo = elseStatement.analyseCode(currentScope, in analyseCode()
H A DForStatement.java61 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in ForStatement
71 flowInfo = initializations[i++].analyseCode(scope, flowContext, in analyseCode()
95 flowInfo = condition.analyseCode(scope, in analyseCode()
137 actionInfo = action.analyseCode(scope, loopingContext, in analyseCode()
163 actionInfo = increments[i++].analyseCode(scope, loopContext, in analyseCode()
H A DUnaryExpression.java31 public FlowInfo analyseCode(BlockScope currentScope, in analyseCode() method in UnaryExpression
35 return this.expression.analyseCode(currentScope, flowContext, in analyseCode()
38 return this.expression.analyseCode(currentScope, flowContext, in analyseCode()
/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 DEqualExpression.java24 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in EqualExpression
29 return right.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
32 return right.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
38 return left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
41 return left.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
44 return right.analyseCode( in analyseCode()
51 return right.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
54 return right.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
60 return left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
63 return left.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
[all …]
H A DArrayReference.java38 return analyseCode(currentScope, flowContext, flowInfo).unconditionalInits(); in analyseAssignment()
42 .analyseCode( in analyseAssignment()
45 analyseCode(currentScope, flowContext, flowInfo).unconditionalInits()) in analyseAssignment()
49 public FlowInfo analyseCode( in analyseCode() method in ArrayReference
54 return position.analyseCode( in analyseCode()
57 receiver.analyseCode(currentScope, flowContext, flowInfo)); in analyseCode()
H A DOR_OR_Expression.java29 public FlowInfo analyseCode( in analyseCode() method in OR_OR_Expression
42 FlowInfo mergedInfo = left.analyseCode(currentScope, flowContext, flowInfo).unconditionalInits(); in analyseCode()
43 mergedInfo = right.analyseCode(currentScope, flowContext, mergedInfo); in analyseCode()
49 FlowInfo leftInfo = left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
61 rightInfo = right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DAND_AND_Expression.java29 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in AND_AND_Expression
40 FlowInfo mergedInfo = left.analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
42 mergedInfo = right.analyseCode(currentScope, flowContext, mergedInfo); in analyseCode()
48 FlowInfo leftInfo = left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
59 rightInfo = right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DIfStatement.java57 public FlowInfo analyseCode( in analyseCode() method in IfStatement
63 flowInfo = condition.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
80 thenStatement.analyseCode(currentScope, flowContext, thenFlowInfo); in analyseCode()
103 elseStatement.analyseCode(currentScope, flowContext, elseFlowInfo); in analyseCode()
H A DForStatement.java59 public FlowInfo analyseCode( in analyseCode() method in ForStatement
70 flowInfo = initializations[i].analyseCode(scope, flowContext, flowInfo); in analyseCode()
89 condition.analyseCode( in analyseCode()
130 actionInfo = action.analyseCode(scope, loopingContext, actionInfo); in analyseCode()
148 actionInfo = increments[i].analyseCode(scope, loopContext, actionInfo); in analyseCode()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DArrayReference.java45 return analyseCode(currentScope, flowContext, flowInfo); in analyseAssignment()
49 .analyseCode( in analyseAssignment()
52 analyseCode(currentScope, flowContext, flowInfo).unconditionalInits()); in analyseAssignment()
62 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in ArrayReference
64 flowInfo = this.receiver.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
65 flowInfo = this.position.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
H A DEqualExpression.java136 result = this.right.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
139 result = this.right.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
145 result = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
148 result = this.left.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
152 result = this.right.analyseCode( in analyseCode()
160 result = this.right.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
163 result = this.right.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
169 result = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
172 result = this.left.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
176 result = this.right.analyseCode( in analyseCode()
[all …]
H A DAND_AND_Expression.java34 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in AND_AND_Expression
45 FlowInfo mergedInfo = this.left.analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
47 mergedInfo = this.right.analyseCode(currentScope, flowContext, mergedInfo); in analyseCode()
53 FlowInfo leftInfo = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
69 rightInfo = this.right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DOR_OR_Expression.java35 public FlowInfo analyseCode( in analyseCode() method in OR_OR_Expression
48 …FlowInfo mergedInfo = this.left.analyseCode(currentScope, flowContext, flowInfo).unconditionalInit… in analyseCode()
50 mergedInfo = this.right.analyseCode(currentScope, flowContext, mergedInfo); in analyseCode()
57 FlowInfo leftInfo = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
74 rightInfo = this.right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DCombinedBinaryExpression.java120 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, in analyseCode() method in CombinedBinaryExpression
124 return super.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
132 flowInfo = cursor.left.analyseCode(currentScope, flowContext, flowInfo). in analyseCode()
140 analyseCode(currentScope, flowContext, flowInfo). in analyseCode()
146 return this.right.analyseCode(currentScope, flowContext, flowInfo). in analyseCode()
/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 DArrayReference.java49 return analyseCode(currentScope, flowContext, flowInfo); in analyseAssignment()
53 .analyseCode( in analyseAssignment()
56 analyseCode(currentScope, flowContext, flowInfo).unconditionalInits()); in analyseAssignment()
64 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in ArrayReference
65 flowInfo = this.receiver.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
67 flowInfo = this.position.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
H A DAND_AND_Expression.java38 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, FlowInfo flowInfo) { in analyseCode() method in AND_AND_Expression
49 FlowInfo mergedInfo = this.left.analyseCode(currentScope, flowContext, flowInfo) in analyseCode()
51 mergedInfo = this.right.analyseCode(currentScope, flowContext, mergedInfo); in analyseCode()
57 FlowInfo leftInfo = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
74 rightInfo = this.right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DOR_OR_Expression.java39 public FlowInfo analyseCode( in analyseCode() method in OR_OR_Expression
52 …FlowInfo mergedInfo = this.left.analyseCode(currentScope, flowContext, flowInfo).unconditionalInit… in analyseCode()
54 mergedInfo = this.right.analyseCode(currentScope, flowContext, mergedInfo); in analyseCode()
61 FlowInfo leftInfo = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
79 rightInfo = this.right.analyseCode(currentScope, flowContext, rightInfo); in analyseCode()
H A DEqualExpression.java149 result = this.right.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
152 result = this.right.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
159 result = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
162 result = this.left.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
167 result = this.right.analyseCode( in analyseCode()
175 result = this.right.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
179 result = this.right.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
185 result = this.left.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
189 result = this.left.analyseCode(currentScope, flowContext, flowInfo).asNegatedCondition(); in analyseCode()
193 result = this.right.analyseCode( in analyseCode()
[all …]
H A DCombinedBinaryExpression.java124 public FlowInfo analyseCode(BlockScope currentScope, FlowContext flowContext, in analyseCode() method in CombinedBinaryExpression
128 return super.analyseCode(currentScope, flowContext, flowInfo); in analyseCode()
133 flowInfo = cursor.left.analyseCode(currentScope, flowContext, flowInfo). in analyseCode()
141 analyseCode(currentScope, flowContext, flowInfo). in analyseCode()
147 flowInfo = this.right.analyseCode(currentScope, flowContext, flowInfo).unconditionalInits(); in analyseCode()

12345678910