Home
last modified time | relevance | path

Searched refs:switchCase (Results 1 – 4 of 4) sorted by relevance

/external/proguard/src/proguard/optimize/evaluation/
DEvaluationSimplifier.java918 int switchCase = in replaceSimpleEnumSwitchInstruction() local
924 switchCase >= tableSwitchInstruction.lowCase && in replaceSimpleEnumSwitchInstruction()
925 switchCase <= tableSwitchInstruction.highCase ? in replaceSimpleEnumSwitchInstruction()
926 jumpOffsets[switchCase - tableSwitchInstruction.lowCase] : in replaceSimpleEnumSwitchInstruction()
1006 int switchCase = in replaceSimpleEnumSwitchInstruction() local
1010 int caseIndex = Arrays.binarySearch(cases, switchCase); in replaceSimpleEnumSwitchInstruction()
/external/clang/lib/ASTMatchers/Dynamic/
DRegistry.cpp352 REGISTER_MATCHER(switchCase); in RegistryMaps()
/external/clang/unittests/ASTMatchers/
DASTMatchersTest.cpp3503 EXPECT_TRUE(matches("void x() { switch(42) { case 42:; } }", switchCase())); in TEST()
3504 EXPECT_TRUE(matches("void x() { switch(42) { default:; } }", switchCase())); in TEST()
3505 EXPECT_TRUE(matches("void x() { switch(42) default:; }", switchCase())); in TEST()
3506 EXPECT_TRUE(notMatches("void x() { switch(42) {} }", switchCase())); in TEST()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h1378 const internal::VariadicDynCastAllOfMatcher<Stmt, SwitchCase> switchCase; variable