Searched defs:cst (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DMethodVisitor.java309 * @param cst the constant to be loaded on the stack. This parameter must be
315 void visitLdcInsn(Object cst); argument
H A DClassWriter.java884 * @param cst the value of the constant to be added to the constant pool.
890 Item newConstItem(final Object cst) { argument
891 if (cst instanceof Integer) {
892 int val = ((Integer) cst).intValue();
894 } else if (cst instanceof Byte) {
895 int val = ((Byte) cst).intValue();
897 } else if (cst instanceof Character) {
898 int val = ((Character) cst).charValue();
900 } else if (cst instanceof Short) {
901 int val = ((Short) cst)
939 newConst(final Object cst) argument
[all...]
H A DMethodWriter.java1031 public void visitLdcInsn(final Object cst) { argument
1032 Item i = cw.newConstItem(cst);

Completed in 40 milliseconds