Searched defs:cases (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJSwitch.java45 private List<JCase> cases = new ArrayList<JCase>(); field in class:JSwitch
61 public Iterator<JCase> cases() { return cases.iterator(); } method in class:JSwitch
65 cases.add(c);
72 // default cases statements don't have a label
83 for( JCase c : cases )
/openjdk7/hotspot/test/runtime/7116786/
H A DTest7116786.java47 * Some cases are not testable, either because the code is probably unreachable
48 * or the test classfile would be too onerous to create. These cases are
87 public static final Case[] cases = { field in class:VerifyErrorCases
453 for (Case c : VerifyErrorCases.cases) {
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DPostExceptionTest.java69 * Here is the list of our test cases:
71 public static Case[] cases ={ field in class:PostExceptionTest
96 // We're going to test each cases, using each of the 4 createMBean
100 for (Case caze:cases) {
/openjdk7/langtools/test/tools/javac/processing/errors/
H A DTestSuppression.java52 String[] cases = { field in class:TestSuppression
71 for (String c: cases) {
84 System.err.println(count + " test cases");
/openjdk7/hotspot/src/share/vm/oops/
H A DmethodDataOop.cpp467 int cases = number_of_cases(); local
468 for (int i = 0; i < cases; i++) {
/openjdk7/hotspot/src/share/vm/runtime/
H A Ddeoptimization.cpp1862 juint* cases = _deoptimization_hist[reason][1+action]; local
1868 juint* counter_addr = &cases[bc_case];
1880 bc_counter_addr = &cases[BC_CASE_LIMIT-1];
1909 juint* cases = _deoptimization_hist[reason][1+action]; local
1911 juint counter = cases[bc_case];
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeMaker.java237 public JCSwitch Switch(JCExpression selector, List<JCCase> cases) { argument
238 JCSwitch tree = new JCSwitch(selector, cases);
H A DJCTree.java953 public List<JCCase> cases; field in class:JCTree.JCSwitch
954 protected JCSwitch(JCExpression selector, List<JCCase> cases) { argument
956 this.cases = cases;
963 public List<JCCase> getCases() { return cases; }
2132 JCSwitch Switch(JCExpression selector, List<JCCase> cases); argument
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp2548 band** findMatchingCase(int matchTag, band** cases) { argument
2549 for (int k = 0; cases[k] != null; k++) {
2550 band& k_case = *cases[k];
2951 bc_label.expectMoreLength(1+caseCount); // default label + cases

Completed in 76 milliseconds