Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,58 @@
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.io;
// @:coreApi
extern class Bytes {
function new(length:Int, b:BytesData):Void;
var length(default, null):Int;
function get(pos:Int):Int;
function set(pos:Int, v:Int):Void;
function blit(pos:Int, src:Bytes, srcpos:Int, len:Int):Void;
function fill(pos:Int, len:Int, value:Int):Void;
function sub(pos:Int, len:Int):Bytes;
function compare(other:Bytes):Int;
function getDouble(pos:Int):Float;
function getFloat(pos:Int):Float;
function setDouble(pos:Int, v:Float):Void;
function setFloat(pos:Int, v:Float):Void;
function getUInt16(pos:Int):Int;
function setUInt16(pos:Int, v:Int):Void;
function getInt32(pos:Int):Int;
function getInt64(pos:Int):haxe.Int64;
function setInt32(pos:Int, v:Int):Void;
function setInt64(pos:Int, v:haxe.Int64):Void;
function getString(pos:Int, len:Int, ?encoding:Encoding):String;
function toString():String;
function toHex():String;
function getData():BytesData;
static function alloc(length:Int):Bytes;
@:pure
static function ofString(s:String, ?encoding:Encoding):Bytes;
static function ofData(b:BytesData):Bytes;
static function ofHex(s:String):Bytes;
static function fastGet(b:BytesData, pos:Int):Int;
static function __init__():Void {
haxe.io.Error;
}
}

View File

@ -0,0 +1,39 @@
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.io;
@:coreApi
extern class BytesBuffer {
var length(get, never):Int;
function new():Void;
private function get_length():Int;
function addByte(byte:Int):Void;
function add(src:Bytes):Void;
function addString(v:String, ?encoding:Encoding):Void;
function addInt32(v:Int):Void;
function addInt64(v:haxe.Int64):Void;
function addFloat(v:Float):Void;
function addDouble(v:Float):Void;
function addBytes(src:Bytes, pos:Int, len:Int):Void;
function getBytes():Bytes;
}

View File

@ -0,0 +1,34 @@
/*
* Copyright (C)2005-2019 Haxe Foundation
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*/
package haxe.io;
@:forward
private abstract NativeBytesDataAbstract(Bytes) from Bytes to Bytes {
@:arrayAccess public inline function get(i:Int)
return this.get(i);
@:arrayAccess public inline function set(i:Int, v:Dynamic)
this.set(i, v);
}
typedef BytesData = NativeBytesDataAbstract;