Searched defs:instructions (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/awt/print/Dialog/
H A DDialogCopies.java35 static String[] instructions = { field in class:DialogCopies
45 for (int i=0;i<instructions.length;i++) {
46 System.out.println(instructions[i]);
H A DDialogType.java37 static String[] instructions = { field in class:DialogType
50 for (int i=0;i<instructions.length;i++) {
51 System.out.println(instructions[i]);
H A DPaperSizeError.java38 static String[] instructions = { field in class:PaperSizeError
47 for (int i=0;i<instructions.length;i++) {
48 System.out.println(instructions[i]);
/openjdk7/jdk/test/javax/print/applet/
H A DYesNo.java30 static String instructions = field in class:YesNo
51 TextArea ta = new TextArea(instructions, 12,80);
/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DInstructionAssembler.java37 public static String assemble(Element instructions, String pcAttrName, argument
39 int insCount = instructions.size();
61 // Unpack instructions into temp. arrays, and find branches and labels.
68 Element ins = (Element) instructions.get(i);
103 // except for branch instructions, which may need lengthening.
104 // Some instructions (ldc, bipush, iload, iinc) are automagically widened.
250 // Walk over all instructions, expanding branches and updating locations.
295 Element ins = (Element) instructions.get(i);
H A DInstructionSyntax.java73 assert (tl.size() == 202); // this many instructions!
467 public static String assemble(Element instructions) { argument
468 return InstructionAssembler.assemble(instructions, null, null);
471 public static String assemble(Element instructions, String pcAttrName) { argument
472 return InstructionAssembler.assemble(instructions, pcAttrName, null);
475 public static String assemble(Element instructions, ClassSyntax.GetCPIndex getCPI) { argument
476 return InstructionAssembler.assemble(instructions, null, getCPI);
479 public static String assemble(Element instructions, String pcAttrName, argument
481 return InstructionAssembler.assemble(instructions, pcAttrName, getCPI);
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnD/
H A DImageDecoratedDnD.java44 //Create instructions for the user here, as well as set up
49 String[] instructions =
66 Sysout.createDialogWithInstructions(instructions);
107 public static void createDialogWithInstructions(String[] instructions) { argument
109 dialog.printInstructions(instructions);
123 public static void printInstructions(String[] instructions) { argument
124 dialog.printInstructions(instructions);
157 public void printInstructions(String[] instructions) { argument
158 //Clear out any current instructions
164 for (int i = 0; i < instructions
[all...]
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDInOut/
H A DImageDecoratedDnDInOut.java45 //Create instructions for the user here, as well as set up
50 String[] instructions =
67 Sysout.createDialogWithInstructions(instructions);
142 public static void createDialogWithInstructions(String[] instructions) { argument
144 dialog.printInstructions(instructions);
158 public static void printInstructions(String[] instructions) { argument
159 dialog.printInstructions(instructions);
192 public void printInstructions(String[] instructions) { argument
193 //Clear out any current instructions
199 for (int i = 0; i < instructions
[all...]
/openjdk7/jdk/test/java/awt/dnd/ImageDecoratedDnDNegative/
H A DImageDecoratedDnDNegative.java49 //Create instructions for the user here, as well as set up
54 String[] instructions =
72 Sysout.createDialogWithInstructions(instructions);
176 public static void createDialogWithInstructions(String[] instructions) { argument
178 dialog.printInstructions(instructions);
192 public static void printInstructions(String[] instructions) { argument
193 dialog.printInstructions(instructions);
226 public void printInstructions(String[] instructions) { argument
227 //Clear out any current instructions
233 for (int i = 0; i < instructions
[all...]
/openjdk7/jdk/test/java/awt/event/KeyEvent/KeyReleasedInAppletTest/
H A DKeyReleasedInAppletTest.java52 //Create instructions for the user here, as well as set up
78 String[] instructions =
84 "(5) Continue the test according to the instructions in the applet.\n",
86 Sysout.createDialogWithInstructions(instructions);
110 * It creates a dialog (with the instructions), and is the interface
112 * To print the instructions, send an array of strings to Sysout.createDialog
113 * WithInstructions method. Put one line of instructions per array entry.
125 public static void createDialogWithInstructions(String[] instructions) { argument
127 dialog.printInstructions(instructions);
145 public static void printInstructions(String[] instructions) { argument
190 printInstructions(String[] instructions) argument
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Compilation.cpp184 int instructions = Instruction::number_of_instructions(); local
186 assert(instructions == Instruction::number_of_instructions(),
187 "shouldn't have created an instructions");
H A Dc1_LinearScan.cpp434 LIR_OpList* instructions = block->lir()->instructions_list(); local
435 int num_inst = instructions->length();
438 // iterate all instructions of the block. skip the first because it is always a label
440 LIR_Op* op = instructions->at(j);
456 instructions->at_put(j, NULL); // NULL-instructions are deleted by assign_reg_num
466 // prepare insertion buffer (appended when all instructions of the block are processed)
493 // ********** Phase 1: number all instructions in all blocks
522 LIR_OpList* instructions = block->lir()->instructions_list(); local
524 int num_inst = instructions
596 LIR_OpList* instructions = block->lir()->instructions_list(); local
1323 LIR_OpList* instructions = block->lir()->instructions_list(); local
1723 LIR_OpList* instructions = from_block->lir()->instructions_list(); local
1767 LIR_OpList* instructions = block->lir()->instructions_list(); local
2924 assign_reg_num(LIR_OpList* instructions, IntervalWalker* iw) argument
3271 LIR_OpList* instructions = block->lir()->instructions_list(); local
[all...]
/openjdk7/jdk/test/java/lang/invoke/indify/
H A DIndify.java47 * and {@code CONSTANT_MethodType} "ldc" instructions.
61 * to MH_x or MT_x methods by {@code ldc} instructions should leave
69 * instructions. Each INDY_x method must begin with a call to a
84 * instructions which load a static method handle value and return it
390 for (Instruction i = m.instructions(); i != null; i = i.next()) {
401 //if (blab == 1) { for (Instruction j = m.instructions(); j != null; j = j.next()) System.out.println(" |"+j); }
438 //if (blab >= 1) { for (Instruction j = m.instructions(); j != null; j = j.next()) System.out.println(" |"+j); }
673 Instruction i = m.instructions();
1505 public Instruction instructions() { method in class:Indify.Method
1508 return code.instructions();
1606 public Instruction instructions() { method in class:Indify.Code
[all...]

Completed in 919 milliseconds