Home | History | Annotate | Download | only in src

Lines Matching refs:incoming

28   public static void loop1(boolean incoming) {
29 while (incoming) {}
42 public static void loop2(boolean incoming) {
48 while (incoming) {}
61 public static void loop3(boolean incoming) {
62 // 'incoming' only needs a use at the outer loop's back edge.
65 System.out.println(incoming);
74 public static void loop4(boolean incoming) {
75 // 'incoming' has no loop use, so should not have back edge uses.
76 System.out.println(incoming);
93 public static void loop5(boolean incoming) {
94 // 'incoming' must have a use at both back edges.
97 System.out.println(incoming);
114 public static void loop6(boolean incoming) {
115 // 'incoming' must have a use only at the first loop's back edge.
117 System.out.println(incoming);
137 public static void loop7(boolean incoming) {
138 // 'incoming' must have a use at both back edges.
140 System.out.println(incoming);
141 while (incoming) {}
158 // 'incoming' must have a use at both back edges.
159 boolean incoming = field;
162 while (incoming) {}
188 // 'incoming' must only have a use in the inner loop.
189 boolean incoming = field;
190 while (incoming) {}