Examples of push()


Examples of abstrasy.StaticHeap.push()

         * préparer la gestion de la pile de manière terminale...
         */
        Interpreter interpreter = Interpreter.mySelf();
        StaticHeap global = interpreter.getGLOBAL();

        global.push();
        // retenir le heap de control
        Heap controlh=global.current();
       
        /**
         * si la forme compte un symbole...

Examples of ariba.ui.aribaweb.util.AWEnvironmentStack.push()

    public void applyValues(AWRequestContext requestContext, AWComponent component)
    {
        if (!booleanValueForBinding(BindingNames.omitTags) &&
            !AWEditableRegion.disabled(requestContext())) {
            AWEnvironmentStack environmentStack = env();
            environmentStack.push(RadioValueKey, RadioDefaultKey);
            super.applyValues(requestContext, component);
            // get the radioSelection from the environment (put there
            // by one of the RadioButtons) and push to the parent
            Object radioSelection = environmentStack.pop(RadioValueKey);
            if (RadioDefaultKey.equals(radioSelection)) {

Examples of ariba.ui.meta.core.Context.push()

        Predicate pred = Predicate.fromKeyValueMap(_searchMap);
        Context context = MetaContext.currentContext(this);
        String className = (String)context.values().get(UIMeta.KeyClass);
        QuerySpecification spec = new QuerySpecification(className, pred);

        context.push();
        context.setScopeKey(UIMeta.KeyClass);
        spec.setUseTextIndex(pred != null
                && context.booleanPropertyForKey(PersistenceMeta.PropUseTextSearch, false));
        context.pop();

Examples of at.newmedialab.ldpath.template.model.freemarker.TemplateStackModel.push()

            }

        } else {
            try {
                for(Node node : ldpath.pathQuery(context.getNode(),path,namespaces)) {
                    contextStack.push(new TemplateNodeModel<Node>(node, backend));

                    if(loopVars.length > 0) {
                        loopVars[0] = new TemplateNodeModel<Node>(node,backend);
                    }

Examples of barcode.DetectBarcode.push()

        this.oAttempted = true;
        this.imageDisplay = null;
        this.imageCropped = RgbImageJ2me.toRgbImage(this.imageInput);
        DetectBarcode db = new DetectBarcode(20000);
        try {
            if (!db.push(this.imageCropped)) {
                /**
                 * Couldn't find the barcode. Tell the user.
                 */
                this.oFound = false;
                this.oSuccessful = false;

Examples of barcode.ReadBarcode.Push()

           */
          System.out.println("Couldn't find barcode"); //$NON-NLS-1$
        } else {
          ReadBarcode rb = new ReadBarcode();
          rb.setRect(db.getRect());
          rb.Push(inimg);
          if (!rb.getSuccessful()) {
            /**
             * Couldn't read the barcode.
             */
            System.out.println("Couldn't read barcode"); //$NON-NLS-1$

Examples of bg.smoc.model.manager.GradingQueue.push()

    public void testSerialization() {
        Job job = new Job();
        job.setType(JobType.SUBMIT);
        {
            GradingQueue gradingQueueManager = new GradingQueue("./");
            gradingQueueManager.push(job, null);
        }
        {
            GradingQueue gradingQueueManager = new GradingQueue("./");
            assertEquals(1, gradingQueueManager.getQueue(JobType.SUBMIT).size());
        }

Examples of ca.carleton.gcrc.couch.app.DesignDocumentPush.push()

      }
    }

    DesignDocumentPush ddPush = new DesignDocumentPush(couchDb, ATLAS_DESIGN_SERVER, ddDir);
    try {
      ddPush.push();
    } catch(Exception e) {
      throw new ServletException("Problem pushing design document: "+ATLAS_DESIGN_SERVER, e);
    }
   
    try {

Examples of ca.carleton.gcrc.couch.app.DocumentPush.push()

        for(String fileName : fileNames) {
          File file = new File(documentsDir, fileName);
   
          try {
            DocumentPush docPush = new DocumentPush(couchDb, file);
            docPush.push();
          } catch(Exception e) {
            throw new ServletException("Problem pushing document: "+file.getAbsolutePath(), e);
          }
        }
      }

Examples of cc.redberry.core.utils.IntArrayList.push()

        IntArrayList positions = new IntArrayList();
        positions.add(pivot);

        IntArrayList stack = new IntArrayList();
        stack.push(pivot);
        used.set(pivot);

        long[] contractions;
        Indices indices;
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.