Home
last modified time | relevance | path

Searched refs:traversedContext (Results 1 – 15 of 15) sorted by relevance

/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/flow/
H A DFlowContext.java74 FlowContext traversedContext = this; in checkExceptionHandlers() local
76 while (traversedContext != null) { in checkExceptionHandlers()
85 if (traversedContext instanceof ExceptionHandlingFlowContext) { in checkExceptionHandlers()
87 (ExceptionHandlingFlowContext) traversedContext; in checkExceptionHandlers()
169 if (traversedContext.associatedNode instanceof TryStatement){ in checkExceptionHandlers()
172 traversedContext = traversedContext.parent; in checkExceptionHandlers()
198 FlowContext traversedContext = this; in checkExceptionHandlers() local
199 while (traversedContext != null) { in checkExceptionHandlers()
211 (ExceptionHandlingFlowContext) traversedContext; in checkExceptionHandlers()
267 if (traversedContext.associatedNode instanceof TryStatement){ in checkExceptionHandlers()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/flow/
H A DFlowContext.java72 FlowContext traversedContext = this; in checkExceptionHandlers() local
74 while (traversedContext != null) { in checkExceptionHandlers()
76 if (((sub = traversedContext.subRoutine()) != null) in checkExceptionHandlers()
86 if (traversedContext instanceof ExceptionHandlingFlowContext) { in checkExceptionHandlers()
174 if (traversedContext.associatedNode instanceof TryStatement) { in checkExceptionHandlers()
180 traversedContext = traversedContext.parent; in checkExceptionHandlers()
208 FlowContext traversedContext = this; in checkExceptionHandlers() local
209 while (traversedContext != null) { in checkExceptionHandlers()
211 if (((sub = traversedContext.subRoutine()) != null) in checkExceptionHandlers()
279 if (traversedContext.associatedNode instanceof TryStatement) { in checkExceptionHandlers()
[all …]
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/ast/
H A DBreakStatement.java50 FlowContext traversedContext = flowContext; in analyseCode() local
56 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
65 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
66 traversedContext.recordBreakTo(targetContext); in analyseCode()
68 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
69 ASTNode node = traversedContext.associatedNode; in analyseCode()
74 } else if (traversedContext == targetContext) { in analyseCode()
79 } while ((traversedContext = traversedContext.getLocalParent()) != null); in analyseCode()
H A DContinueStatement.java54 FlowContext traversedContext = flowContext; in analyseCode() local
60 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
69 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
71 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
72 ASTNode node = traversedContext.associatedNode; in analyseCode()
77 } else if (traversedContext == targetContext) { in analyseCode()
82 } while ((traversedContext = traversedContext.getLocalParent()) != null); in analyseCode()
H A DReturnStatement.java100 FlowContext traversedContext = flowContext; in analyseCode() local
107 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
126 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
128 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
129 ASTNode node = traversedContext.associatedNode; in analyseCode()
144 } else if (traversedContext instanceof InitializationFlowContext) { in analyseCode()
148 } while ((traversedContext = traversedContext.getLocalParent()) != null); 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 DBreakStatement.java60 FlowContext traversedContext = flowContext; in analyseCode() local
66 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
75 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
76 traversedContext.recordBreakTo(targetContext); in analyseCode()
78 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
79 ASTNode node = traversedContext.associatedNode; in analyseCode()
84 } else if (traversedContext == targetContext) { in analyseCode()
89 } while ((traversedContext = traversedContext.getLocalParent()) != null); in analyseCode()
H A DContinueStatement.java59 FlowContext traversedContext = flowContext; in analyseCode() local
65 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
74 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
76 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
77 ASTNode node = traversedContext.associatedNode; in analyseCode()
82 } else if (traversedContext == targetContext) { in analyseCode()
87 } while ((traversedContext = traversedContext.getLocalParent()) != null); in analyseCode()
H A DYieldStatement.java67 FlowContext traversedContext = flowContext; in analyseCode() local
73 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
82 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
83 traversedContext.recordBreakTo(targetContext); in analyseCode()
85 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
86 ASTNode node = traversedContext.associatedNode; in analyseCode()
90 } else if (traversedContext == targetContext) { in analyseCode()
95 } while ((traversedContext = traversedContext.getLocalParent()) != null); in analyseCode()
H A DReturnStatement.java109 FlowContext traversedContext = flowContext; in analyseCode() local
116 if ((sub = traversedContext.subroutine()) != null) { in analyseCode()
135 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
137 if (traversedContext instanceof InsideSubRoutineFlowContext) { in analyseCode()
138 ASTNode node = traversedContext.associatedNode; in analyseCode()
153 } else if (traversedContext instanceof InitializationFlowContext) { in analyseCode()
157 } while ((traversedContext = traversedContext.getLocalParent()) != null); 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 DContinueStatement.java51 FlowContext traversedContext = flowContext; in analyseCode() local
57 if ((sub = traversedContext.subRoutine()) != null) { in analyseCode()
66 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
69 if ((node = traversedContext.associatedNode) instanceof TryStatement) { in analyseCode()
72 } else if (traversedContext == targetContext) { in analyseCode()
77 } while ((traversedContext = traversedContext.parent) != null); in analyseCode()
H A DBreakStatement.java46 FlowContext traversedContext = flowContext; in analyseCode() local
52 if ((sub = traversedContext.subRoutine()) != null) { in analyseCode()
61 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
64 if ((node = traversedContext.associatedNode) instanceof TryStatement) { in analyseCode()
67 } else if (traversedContext == targetContext) { in analyseCode()
72 } while ((traversedContext = traversedContext.parent) != null); in analyseCode()
H A DReturnStatement.java40 FlowContext traversedContext = flowContext; in analyseCode() local
46 if ((sub = traversedContext.subRoutine()) != null) { in analyseCode()
60 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
63 if ((node = traversedContext.associatedNode) instanceof SynchronizedStatement) { in analyseCode()
76 } else if (traversedContext instanceof InitializationFlowContext) { in analyseCode()
80 } while ((traversedContext = traversedContext.parent) != null); in analyseCode()
/dports/java/eclipse-ecj/eclipse-ecj-4.4.2_1/org/eclipse/jdt/internal/compiler/flow/
H A DFlowContext.java221 FlowContext traversedContext = this; in checkExceptionHandlers() local
233 while (traversedContext != null) { in checkExceptionHandlers()
245 (ExceptionHandlingFlowContext) traversedContext; in checkExceptionHandlers()
309 abruptlyExitedLoops.add(traversedContext); in checkExceptionHandlers()
316 ASTNode node = traversedContext.associatedNode; in checkExceptionHandlers()
323 traversedContext = traversedContext.getLocalParent(); in checkExceptionHandlers()
353 FlowContext traversedContext = this; in checkExceptionHandlers() local
356 while (traversedContext != null) { in checkExceptionHandlers()
455 abruptlyExitedLoops.add(traversedContext); in checkExceptionHandlers()
463 ASTNode node = traversedContext.associatedNode; in checkExceptionHandlers()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/compiler/org/eclipse/jdt/internal/compiler/flow/
H A DFlowContext.java241 FlowContext traversedContext = this; in checkExceptionHandlers() local
253 while (traversedContext != null) { in checkExceptionHandlers()
265 (ExceptionHandlingFlowContext) traversedContext; in checkExceptionHandlers()
333 abruptlyExitedLoops.add(traversedContext); in checkExceptionHandlers()
340 ASTNode node = traversedContext.associatedNode; in checkExceptionHandlers()
347 traversedContext = traversedContext.getLocalParent(); in checkExceptionHandlers()
377 FlowContext traversedContext = this; in checkExceptionHandlers() local
380 while (traversedContext != null) { in checkExceptionHandlers()
483 abruptlyExitedLoops.add(traversedContext); in checkExceptionHandlers()
491 ASTNode node = traversedContext.associatedNode; in checkExceptionHandlers()
[all …]
/dports/java/phpeclipse/plugins/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/internal/compiler/ast/
H A DReturnStatement.java53 FlowContext traversedContext = flowContext; in analyseCode() local
60 if ((sub = traversedContext.subRoutine()) != null) { in analyseCode()
75 traversedContext.recordReturnFrom(flowInfo.unconditionalInits()); in analyseCode()
77 ASTNode node = traversedContext.associatedNode; in analyseCode()
96 } else if (traversedContext instanceof InitializationFlowContext) { in analyseCode()
100 } while ((traversedContext = traversedContext.parent) != null); in analyseCode()