Searched refs:loop (Results 51 - 75 of 176) sorted by relevance

12345678

/openjdk7/jdk/make/mksample/nio/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/jdk/make/mksample/scripting/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/jdk/make/mksample/webservices/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/jdk/make/org/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/jdk/make/sun/net/
H A DMakefile35 $(SUBDIRS-loop)
/openjdk7/jdk/make/sun/nio/
H A DMakefile35 $(SUBDIRS-loop)
/openjdk7/jdk/make/sun/org/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/jdk/make/sun/org/mozilla/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/corba/make/sun/rmi/
H A DMakefile47 $(OTHERSUBDIRS-loop)
54 $(SUBDIRS-loop)
/openjdk7/hotspot/test/compiler/5091921/
H A DTest6935022.java28 * @summary Server VM incorrectly breaks out of while loop
44 test.loop(2147483647, (cnt&1023));
55 private void loop(int endingRow, int mask) throws Exception { method in class:Test6935022
/openjdk7/jdk/make/javax/swing/
H A DMakefile45 $(SUBDIRS-loop)
48 $(SUBDIRS-loop)
/openjdk7/corba/make/com/sun/corba/se/spi/
H A DMakefile47 $(SUBDIRS-loop)
/openjdk7/corba/make/org/omg/
H A DMakefile42 $(SUBDIRS-loop)
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DClip.java38 * loop, so that when the clip is played it will cycle repeatedly. Loops are
40 * times that the loop should be played.
62 * @see #loop
183 * the loop. The ending point must be greater than
188 * @param start the loop's starting position, in sample frames (zero-based)
189 * @param end the loop's ending position, in sample frames (zero-based), or
192 * loop points cannot be set, usually because one or both falls outside
200 * continue to the loop's end point, then loop back to the loop star
222 public void loop(int count); method in interface:Clip
[all...]
/openjdk7/jdk/make/com/sun/security/
H A DMakefile38 $(SUBDIRS-loop)
/openjdk7/jdk/make/mkdemo/jfc/
H A DMakefile52 $(SUBDIRS-loop)
/openjdk7/jdk/make/mkdemo/management/
H A DMakefile43 $(SUBDIRS-loop)
/openjdk7/jdk/make/sun/image/
H A DMakefile49 $(SUBDIRS-loop)
/openjdk7/jdk/make/sun/rmi/
H A DMakefile50 $(SUBDIRS-loop)
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DElementCollectionAdapter.java91 JForEach loop = block.forEach(elementType, "v" + hashCode()/*unique string handling*/, $col);
93 JConditional cond = loop.body()._if(loop.var().eq(JExpr._null()));
95 cond._else().invoke($var,"add").arg(loop.var().invoke("getValue"));
112 JForEach loop = block.forEach(itemType(), uniqueName+"_i", $t);
113 loop.body().invoke($var,"add").arg(createJAXBElement(loop.var()));
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopopts.cpp86 // happen if the singleton occurs on loop entry, as the elimination of
88 // loop iteration.
90 // Is_Loop() == false does not confirm the absence of a loop (e.g., an
91 // irreducible loop may not be indicated by an affirmative is_Loop());
93 // a loop.
157 old_loop = NULL; // Not in any prior loop
160 old_loop = get_loop(old_ctrl); // Get prior loop
169 // Don't move x into a loop if its uses are
170 // outside of loop. Otherwise x will be cloned
171 // for each use outside of this loop
1252 clone_loop( IdealLoopTree *loop, Node_List &old_new, int dd, Node* side_by_side_idom) argument
1592 stay_in_loop( Node* n, IdealLoopTree *loop) argument
1609 register_node(Node* n, IdealLoopTree *loop, Node* pred, int ddepth) argument
1665 IdealLoopTree *loop = get_loop(proj); local
1722 IdealLoopTree *loop = get_loop(proj); local
1785 insert_cmpi_loop_exit(IfNode* if_cmpu, IdealLoopTree *loop) argument
1827 remove_cmpi_loop_exit(IfNode* if_cmp, IdealLoopTree *loop) argument
1844 scheduled_nodelist( IdealLoopTree *loop, VectorSet& member, Node_List &sched ) argument
1929 clone_for_use_outside_loop( IdealLoopTree *loop, Node* n, Node_List& worklist ) argument
1978 clone_for_special_use_inside_loop( IdealLoopTree *loop, Node* n, VectorSet& not_peel, Node_List& sink_list, Node_List& worklist ) argument
2039 is_valid_loop_partition( IdealLoopTree *loop, VectorSet& peel, Node_List& peel_list, VectorSet& not_peel ) argument
2081 is_valid_clone_loop_exit_use( IdealLoopTree *loop, Node* use, uint exit_idx) argument
2093 is_valid_clone_loop_form( IdealLoopTree *loop, Node_List& peel_list, uint orig_exit_idx, uint clone_exit_idx) argument
2325 partial_peel( IdealLoopTree *loop, Node_List &old_new ) argument
2715 reorg_offsets(IdealLoopTree *loop) argument
[all...]
H A Dloopnode.hpp52 // Simple loop header. Fall in path on left, loop-back path on right.
110 // last in the loop. The trip-counter have to stride by a constant;
111 // the exit value is also loop invariant.
114 // CountedLoopNode has the incoming loop control and the loop-back-control
117 // CountedLoopNode if there is control flow in the loop), the post-increment
122 // CountedLoopEndNode also takes in the loop-invariant limit value.
125 // loop-back control. From CountedLoopEndNodes I can reach CountedLoopNodes
130 // inputs the incoming loop
823 is_member( const IdealLoopTree *loop, Node *n ) const argument
[all...]
/openjdk7/jdk/test/java/net/DatagramSocket/
H A DSendDatagramToBadAddress.java78 public void receive (int loop, boolean expectError) throws Exception { argument
79 for (int i=0; i<loop; i++) {
124 final int loop = 5;
131 for (i = 0; i < loop; i++) {
145 s.receive (loop, false);
171 for (i = 0; i < loop; i++) {
/openjdk7/jdk/test/com/sun/jdi/
H A DCatchPatternTest.sh52 public void loop(int max) {
57 System.out.println(" loop: " + re.getMessage() +
63 loop(2);
67 loop(3);
/openjdk7/jdk/make/sun/cmm/
H A DMakefile74 $(SUBDIRS-loop)
77 $(SUBDIRS-loop)
80 $(SUBDIRS-loop)

Completed in 192 milliseconds

12345678