File: System.hx

package info (click to toggle)
haxe 1%3A3.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 29,888 kB
  • sloc: ml: 106,129; ansic: 1,978; makefile: 609; cpp: 357; java: 349; cs: 323; python: 250; sh: 75; objc: 64; xml: 29
file content (19 lines) | stat: -rw-r--r-- 871 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package flash.system;

extern class System {
	@:require(flash10_1) static var freeMemory(default,never) : Float;
	static var ime(default,never) : IME;
	@:require(flash10_1) static var privateMemory(default,never) : Float;
	@:require(flash11) static var processCPUUsage(default,never) : Float;
	static var totalMemory(default,never) : UInt;
	@:require(flash10_1) static var totalMemoryNumber(default,never) : Float;
	static var useCodePage : Bool;
	static var vmVersion(default,never) : String;
	@:require(flash10_1) static function disposeXML(node : flash.xml.XML) : Void;
	static function exit(code : UInt) : Void;
	static function gc() : Void;
	static function pause() : Void;
	@:require(flash11) static function pauseForGCIfCollectionImminent(imminence : Float = 0.75) : Void;
	static function resume() : Void;
	static function setClipboard(string : String) : Void;
}