summaryrefslogtreecommitdiff
path: root/swat.obsolete/apps/qooxdoo-examples/performance/NumberCreate_1.html
blob: 7cdb760b6255d53a646065dda86f0cf9158788b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>qooxdoo &raquo; Demo</title>
  <link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
  <!--[if IE]>
  <link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
  <![endif]-->
  <script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
  <script type="text/javascript" src="../../script/layout.js"></script>

  <div id="demoDescription">
    <p>Tests for Number creation performance</p>
    <ol>
      <li>Using simple number</li>
      <li>Using parseInt</li>
      <li>Using parseFloat</li>
      <li>Using new with string int</li>
      <li>Using new with string float</li>
      <li>Using new with simple number</li>
      <li>Using new with parseInt</li>
      <li>Using new with parseFloat</li>
    </ol>
  </div>

  <script type="text/javascript">
  qx.core.Init.getInstance().defineMain(function()
  {
    var n1 = "2392";
    var n2 = "223.92";

    function NumberCreate1(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = 2392;
      };
    };

    function NumberCreate2(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = parseInt(n1);
      };
    };

    function NumberCreate3(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = parseFloat(n2);
      };
    };

    function NumberCreate4(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = new Number(n1);
      };
    };

    function NumberCreate5(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = new Number(n2);
      };
    };

    function NumberCreate6(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = new Number(2392);
      };
    };

    function NumberCreate7(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = new Number(parseInt(n1));
      };
    };

    function NumberCreate8(vLoops)
    {
      var foo;

      for (var i=0; i<vLoops; i++) {
        foo = new Number(parseFloat(n2));
      };
    };

    new qx.dev.TimeTracker(NumberCreate1, NumberCreate2, NumberCreate3, NumberCreate4, NumberCreate5, NumberCreate6, NumberCreate7, NumberCreate8);
  });
  </script>
</body>
</html>