Examples of pop()


Examples of com.sun.org.apache.xerces.internal.util.IntStack.pop()

                if (opStack.isEmpty()) {
                    return retValue;
                }

                op = (Op) opStack.pop();
                offset = dataStack.pop();

                switch (op.type) {
                case Op.CLOSURE:
                case Op.QUESTION:
                    if (retValue < 0) {
View Full Code Here

Examples of com.sun.tools.internal.ws.wsdl.framework.TWSDLParserContextImpl.pop()

            if (parts != null) {
                body.setParts(parts);
            }

            parent.addExtension(body);
            context.pop();
//            context.fireDoneParsingEntity(getBodyQName(), body);
            return true;
        } else if (XmlUtil.matchesTagNS(e, getHeaderQName())) {
            context.push();
            context.registerNamespaces(e);
View Full Code Here

Examples of com.sun.tools.ws.wsdl.framework.TWSDLParserContextImpl.pop()

            if (parts != null) {
                body.setParts(parts);
            }

            parent.addExtension(body);
            context.pop();
//            context.fireDoneParsingEntity(getBodyQName(), body);
            return true;
        } else if (XmlUtil.matchesTagNS(e, getHeaderQName())) {
            context.push();
            context.registerNamespaces(e);
View Full Code Here

Examples of com.tamingtext.tagrecommender.TagRecommenderClient.ScoreTagQueue.pop()

    });
   
    ScoreTag[] rankedTags = new ScoreTag[maxTags];
    int pos = maxTags;
    while (queue.size() > 0) {
      rankedTags[--pos] = queue.pop();
    }
   
    System.err.println("Least tag count " + rankedTags[maxTags-1].getCount());
    System.err.println("Dumping Ranked Tags...");
    System.err.flush();
View Full Code Here

Examples of com.thoughtworks.xstream.core.util.FastStack.pop()

        }

        for (int i = 0; i < relativePath.chunks.length; i++) {
            String relativeChunk = relativePath.chunks[i];
            if (relativeChunk.equals("..")) {
                absoluteStack.pop();
            } else if (!relativeChunk.equals(".")) {
                absoluteStack.push(relativeChunk);
            }
        }
View Full Code Here

Examples of com.tistory.devyongsik.crescent.admin.entity.HighFreqTermResult.TermStatsQueue.pop()

      TermStatsQueue q = highFreqTermResult.getTermStatsQueue();
     
      List<CrescentTermStats> crescentTermStatsList = new ArrayList<CrescentTermStats>();
     
      while(q.size() > 0) {
        CrescentTermStats stats = q.pop();
       
        crescentTermStatsList.add(stats);
      }
     
      Collections.sort(crescentTermStatsList, new Comparator<CrescentTermStats>() {
View Full Code Here

Examples of com.tll.client.ui.view.ViewContainer.pop()

    final ViewContainer vc = e.vc;

    // set the view
    if(showPopped) {
      // NOTE: the view history is not affected!
      vc.pop(parentViewPanel);
    }
    else {
      final boolean sameView = (current != null && current.equals(e));
      final boolean pndgIsPopped = e.vc.isPopped();
      final boolean crntIsPopped = current != null && current.vc.isPopped();
View Full Code Here

Examples of com.volantis.synergetics.cornerstone.stack.ArrayListStack.pop()

            } while (parent != null);

            // Remove the fake parent node if there is one.
            Node top = (Node) stack.peek();
            if (top instanceof Element && ((Element) top).getName() == null) {
                stack.pop();
            }

            StringBuffer path = new StringBuffer();
            while (!stack.isEmpty()) {
                Node pathNode = (Node) stack.pop();
View Full Code Here

Examples of com.volantis.synergetics.cornerstone.stack.Stack.pop()

        Stack scopeStack = (Stack) type2ScopeStack.get(definitionType);
        if (scopeStack == null || scopeStack.isEmpty()) {
            throw new IllegalArgumentException(
                    "Scope for " + definitionType + " not found");
        }
        scopeStack.pop();
        if (scopeStack.isEmpty()) {
            type2ScopeStack.remove(definitionType);
        }
    }
View Full Code Here

Examples of de.odysseus.calyxo.panels.PanelsContext.pop()

        try {
          dispatch(request, response, template, false);
        } finally {
//          log.debug("pop " + panel.getName());
          context.pop();
        }
        return;
      }
    }
    super.dispatch(request, response, dispatch);
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.