Examples of PerformanceData


Examples of flex2.compiler.util.PerformanceData

        for (int j = 0; j <= POSTPROCESS; j++)
        {
            if (compileTimes[j] == null)
            {
                compileTimes[j] = new PerformanceData();
            }
            else
            {
                compileTimes[j].invocationCount = 0;
                compileTimes[j].totalTime = 0;
View Full Code Here

Examples of flex2.compiler.util.PerformanceData

        PerformanceData[] ret = new PerformanceData[POSTPROCESS + 1];
        try
        {
            for (int i = PREPROCESS; i <= POSTPROCESS; ++i)
            {
                ret[i] = new PerformanceData();
                ret[i].invocationCount = this.compileTimes[i].invocationCount;
                ret[i].totalTime = this.compileTimes[i].totalTime - other.compileTimes[i].totalTime;
            }
        }
        catch (Exception e)
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.