Searched defs:il (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DNamedMethodGenerator.java48 InstructionList il, ConstantPoolGen cp) {
50 class_name, il, cp);
45 NamedMethodGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DRtMethodGenerator.java47 InstructionList il, ConstantPoolGen cp) {
49 class_name, il, cp);
44 RtMethodGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DCompareGenerator.java61 InstructionList il, ConstantPoolGen cp) {
63 class_name, il, cp);
77 il.append(new ACONST_NULL());
78 il.append(storeIterator());
58 CompareGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DMatchGenerator.java50 InstructionList il, ConstantPoolGen cp) {
52 class_name, il, cp);
47 MatchGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DTestGenerator.java56 InstructionList il, ConstantPoolGen cp) {
58 class_name, il, cp);
53 TestGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
H A DMethodGenerator.java140 InstructionList il, ConstantPoolGen cpg) {
142 class_name, il, cpg);
1183 InstructionList il = getInstructionList();
1184 InstructionHandle lastInst = il.getEnd();
1185 il.setPositions();
1881 InstructionList il = getInstructionList();
1882 InstructionHandle last = il.getEnd();
1884 il.setPositions();
1897 il.setPositions();
1898 last = il
137 MethodGenerator(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cpg) argument
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java78 InstructionFinder f = new InstructionFinder(il);
84 il.delete(match[1], match[5]);
98 private InstructionList il; field in class:InstructionFinder
103 * @param il instruction list to search for given patterns
105 public InstructionFinder(InstructionList il) { argument
106 this.il = il;
114 int size = il.getLength();
115 char[] buf = new char[size]; // Create a string with length equal to il length
116 handles = il
[all...]
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSurrogate.java217 * @param il The input limit
224 public int parse(char c, char[] ia, int ip, int il) { argument
227 if (il - ip < 2) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DNumber.java234 InstructionList il = methodGen.getInstructionList();
255 il.append(classGen.loadTranslet());
256 il.append(new GETFIELD(fieldIndexes[_level]));
257 final BranchHandle ifBlock1 = il.append(new IFNONNULL(null));
266 il.append(classGen.loadTranslet());
267 il.append(methodGen.loadDOM());
268 il.append(methodGen.loadIterator());
269 il.append(new INVOKESTATIC(index));
270 il.append(DUP);
273 il
333 compileLocals(NodeCounterGenerator nodeCounterGen, MatchGenerator matchGen, InstructionList il) argument
[all...]
H A DWhitespace.java302 InstructionList il) {
303 final InstructionHandle target = il.append(ICONST_1);
304 il.append(IRETURN);
312 InstructionList il) {
313 final InstructionHandle target = il.append(ICONST_0);
314 il.append(IRETURN);
322 InstructionList il) {
327 il.append(DUP);
328 il.append(new INVOKESTATIC(prt));
339 final InstructionList il
300 compileStripSpace(BranchHandle strip[], int sCount, InstructionList il) argument
310 compilePreserveSpace(BranchHandle preserve[], int pCount, InstructionList il) argument
[all...]
H A DFunctionCall.java701 final InstructionList il = methodGen.getInstructionList();
705 _falseList.add(il.append(new IFEQ(null)));
718 final InstructionList il = methodGen.getInstructionList();
737 il.append(methodGen.loadDOM());
743 il.append(methodGen.loadContextNode());
744 il.append(methodGen.loadDOM());
751 il.append(new INVOKESTATIC(index));
759 il.append(new PUSH(cpg, _fname.toString()));
760 il.append(new INVOKESTATIC(index));
764 translateUnallowedExtension(cpg, il);
1099 translateUnallowedExtension(ConstantPoolGen cpg, InstructionList il) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSurrogate.java205 * @param il The input limit
212 public int parse(char c, char[] ia, int ip, int il) { argument
214 if (il - ip < 2) {
/openjdk7/jdk/src/share/demo/applets/GraphicsTest/
H A DGraphicsTest.java52 ItemListener il; field in class:GraphicsPanel
57 il = (ItemListener) listener;
77 c.addItemListener(il);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java132 * @param ihs array of instruction handles, i.e. il.getInstructionHandles()
133 * @param pos array of positions corresponding to ihs, i.e. il.getInstructionPositions()
253 * @param il Instruction list to append to this one
256 public InstructionHandle append(InstructionHandle ih, InstructionList il) { argument
257 if(il == null)
260 if(il.isEmpty()) // Nothing to do
263 InstructionHandle next = ih.next, ret = il.start;
265 ih.next = il.start;
266 il.start.prev = ih;
268 il
290 append(Instruction i, InstructionList il) argument
307 append(InstructionList il) argument
452 insert(InstructionHandle ih, InstructionList il) argument
484 insert(InstructionList il) argument
521 insert(Instruction i, InstructionList il) argument
[all...]
H A DMethodGen.java86 private InstructionList il; field in class:MethodGen
98 * actual code is contained in the `il' parameter, which may further
113 * @param il instruction list associated with this method, may be null only for
119 InstructionList il, ConstantPoolGen cp) {
126 setInstructionList(il);
134 start = il.getStart();
135 end = il.getEnd();
217 end = il.getEnd();
219 end = il.findHandle(end_pc);
223 addExceptionHandler(il
117 MethodGen(int access_flags, Type return_type, Type[] arg_types, String[] arg_names, String method_name, String class_name, InstructionList il, ConstantPoolGen cp) argument
763 setInstructionList(InstructionList il) argument
861 getMaxStack(ConstantPoolGen cp, InstructionList il, CodeExceptionGen[] et) argument
[all...]

Completed in 159 milliseconds