• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/asm/

Lines Matching refs:cw

47     private ClassWriter cw;
100 * @param cw the class writer to which this field must be added.
108 final ClassWriter cw,
115 if (cw.firstField == null) {
116 cw.firstField = this;
118 cw.lastField.next = this;
120 cw.lastField = this;
121 this.cw = cw;
123 this.name = cw.newUTF8(name);
124 this.desc = cw.newUTF8(desc);
126 this.signature = cw.newUTF8(signature);
129 this.value = cw.newConstItem(value).index;
143 bv.putShort(cw.newUTF8(desc)).putShort(0);
144 AnnotationWriter aw = new AnnotationWriter(cw, true, bv, bv, 2);
175 cw.newUTF8("ConstantValue");
179 && (cw.version & 0xffff) < Opcodes.V1_5)
181 cw.newUTF8("Synthetic");
185 cw.newUTF8("Deprecated");
188 if (cw.version == Opcodes.V1_4 && (access & Opcodes.ACC_ENUM) != 0) {
189 cw.newUTF8("Enum");
193 cw.newUTF8("Signature");
197 cw.newUTF8("RuntimeVisibleAnnotations");
201 cw.newUTF8("RuntimeInvisibleAnnotations");
205 size += attrs.getSize(cw, null, 0, -1, -1);
222 && (cw.version & 0xffff) < Opcodes.V1_5)
229 if (cw.version == Opcodes.V1_4 && (access & Opcodes.ACC_ENUM) != 0) {
246 out.putShort(cw.newUTF8("ConstantValue"));
250 && (cw.version & 0xffff) < Opcodes.V1_5)
252 out.putShort(cw.newUTF8("Synthetic")).putInt(0);
255 out.putShort(cw.newUTF8("Deprecated")).putInt(0);
257 if (cw.version == Opcodes.V1_4 && (access & Opcodes.ACC_ENUM) != 0) {
258 out.putShort(cw.newUTF8("Enum")).putInt(0);
261 out.putShort(cw.newUTF8("Signature"));
265 out.putShort(cw.newUTF8("RuntimeVisibleAnnotations"));
269 out.putShort(cw.newUTF8("RuntimeInvisibleAnnotations"));
273 attrs.put(cw, null, 0, -1, -1, out);