代码搜索结果
找到约 21,386 项符合
Switch 的代码
narrow_case.java
public class narrow_case
{
private int test(byte b)
{
switch (b)
{
case '0' :return 0;
}
return 99;
}
}
pr21540.java
public class pr21540
{
public static final long xxx = 555;
public boolean fn (int v)
{
switch (v)
{
case ((int) xxx >>> 32):
return true;
default:
return false;
pr16249.java
// Regression test for PR java/16249.
class PR16249
{
static void bug(byte[] iCode, int pc)
{
while (pc < 100) {
try {
switch (iCode[pc] & 0xff) {
switch.s
;; MShowTec - www.mshowtec.com
;; msLinux switch.s ver1.0
;; 20051221 lmjx create limiao@mshowtec.com
;;
;;
;; MSLINUX_SWITCH_S
CODE32
AREA |C$$code|, CODE, READONLY
OFFSET_SP EQU
pr8955.java
public class pr8955
{
static final int val = Integer.MIN_VALUE;
void foo()
{
switch(1) {
case val:
break;
case 1:
break;
}
}
}
pr25429.java
public class pr25429
{
private static final int CONST = 0;
class I {
public void f () {
switch(0) {
case CONST:
}
}
}
public static void main(String[] args) { }
}
pr310.java
public class PR310
{
void m (long l)
{
switch (l)
{
}
}
}
narrow_case.java
public class narrow_case
{
private int test(byte b)
{
switch (b)
{
case '0' :return 0;
}
return 99;
}
}
pr21540.java
public class pr21540
{
public static final long xxx = 555;
public boolean fn (int v)
{
switch (v)
{
case ((int) xxx >>> 32):
return true;
default:
return false;
pr16249.java
// Regression test for PR java/16249.
class PR16249
{
static void bug(byte[] iCode, int pc)
{
while (pc < 100) {
try {
switch (iCode[pc] & 0xff) {