Examples of returnValue()


Examples of clojure.asm.commons.GeneratorAdapter.returnValue()

      LocalBinding lb = (LocalBinding) s.first();
      ctorgen.loadThis();
      ctorgen.visitVarInsn(OBJECT_TYPE.getOpcode(Opcodes.ILOAD), a);
      ctorgen.putField(fntype, lb.name, OBJECT_TYPE);
      }
    ctorgen.returnValue();
    //  ctorgen.visitMaxs(1, 1);
    ctorgen.endMethod();

    //override of invoke/doInvoke for each method
    for(ISeq s = RT.seq(methods); s != null; s = s.rest())
View Full Code Here

Examples of com.alibaba.citrus.codegen.CodeBuilder.returnValue()

        MethodBuilder mb = cb.addConstructor(null, null);
        CodeBuilder code = mb.startCode();

        code.loadThis();
        code.invokeConstructor(cb.getSuperType(), new com.alibaba.citrus.asm.commons.Method(CONSTRUCTOR_NAME, "()V"));
        code.returnValue();
    }

    /**
     * ����һ�����س�����<code>toString()</code>������
     */
 
View Full Code Here

Examples of com.google.dexmaker.Code.returnValue()

            if (void.class.equals(returnType)) {
                code.invokeSuper(superMethod, null, localThis, superArgs2);
                code.returnVoid();
            } else {
                invokeSuper(superMethod, code, localThis, superArgs2, superResult2);
                code.returnValue(superResult2);
            }

            /*
             * And to allow calling the original super method, the following is also generated:
             *
 
View Full Code Here

Examples of com.salesforce.phoenix.schema.Sequence.returnValue()

            }
            for (int i=0;i<resultObjects.length;i++){
                Sequence sequence = toReturnList.get(i);
                Result result = (Result)resultObjects[i];
                try {
                    sequence.returnValue(result);
                } catch (SQLException e) {
                    exceptions[indexes[i]] = e;
                }
            }
        } finally {
View Full Code Here

Examples of com.sun.jdi.event.MethodExitEvent.returnValue()

                    else if ( event instanceof MethodExitEvent )
                    {
                        MethodExitEvent exitEvent = (MethodExitEvent) event;
                        handler.onMethodExit( suspension, exitEvent.virtualMachine(), exitEvent.thread(),
                                              (MethodExitRequest) exitEvent.request(), exitEvent.method(),
                                              exitEvent.returnValue(), exitEvent.location() );
                    }
                    else if ( event instanceof StepEvent )
                    {
                        StepEvent stepEvent = (StepEvent) event;
                        handler.onStep( suspension, stepEvent.virtualMachine(), stepEvent.thread(),
View Full Code Here

Examples of jdk.internal.org.objectweb.asm.commons.GeneratorAdapter.returnValue()

            asLong(mv, 0);
            mv.visitInsn(L2D);
            asDouble(mv, 1);
            mv.visitLabel(doubleOperation);
            realOp.accept(mv);
            mv.returnValue();
            mv.visitLabel(longOperation);
            asLong(mv, 0);
            asLong(mv, 1);
            integerOp.accept(mv);
            mv.returnValue();
View Full Code Here

Examples of org.apache.phoenix.schema.Sequence.returnValue()

            }
            for (int i=0;i<resultObjects.length;i++){
                Sequence sequence = toReturnList.get(i);
                Result result = (Result)resultObjects[i];
                try {
                    sequence.returnValue(result);
                } catch (SQLException e) {
                    exceptions[indexes[i]] = e;
                }
            }
        } finally {
View Full Code Here

Examples of org.cojen.classfile.CodeBuilder.returnValue()

            b.invoke(bp.getReadMethod());

            Label noMatch = b.createLabel();
            b.ifNullBranch(noMatch, false);
            b.loadConstant(true);
            b.returnValue(TypeDesc.BOOLEAN);

            noMatch.setLocation();
        }

        b.loadConstant(false);
View Full Code Here

Examples of org.cojen.classfile.CodeBuilder.returnValue()

            noMatch.setLocation();
        }

        b.loadConstant(false);
        b.returnValue(TypeDesc.BOOLEAN);

        searchNotNull.setLocation();

        // Handle search for non-null value. Search non-primitive properties
        // first, to avoid object conversion.
View Full Code Here

Examples of org.cojen.classfile.CodeBuilder.returnValue()

                b.invokeVirtual(Object.class.getName(), "equals", TypeDesc.BOOLEAN, params);

                Label noMatch = b.createLabel();
                b.ifZeroComparisonBranch(noMatch, "==");
                b.loadConstant(true);
                b.returnValue(TypeDesc.BOOLEAN);

                noMatch.setLocation();
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.