File: System.hx

package info (click to toggle)
haxe 1%3A4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,520 kB
  • sloc: ml: 137,268; ansic: 2,491; makefile: 456; java: 386; cs: 336; cpp: 318; python: 318; sh: 75; objc: 64; php: 50; xml: 31; javascript: 11
file content (28 lines) | stat: -rw-r--r-- 1,465 bytes parent folder | download | duplicates (4)
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
package flash.system;

extern class System {
	@:flash.property @:require(flash10_1) static var freeMemory(get,never) : Float;
	@:flash.property static var ime(get,never) : IME;
	@:flash.property @:require(flash10_1) static var privateMemory(get,never) : Float;
	@:flash.property @:require(flash11) static var processCPUUsage(get,never) : Float;
	@:flash.property static var totalMemory(get,never) : UInt;
	@:flash.property @:require(flash10_1) static var totalMemoryNumber(get,never) : Float;
	@:flash.property static var useCodePage(get,set) : Bool;
	@:flash.property static var vmVersion(get,never) : String;
	@:require(flash10_1) static function disposeXML(node : flash.xml.XML) : Void;
	static function exit(code : UInt) : Void;
	static function gc() : Void;
	private static function get_freeMemory() : Float;
	private static function get_ime() : IME;
	private static function get_privateMemory() : Float;
	private static function get_processCPUUsage() : Float;
	private static function get_totalMemory() : UInt;
	private static function get_totalMemoryNumber() : Float;
	private static function get_useCodePage() : Bool;
	private static function get_vmVersion() : String;
	static function pause() : Void;
	@:require(flash11) static function pauseForGCIfCollectionImminent(imminence : Float = 0.75) : Void;
	static function resume() : Void;
	static function setClipboard(string : String) : Void;
	private static function set_useCodePage(value : Bool) : Bool;
}