├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── docs ├── 404.html ├── benched │ ├── Benched.html │ └── BenchmarkResults.html ├── bootstrap │ ├── css │ │ ├── bootstrap-responsive.css │ │ ├── bootstrap-responsive.min.css │ │ ├── bootstrap-select.min.css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── img │ │ ├── glyphicons-halflings-white.png │ │ └── glyphicons-halflings.png │ └── js │ │ ├── bootstrap-select.min.js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js ├── dox.xml ├── extra-styles.css ├── favicon.ico ├── haxe-nav.css ├── highlighter.css ├── highlighter.js ├── index.html ├── index.js ├── jquery-1.9.1.min.js ├── nav.js ├── styles.css ├── triangle-closed.png └── triangle-opened.png ├── dox.hxml ├── haxelib.json ├── samples.hxml ├── samples └── Fib.hx └── src └── benched ├── Benched.hx └── BenchmarkResults.hx /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | *.hxs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/README.md -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/benched/Benched.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/benched/Benched.html -------------------------------------------------------------------------------- /docs/benched/BenchmarkResults.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/benched/BenchmarkResults.html -------------------------------------------------------------------------------- /docs/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/css/bootstrap-responsive.css -------------------------------------------------------------------------------- /docs/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /docs/bootstrap/css/bootstrap-select.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/css/bootstrap-select.min.css -------------------------------------------------------------------------------- /docs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /docs/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /docs/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /docs/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/bootstrap/js/bootstrap-select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/js/bootstrap-select.min.js -------------------------------------------------------------------------------- /docs/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /docs/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /docs/dox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/dox.xml -------------------------------------------------------------------------------- /docs/extra-styles.css: -------------------------------------------------------------------------------- 1 | /** to be overridden in sub-themes */ -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/haxe-nav.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/haxe-nav.css -------------------------------------------------------------------------------- /docs/highlighter.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/highlighter.css -------------------------------------------------------------------------------- /docs/highlighter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/highlighter.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /docs/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/nav.js -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/styles.css -------------------------------------------------------------------------------- /docs/triangle-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/triangle-closed.png -------------------------------------------------------------------------------- /docs/triangle-opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/docs/triangle-opened.png -------------------------------------------------------------------------------- /dox.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/dox.hxml -------------------------------------------------------------------------------- /haxelib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/haxelib.json -------------------------------------------------------------------------------- /samples.hxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/samples.hxml -------------------------------------------------------------------------------- /samples/Fib.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/samples/Fib.hx -------------------------------------------------------------------------------- /src/benched/Benched.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/src/benched/Benched.hx -------------------------------------------------------------------------------- /src/benched/BenchmarkResults.hx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamaluik/benched/HEAD/src/benched/BenchmarkResults.hx --------------------------------------------------------------------------------