Examples of analyze()


Examples of jdepend.framework.JDepend.analyze()

    sweetHome3DApplet.dependsUpon(sweetHome3DIO);
    sweetHome3DApplet.dependsUpon(swing);
    sweetHome3DApplet.dependsUpon(java3d);
    sweetHome3DApplet.dependsUpon(jnlp);
   
    jdepend.analyze();

    assertTrue("Dependency mismatch", jdepend.dependencyMatch(constraint));
  }
}
View Full Code Here

Examples of kameleon.plugin.Analyzer.analyze()

   *       if an error occurred while analyzing the given file
   */
  public static Document launchAnalyzer(PlugInInfo analyzer, String path)
      throws KameleonException {
    Analyzer plugIn = getInstance(analyzer, ANALYSER_FOLDER, Analyzer.class) ;
    return plugIn.analyze(path) ;
  }// launchAnalyzer(PlugInInfi, String)

  /**
   * Launches the generation of the given file with the given
   * generator.
 
View Full Code Here

Examples of kilim.analysis.ClassFlow.analyze()

    private static String                lastClassName = null;

    protected void cache(String className) throws Exception {
        if (lastClassName != className) {
            ClassFlow cf = new ClassFlow(className, Detector.DEFAULT);
            stflows = cf.analyze(/* forceAnalysis = */true);
            lastClassName = className;
        }
    }

    protected MethodFlow getFlow(String methodName) {
View Full Code Here

Examples of litil.tc.HMTypeChecker.analyze()

        HMTypeChecker hmTc = new HMTypeChecker();
        TypeScope tenv = trootScope().child();
        for (Instruction instr : ast.instructions) {
            System.out.println(instr.repr(0));

            System.out.println(":: " + hmTc.analyze(instr, tenv));
            System.out.println("--------------");
        }

        System.out.println(tenv);
View Full Code Here

Examples of net.jangaroo.jooc.CompilationUnit.analyze()

        messager.error(null, "main.illegal_package_name", s2);
    }
    ArrayList units = getCompilationUnits();
    for (int i = 0; i < units.size(); i++) {
        CompilationUnit unit = (CompilationUnit) units.get(i);
        unit.analyze(new AnalyzeContext());

   // searchSubPackages(list2, listbuffer, list3);
    //for(List list5 = listbuffer.toList(); list5.nonEmpty(); list5 = list5.tail)
    //    parsePackageClasses((String)list5.head, listbuffer2, list3);
    //
View Full Code Here

Examples of net.sf.joafip.asm.tree.analysis.Analyzer.analyze()

      final String desc, final MethodVisitor mv, final Map labels) {
    this(new MethodNode(access, name, desc, null, null) {
      public void visitEnd() {
        Analyzer a = new Analyzer(new BasicVerifier());
        try {
          a.analyze("dummy", this);
        } catch (Exception e) {
          e.printStackTrace();
          StringWriter sw = new StringWriter();
          PrintWriter pw = new PrintWriter(sw, true);
          CheckClassAdapter.printAnalyzerResult(this, a, pw);
View Full Code Here

Examples of net.sf.saxon.expr.Expression.analyze()

    public static void analyze(WithParam[] params, StaticContext env, ItemType contextItemType) throws XPathException {
         for (int i=0; i<params.length; i++) {
            Expression select = params[i].getSelectExpression();
            if (select != null) {
                params[i].setSelectExpression(select.analyze(env, contextItemType));
            }
        }
    }

   /**
 
View Full Code Here

Examples of net.sf.saxon.pattern.Pattern.analyze()

     */

    public XPathExpression createPattern(String pattern) throws XPathException {
        Pattern pat = Pattern.make(pattern, staticContext, staticContext.getExecutable());
        ExpressionVisitor visitor = ExpressionVisitor.make(staticContext);
        pat.analyze(visitor, Type.NODE_TYPE);
        SlotManager map = staticContext.getStackFrameMap();
        int slots = map.getNumberOfVariables();
        slots = pat.allocateSlots(staticContext, map, slots);
        PatternSponsor sponsor = new PatternSponsor(pat);
        XPathExpression xpe = new XPathExpression(this, sponsor);
View Full Code Here

Examples of net.sf.saxon.regex.RegularExpression.analyze()

                dynamicError("The regular expression must not be one that matches a zero-length string",
                        "XTDE1150", context);
            }
        }

        return re.analyze(input);
    }

    /**
     * Return an Iterator to iterate over the values of a sequence. The value of every
     * expression can be regarded as a sequence, so this method is supported for all
View Full Code Here

Examples of nginx.clojure.asm.tree.analysis.Analyzer.analyze()

        this.className = className;
        this.mn = mn;
        this.classAndMethod = className + "." +  mn.name + mn.desc;
        try {
            Analyzer a = MethodDatabaseUtil.buildAnalyzer(db);
            this.frames = a.analyze(className, mn);
            this.lvarStack = mn.maxLocals;
            this.firstLocal = ((mn.access & Opcodes.ACC_STATIC) == Opcodes.ACC_STATIC) ? 0 : 1;
        } catch (UnsupportedOperationException ex) {
            throw new AnalyzerException(null, ex.getMessage(), ex);
        }
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.