Searched defs:cw (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DFieldWriter.java77 private final ClassWriter cw; field in class:FieldWriter
130 * @param cw the class writer to which this field must be added.
138 final ClassWriter cw,
145 if (cw.firstField == null) {
146 cw.firstField = this;
148 cw.lastField.next = this;
150 cw.lastField = this;
151 this.cw = cw;
153 this.name = cw
137 FieldWriter( final ClassWriter cw, final int access, final String name, final String desc, final String signature, final Object value) argument
[all...]
H A DAnnotationWriter.java73 private final ClassWriter cw; field in class:AnnotationWriter
123 * @param cw the class writer to which this annotation must be added.
131 final ClassWriter cw,
137 this.cw = cw;
151 bv.putShort(cw.newUTF8(name));
154 bv.put12('s', cw.newUTF8((String) value));
156 bv.put12('B', cw.newInteger(((Byte) value).byteValue()).index);
159 bv.put12('Z', cw.newInteger(v).index);
161 bv.put12('C', cw
130 AnnotationWriter( final ClassWriter cw, final boolean named, final ByteVector bv, final ByteVector parent, final int offset) argument
[all...]
H A DAttribute.java166 * @param cw the class to which this attribute must be added. This parameter
184 final ClassWriter cw,
214 * @param cw the class writer to be used to convert the attributes into byte
232 final ClassWriter cw,
241 cw.newUTF8(attr.type);
242 size += attr.write(cw, code, len, maxStack, maxLocals).length + 6;
252 * @param cw the class writer to be used to convert the attributes into byte
269 final ClassWriter cw,
278 ByteVector b = attr.write(cw, code, len, maxStack, maxLocals);
279 out.putShort(cw
183 write( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
231 getSize( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals) argument
268 put( final ClassWriter cw, final byte[] code, final int len, final int maxStack, final int maxLocals, final ByteVector out) argument
[all...]
H A DFrame.java615 * @param cw the ClassWriter to which this label belongs.
620 private void push(final ClassWriter cw, final String desc) { argument
621 int type = type(cw, desc);
633 * @param cw the ClassWriter to which this label belongs.
637 private static int type(final ClassWriter cw, final String desc) { argument
658 return OBJECT | cw.addType(t);
696 data = OBJECT | cw.addType(t);
776 * @param cw the ClassWriter to which this label belongs.
781 private int init(final ClassWriter cw, final int t) { argument
784 s = OBJECT | cw
816 initInputFrame( final ClassWriter cw, final int access, final Type[] args, final int maxLocals) argument
852 execute( final int opcode, final int arg, final ClassWriter cw, final Item item) argument
1277 merge(final ClassWriter cw, final Frame frame, final int edge) argument
1370 merge( final ClassWriter cw, int t, final int[] types, final int index) argument
[all...]
H A DMethodWriter.java157 final ClassWriter cw; field in class:MethodWriter
188 * the ClassReader associated to this writer in <code>cw.cr</code>. More
190 * <code>cw.cr.b</code>.
196 * the ClassReader associated to this writer in <code>cw.cr</code>. More
198 * <code>cw.cr.b</code>.
429 * @param cw the class writer in which the method must be added.
442 final ClassWriter cw,
451 if (cw.firstMethod == null) {
452 cw.firstMethod = this;
454 cw
441 MethodWriter( final ClassWriter cw, final int access, final String name, final String desc, final String signature, final String[] exceptions, final boolean computeMaxs, final boolean computeFrames) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/
H A DJPackage.java95 * @param cw The code writer being used to create this package
100 JPackage(String name, JCodeModel cw) { argument
101 this.owner = cw;
446 CodeWriter cw = rsrc.isResource() ? res : src;
447 OutputStream os = new BufferedOutputStream(cw.openBinary(this, rsrc.name()));
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Dsplashscreen_gif.c84 int cx, cy, cw, ch; /* clamped coordinates */ local
148 cw = FIX_LENGTH(desc->Left, desc->Width, gif->SWidth);
246 initRect(&dstRect, cx, cy + ofs, cw,
287 cx, cy, cw, ch,
295 int lineSize = cw * splash->imageFormat.depthBytes;
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java80 private ClassWriter cw; field in class:InvokerBytecodeGenerator
212 int index = cw.newConst((Object) cpPlaceholder); // TODO check if aready in the constant pool
292 cw = new ClassWriter(ClassWriter.COMPUTE_MAXS + ClassWriter.COMPUTE_FRAMES);
293 cw.visit(Opcodes.V1_6, Opcodes.ACC_PUBLIC + Opcodes.ACC_FINAL + Opcodes.ACC_SUPER, className, null, superName, null);
294 cw.visitSource(sourceFile, null);
297 mv = cw.visitMethod(Opcodes.ACC_STATIC, invokerName, invokerDesc, null, null);
561 final byte[] classFile = cw.toByteArray();
983 final byte[] classFile = cw.toByteArray();
1057 final byte[] classFile = cw.toByteArray();
1068 mv = cw
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_MToolkit.c528 struct WidgetInfo *cw; local
530 for (cw = awt_winfo; cw != NULL; cw = cw->next) {
531 if (cw->widget == widget || cw->origin == widget) {
532 return cw;
597 struct WidgetInfo *cw; local
602 cw
626 struct WidgetInfo *cw; local
[all...]

Completed in 95 milliseconds