Examples of execute()


Examples of edu.umd.cs.findbugs.ba.heap.StoreDataflow.execute()

            return null;
        }
        StoreAnalysis analysis = new StoreAnalysis(getDepthFirstSearch(analysisCache, descriptor), getConstantPoolGen(
                analysisCache, descriptor.getClassDescriptor()));
        StoreDataflow dataflow = new StoreDataflow(getCFG(analysisCache, descriptor), analysis);
        dataflow.execute();
        return dataflow;
    }
}
View Full Code Here

Examples of edu.umd.cs.findbugs.ba.npe.IsNullValueDataflow.execute()

        invAnalysis.setClassAndMethod(new JavaClassAndMethod(getJavaClass(analysisCache, descriptor.getClassDescriptor()),
                getMethod(analysisCache, descriptor)));

        IsNullValueDataflow invDataflow = new IsNullValueDataflow(cfg, invAnalysis);
        invDataflow.execute();
        if (ClassContext.DUMP_DATAFLOW_ANALYSIS) {
            invDataflow.dumpDataflow(invAnalysis);
        }
        return invDataflow;
View Full Code Here

Examples of edu.umd.cs.findbugs.ba.npe.NullDerefAndRedundantComparisonFinder.execute()

        // work. It will call back to report null derefs and redundant null
        // comparisons
        // through the NullDerefAndRedundantComparisonCollector interface we
        // implement.
        NullDerefAndRedundantComparisonFinder worker = new NullDerefAndRedundantComparisonFinder(classContext, method, this);
        worker.execute();

        checkCallSitesAndReturnInstructions();

    }
View Full Code Here

Examples of edu.umd.cs.findbugs.ba.npe.ReturnPathTypeDataflow.execute()

        DepthFirstSearch dfs = getDepthFirstSearch(analysisCache, descriptor);
        ReverseDepthFirstSearch rdfs = getReverseDepthFirstSearch(analysisCache, descriptor);
        ReturnPathTypeAnalysis analysis = new ReturnPathTypeAnalysis(cfg, rdfs, dfs);
        ReturnPathTypeDataflow dataflow = new ReturnPathTypeDataflow(cfg, analysis);

        dataflow.execute();

        return dataflow;
    }
}
View Full Code Here

Examples of edu.umd.cs.findbugs.ba.obl.ObligationDataflow.execute()

        ObligationDataflow dataflow = new ObligationDataflow(cfg, analysis);

        Profiler profiler = analysisCache.getProfiler();
        profiler.start(analysis.getClass());
        try {
            dataflow.execute();
        } finally {
            profiler.end(analysis.getClass());
        }

        if (DEBUG_PRINTCFG) {
View Full Code Here

Examples of edu.umd.cs.findbugs.ba.type.TypeDataflow.execute()

        // for values loaded from fields.
        typeAnalysis.setFieldStoreTypeDatabase(AnalysisContext.currentAnalysisContext().getFieldStoreTypeDatabase());

        TypeDataflow typeDataflow = new TypeDataflow(cfg, typeAnalysis);
        try {
            typeDataflow.execute();
        } catch (CheckedAnalysisException e) {
            AnalysisContext.logError("Error performing type dataflow analysis of " + descriptor, e);
            throw e;
        }
        if (TypeAnalysis.DEBUG || ClassContext.DUMP_DATAFLOW_ANALYSIS) {
View Full Code Here

Examples of edu.umd.cs.findbugs.ba.vna.ValueNumberDataflow.execute()

                .currentAnalysisContext().getLookupFailureCallback());
        analysis.setMergeTree(new MergeTree(analysis.getFactory()));
        CFG cfg = getCFG(analysisCache, descriptor);

        ValueNumberDataflow vnaDataflow = new ValueNumberDataflow(cfg, analysis);
        vnaDataflow.execute();
        if (ClassContext.DUMP_DATAFLOW_ANALYSIS) {
            TreeSet<Location> tree = new TreeSet<Location>();
            for (Iterator<Location> locs = cfg.locationIterator(); locs.hasNext();) {
                Location loc = locs.next();
                tree.add(loc);
View Full Code Here

Examples of es.upm.dit.ScrappyExecutor.execute()

      return null;
    }
    ScrappyExecutor scrappy = new ScrappyExecutor();
    String scrappy_dump = null;
    try {
      scrappy_dump = scrappy.execute(url); //"1"
    } catch (ConnectException ce) {
      ce.printStackTrace();
      ModelException.throwException(ModelException.SCRAPPY_CONNECTION_ERROR,
          "Connection exception to execute Scrappy");
    }
View Full Code Here

Examples of eu.admire.example.Client.execute()

  public void go(DataEvent dataEvent) {
   

    Client cl = new Client();
    Map<String, Result> results = cl.execute(mSql,"dpt\\certificates\\", mServerUrl.toString());
   
 

    ResultSet rs = Util.getAsResultSet(results.get("sample"), 5);
    dataEvent.newData(rs);
View Full Code Here

Examples of eu.irmosproject.ascd.transformation.MOFScriptExecutor.execute()

    MOFScriptExecutor exec = new MOFScriptExecutor(ecoreFile, transformationPath);
   
    outputDir = ecoreFile.substring(0, ecoreFile.lastIndexOf("\\"));
    outputDir = outputDir + "\\ASCD\\";
   
    exec.execute(outputDir);
   
    try{
      _selectedFile.getParent().refreshLocal(IResource.DEPTH_INFINITE, null);
    } catch (CoreException e) {
      e.printStackTrace();
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.