Searched refs:cases (Results 1 - 25 of 33) sorted by relevance

12

/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/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DMultiBranchData.java107 int cases = numberOfCases();
108 for (int i = 0; i < cases; i++) {
/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/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/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeTranslator.java198 tree.cases = translateCases(tree.cases);
H A DTreeScanner.java135 scan(tree.cases);
H A DTreeCopier.java300 List<JCCase> cases = copy(t.cases, p);
301 return M.at(t.pos).Switch(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
H A DTreeMaker.java237 public JCSwitch Switch(JCExpression selector, List<JCCase> cases) { argument
238 JCSwitch tree = new JCSwitch(selector, 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/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s33 !! by the .il "call", in some cases optimizing the code, completely eliding it,
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java113 // of some common cases. (Note that Code attributes are
906 List<Layout.Element> cases = new ArrayList<>();
908 // Keep parsing cases until we hit the default case.
930 cases.add(ce);
956 ce.body = cbody; // all cases share one body
964 cases.add(ce);
973 e.body = new Layout.Element[cases.size()];
974 cases.toArray(e.body);
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME251 the properties that you are trying to handle. In some cases, you can
252 choose a very general header file to handle more cases as a default
253 implementation, or a very specific header file to handle common cases
/openjdk7/jdk/test/java/lang/invoke/
H A DMethodHandlesTest.java92 if (posTests != 0) System.out.println("=== "+testName+": "+posTests+" positive test cases run");
93 if (negTests != 0) System.out.println("=== "+testName+": "+negTests+" negative test cases run");
124 if (posTests != 0) System.out.println("=== "+posTests+" total positive test cases");
125 if (negTests != 0) System.out.println("=== "+negTests+" total negative test cases");
436 Object[][] cases;
438 cases = ACCESS_CASES[1]; // PRIVATE only
440 cases = ACCESS_CASES[2]; // not PUBLIC
442 cases = ACCESS_CASES[3]; // PUBLIC class, protected member
447 cases = ACCESS_CASES[4]; // all access levels
449 cases
[all...]
H A DMethodTypeTest.java467 Object[][] cases = {
537 for (Object[] c : cases) {
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES2370 common "PNG_ALL_FILTERS" and PNG_FILTER_NONE cases.
3140 Fixed interlace image handling and add test cases (John Bowler)
3413 code has a special palette path in most cases this was a severe weakness.
3454 wrong in 128 out of 65536 cases. Getting the right answer all the time
/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/jvm/
H A DGen.java249 * for those cases where we need to work around VM bugs).
1117 List<JCCase> cases = tree.cases;
1118 if (cases.isEmpty()) {
1139 int[] labels = new int[cases.length()]; // the label array.
1142 List<JCCase> l = cases;
1193 l = cases;
H A DCRTable.java308 sr.mergeWith(cspCases(tree.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/jdk/test/java/security/cert/CertPathBuilder/selfIssued/
H A DREADME29 Here lists the local generated certificates and CRLs used in the test cases.
/openjdk7/jdk/test/java/security/cert/CertPathValidator/indirectCRL/
H A DREADME27 used in the test cases.
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java1833 int cases;
1843 cases = (u4At(alignedIntOffset(2)) - u4At(alignedIntOffset(1)) + 1);
1844 len = alignedIntOffset(3 + cases*1);
1848 cases = u4At(alignedIntOffset(1));
1849 len = alignedIntOffset(2 + cases*2);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DLower.java161 * There is only one case; all other cases simply traverse down the tree.
203 * There is only one case; all other cases simply traverse down the tree.
480 * other cases.
3361 tree.cases = translateCases(tree.cases);
3382 ListBuffer<JCCase> cases = new ListBuffer<JCCase>();
3383 for (JCCase c : tree.cases) {
3387 cases.append(make.Case(pat, c.stats));
3389 cases.append(c);
3392 JCSwitch enumSwitch = make.Switch(selector, cases
[all...]
H A DTransTypes.java524 tree.cases = translateCases(tree.cases);

Completed in 2606 milliseconds

12