Examples of line()


Examples of hudson.plugins.analysis.util.HtmlPrinter.line()

        printer.append("<table>");
        T action = getProjectAction(project);
        if (action != null && action.hasValidResults()) {
            BuildResult result = getResult(action);
            if (result.isSuccessfulTouched()) {
                printer.append(printer.line(Messages.ResultAction_Status() + result.getResultIcon()));
            }
            if (result.getNumberOfNewWarnings() > 0) {
                print(printer, Messages.NewWarningsDetail_Name(), result.getNumberOfNewWarnings());
            }
View Full Code Here

Examples of mbj.robotdriver.experimentplate.Well.line()

    for (int col=0; col < theTargetHolder.xSize(); col++) {
      for (int line=0; line < theTargetHolder.ySize(); line++) {
        Well aWell = theTargetHolder.getWell(col, line);
        if (aWell.needIngredient(theIngredient)) {
          String theVolume = String.valueOf(aWell.getVolume(theIngredient));
          outDispInfo = new DispenseInfo(tipNum, theTargetHolder, aWell.column(), aWell.line(),
              theVolume, theIngredient.chemical().pipettingInfo().liquidClass().name());
          return outDispInfo;
        }
      } 
    }
View Full Code Here

Examples of nodebox.graphics.Path.line()

        ctx.strokewidth(1.0);
        Path p = new Path();
        for (int i = -100; i < 100; i++) {
            double x = -snapX + (i * distance);
            double y = -snapY + (i * distance);
            p.line(x, -1000, x, 1000);
            p.line(-1000, y, 1000, y);
        }
        ctx.drawpath(p);
    }

View Full Code Here

Examples of org.apache.pig.parser.SourceLocation.line()

            Throwable t = stats.getErrorThrowable();
            assertTrue(t instanceof FrontendException);
           
            FrontendException fe = (FrontendException) t;
            SourceLocation sl = fe.getSourceLocation();
            assertEquals(2, sl.line());
            assertEquals(15, sl.offset());
           
            Throwable cause = fe.getCause();
            assertTrue(cause instanceof ParserException);
           
View Full Code Here

Examples of org.chromium.sdk.internal.v8native.protocol.input.data.FunctionValueHandle.line()

      openParenPosition = new TextStreamPosition() {
        @Override public int getOffset() {
          return castLongToInt(functionValueHandle.position(), NO_POSITION);
        }
        @Override public int getLine() {
          return castLongToInt(functionValueHandle.line(), NO_POSITION);
        }
        @Override public int getColumn() {
          return castLongToInt(functionValueHandle.column(), NO_POSITION);
        }
        private int castLongToInt(Long objValue, int defaultValue) {
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.line()

        cw.visit(V1_5, ACC_PUBLIC + ACC_SUPER, classname, null, p(Object.class), new String[] {p(Unsafe.class)});
        cw.visitSource("<generated>", null);
       
        SkinnyMethodAdapter method = new SkinnyMethodAdapter(cw, ACC_PUBLIC, "<init>", sig(void.class), null, null);
        method.start();
        method.line(0);
        method.aload(0);
        method.invokespecial(p(Object.class), "<init>", sig(void.class));
        method.voidreturn();
        method.end();
       
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.line()

        method.invokespecial(p(Object.class), "<init>", sig(void.class));
        method.voidreturn();
        method.end();
       
        method = new SkinnyMethodAdapter(cw, ACC_PUBLIC, "throwException", sig(void.class, Throwable.class), null, null);
        method.line(0);
        method.start();
        method.aload(1);
        method.athrow();
        method.end();
       
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.line()

        } else {
            specificArity = true;

            mv = new SkinnyMethodAdapter(cw, ACC_PUBLIC, "call", COMPILED_CALL_SIG_BLOCK, null, null);
            mv.start();
            mv.line(-1);

            // check arity
            mv.aloadMany(0, 1, 4, 5); // method, context, name, args, required
            mv.pushInt(scope.getRequiredArgs());
            mv.invokestatic(p(JavaMethod.class), "checkArgumentCount", sig(void.class, JavaMethod.class, ThreadContext.class, String.class, IRubyObject[].class, int.class));
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.line()

                signature = COMPILED_CALL_SIG_THREE;
                break;
            }
            mv = new SkinnyMethodAdapter(cw, ACC_PUBLIC, "call", signature, null, null);
            mv.start();
            mv.line(-1);

            mv.aloadMany(0, 1, 2, 3, 4);
            for (int i = 1; i <= scope.getRequiredArgs(); i++) {
                mv.aload(4 + i);
            }
View Full Code Here

Examples of org.jruby.compiler.impl.SkinnyMethodAdapter.line()

            mv = new SkinnyMethodAdapter(cw, ACC_PUBLIC, "call", signature, null, null);
        }

        mv.visitCode();
        mv.line(-1);

        // save off callNumber
        mv.aload(1);
        mv.getfield(p(ThreadContext.class), "callNumber", ci(int.class));
        int callNumberIndex = -1;
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.