Home
last modified time | relevance | path

Searched refs:SWITCH_STATEMENT (Results 1 – 23 of 23) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core/dom/org/eclipse/jdt/core/dom/
H A DSwitchStatement.java140 return SWITCH_STATEMENT; in getNodeType0()
H A DASTNode.java573 public static final int SWITCH_STATEMENT = 50; field in ASTNode
1164 case SWITCH_STATEMENT : in nodeClassForType()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.core/org.eclipse.jdt.core.tests.model/src/org/eclipse/jdt/core/tests/dom/
H A DASTConverter13Test.java179 assertEquals("Switch statement", node.getNodeType(), ASTNode.SWITCH_STATEMENT); in _test0002()
233 assertEquals("Switch statement", node.getNodeType(), ASTNode.SWITCH_STATEMENT); in _test0003()
H A DASTConverter14Test.java176 assertEquals("Switch statement", node.getNodeType(), ASTNode.SWITCH_STATEMENT); in _test0002()
222 assertEquals("Switch statement", node.getNodeType(), ASTNode.SWITCH_STATEMENT); in _test0003()
H A DMarkedASTFlattener.java345 case ASTNode.SWITCH_STATEMENT : in appendNodeType()
H A DASTConverter17Test.java196 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0004()
H A DASTConverterTestAST4_2.java610 …assertTrue("not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0415()
6952 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0621()
7297 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0632()
7326 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0633()
10456 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0716()
H A DASTConverterTestAST8_2.java620 …assertTrue("not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0415()
6982 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType());
7327 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType());
7356 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType());
10491 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType());
H A DASTConverterTestAST3_2.java613 …assertTrue("not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0415()
6955 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0621()
7300 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0632()
7329 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0633()
10459 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, node.getNodeType()); in test0716()
H A DASTTest.java6456 assertTrue(x.getNodeType() == ASTNode.SWITCH_STATEMENT); in testSwitchStatement()
9418 ASTNode.SWITCH_STATEMENT, in testNodeTypeConstants()
H A DASTConverter15JLS4Test.java4827 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType()); in test0151()
4892 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType()); in test0152()
H A DASTConverter15JLS8Test.java4816 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType()); in test0151()
4880 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType()); in test0152()
H A DASTConverter15Test.java4838 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType()); in test0151()
4902 assertEquals("Not a switch statement", ASTNode.SWITCH_STATEMENT, statement.getNodeType()); in test0152()
H A DASTConverterTest2.java532 …assertTrue("not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0415()
H A DASTConverterAST3Test.java9450 …assertTrue("Not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0386()
H A DASTConverterAST4Test.java9450 …assertTrue("Not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0386()
H A DASTConverterAST8Test.java9436 …assertTrue("Not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0386()
H A DASTConverterTest.java9616 …assertTrue("Not a switch statement", node.getNodeType() == ASTNode.SWITCH_STATEMENT); //$NON-NLS-1$ in test0386()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.ui/core refactoring/org/eclipse/jdt/internal/corext/refactoring/code/
H A DSnippetFinder.java73 return nodeType == ASTNode.BLOCK || nodeType == ASTNode.SWITCH_STATEMENT; in hasCorrectNesting()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/codemanipulation/
H A DGetterSetterUtil.java301 …n isBlock= block.getNodeType() == ASTNode.BLOCK || block.getNodeType() == ASTNode.SWITCH_STATEMENT; in isNotInBlock()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/corext/refactoring/code/
H A DCallInliner.java767 } else if (type == ASTNode.SWITCH_STATEMENT) { in initializeInsertionPoint()
/dports/lang/spidermonkey78/firefox-78.9.0/js/src/frontend/
H A DBinASTToken.h209 F(SwitchStatement, "SwitchStatement", SWITCH_STATEMENT) \
1095 SWITCH_STATEMENT, \
1727 F(Statement, 16, SwitchStatement, SWITCH_STATEMENT, \
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.jdt.ui/org.eclipse.jdt.core.manipulation/core extension/org/eclipse/jdt/internal/core/manipulation/dom/
H A DASTResolving.java268 case ASTNode.SWITCH_STATEMENT: in getPossibleReferenceBinding()