Examples of fill()


Examples of com.lowagie.text.pdf.PdfTemplate.fill()

            t.stroke();
           
            // Fill a rectangle with CMYK alternate
            t.setColorFill(spc_g, 0.5f);
            t.rectangle(100, 125, 100, 100);
            t.fill();
            t.beginText();
            t.setFontAndSize(bf, 20f);
            t.setTextMatrix(1f, 0f, 0f, 1f, 10f, 10f);
            t.showText("Template text upside down");
            t.endText();
View Full Code Here

Examples of com.peterhi.obsolete.Data.fill()

  @Test
  public void pFill_int_long() throws Exception {
    try {
      Data data = new Data();
      data.write(1);
      data.fill(0, 4);
      data.fill(1, 3);
      data.fill(0, 0);
      data.fill(0, 1);
      data.write(0);
      data.fill(1, 6);
View Full Code Here

Examples of com.peterhi.runtime.Buffer.fill()

    testBuffer.write(1);
   
    // 0[1111111]
    //   ||||||
    //   filled
    testBuffer.fill(6, 1);
   
    // [11111111]
    //   ||||||
    //   filled
    testBuffer.write(1);
View Full Code Here

Examples of com.salesforce.phoenix.query.KeyRange.fill()

                default:
                    range = childPart.getKeyRange(op, rhs);
                    break;
                }
                Integer length = getColumn().getByteSize();
                return length == null ? range : range.fill(length);
            }

            @Override
            public List<Expression> getExtractNodes() {
                return Collections.<Expression>emptyList();
View Full Code Here

Examples of com.sun.grid.jgdi.monitoring.filter.UserFilter.fill()

            } else if (args[i].equals("-u")) {
                i++;
                if (i >= args.length) {
                    throw new IllegalArgumentException("user_list is missing");
                }
                users.fill(args[i]);
            } else if (args[i].equals("-f")) {
                force = true;
            } else if (args[i].charAt(0) == '-') {
                out.println(getUsage());
                out.flush();
View Full Code Here

Examples of com.sun.messaging.jmq.io.Packet.fill()

                                            ClusterBroadcast.VERSION_410) {
                    return null;
                }
                Packet p = new Packet();
                try {
                p.fill(msg);
                } catch (IOException e) {
                logger.logStack(Logger.INFO,"Internal Exception processing packet ", e);
                throw new BrokerException(e.getMessage(), e);
                }
                p.setPacketType(PacketType.PREPARE_TRANSACTION);
View Full Code Here

Examples of com.sun.messaging.jmq.io.ReadWritePacket.fill()

    {
        // write packet
        // it needs to be of type ReadOnlyPacket
        ReadWritePacket rp = new ReadWritePacket();
        // this should be deep
        rp.fill(p, true);

        // stick on the queue
        outputQueue.add(rp);

        return true;
View Full Code Here

Examples of com.trolltech.qt.gui.QPixmap.fill()

    setBackgroundBrush(new QBrush(QColor.black));
   
    //Create transparent QPixmap that accepts hovers
    //  so that moveMouseEvent is triggered
    QPixmap pixelMap = new QPixmap(sceneSize);
    pixelMap.fill(QColor.transparent);
    QGraphicsPixmapItem background = addPixmap(pixelMap);
    background.setAcceptsHoverEvents(true);
    background.setZValue(-1);
   
    // Draw colored tiles onto QPixMap
View Full Code Here

Examples of com.uic.ase.proj.xbn.template.TemplateFiller.fill()

          tog1DOBSection, sTMPL_DOBS_all_depended_on_by_rows,
          tog1DOBSRow, sTMPL_DOBSR_package_name,
          sDOBSRNewline, sDOBSctnNothing);

        tf.setTemplate(tog3Pkg);
        tf.fill(sTMPL_PKG_package_name, aSacsacs[i].s);
        tf.fill(sTMPL_PKG_depends_on_section, sDOSection);
        tf.fill(sTMPL_PKG_depended_on_by_section, sDOBSection);
        sbAllPackageLists.append(tf.getResult());
      }
View Full Code Here

Examples of crazypants.enderio.conduit.liquid.ILiquidConduit.fill()

 
  @Override
  public int fill(ForgeDirection from, FluidStack resource, boolean doFill) {
    ILiquidConduit lc = getConduit(ILiquidConduit.class);
    if(lc != null) {
      return lc.fill(from, resource, doFill);
    }
    return 0;
  }

  @Override
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.