mt-lang 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/index.html +4 -3
- data/lib/milk_tea/base.rb +1 -1
- data/std/asset_pack.mt +267 -0
- data/std/async/libuv_runtime.mt +539 -0
- data/std/async/mailbox.mt +191 -0
- data/std/async/runtime.mt +87 -0
- data/std/async.mt +87 -0
- data/std/base64.mt +185 -0
- data/std/behavior_tree.mt +396 -0
- data/std/binary.mt +314 -0
- data/std/binary_heap.mt +157 -0
- data/std/bitset.mt +239 -0
- data/std/box2d.mt +535 -0
- data/std/bytes.mt +46 -0
- data/std/c/box2d.mt +1254 -0
- data/std/c/cgltf.mt +647 -0
- data/std/c/cjson.mt +106 -0
- data/std/c/crypto.mt +11 -0
- data/std/c/crypto_support.h +51 -0
- data/std/c/ctype.mt +19 -0
- data/std/c/ctype_bindgen.h +29 -0
- data/std/c/curl.mt +1223 -0
- data/std/c/enet.mt +473 -0
- data/std/c/errno.mt +41 -0
- data/std/c/errno_bindgen.h +53 -0
- data/std/c/flecs.mt +2945 -0
- data/std/c/fs.linux.mt +43 -0
- data/std/c/fs.windows.mt +43 -0
- data/std/c/fs_support.h +954 -0
- data/std/c/gl.mt +2065 -0
- data/std/c/gl_registry_helpers.h +10748 -0
- data/std/c/glfw.mt +499 -0
- data/std/c/libc.mt +167 -0
- data/std/c/libuv.mt +1491 -0
- data/std/c/math.mt +22 -0
- data/std/c/math_bindgen.h +31 -0
- data/std/c/miniaudio.mt +3420 -0
- data/std/c/pcre2.mt +735 -0
- data/std/c/process.mt +58 -0
- data/std/c/process_support.h +1147 -0
- data/std/c/raygui.mt +1602 -0
- data/std/c/raylib.mt +1245 -0
- data/std/c/raymath.mt +163 -0
- data/std/c/rlgl.mt +434 -0
- data/std/c/rpng.mt +60 -0
- data/std/c/rres.mt +187 -0
- data/std/c/sdl3.mt +4132 -0
- data/std/c/sqlite3.mt +951 -0
- data/std/c/stb_image.mt +52 -0
- data/std/c/stb_image_resize2.mt +128 -0
- data/std/c/stb_image_write.mt +19 -0
- data/std/c/stb_rect_pack.mt +38 -0
- data/std/c/stb_truetype.mt +175 -0
- data/std/c/stb_vorbis.mt +31 -0
- data/std/c/stdio.mt +90 -0
- data/std/c/steamworks.h +5769 -0
- data/std/c/steamworks.mt +4771 -0
- data/std/c/string.mt +16 -0
- data/std/c/string_bindgen.h +36 -0
- data/std/c/sync.mt +33 -0
- data/std/c/sync_support.h +219 -0
- data/std/c/terminal.mt +24 -0
- data/std/c/terminal_support.h +408 -0
- data/std/c/time.mt +26 -0
- data/std/c/tls.mt +24 -0
- data/std/c/tls_support.h +626 -0
- data/std/c/tracy.mt +53 -0
- data/std/c/zlib.mt +20 -0
- data/std/c/zlib_support.h +239 -0
- data/std/c/zstd.mt +231 -0
- data/std/cell.mt +60 -0
- data/std/cgltf.mt +115 -0
- data/std/cjson.mt +90 -0
- data/std/cli.mt +768 -0
- data/std/cookie.mt +198 -0
- data/std/counter.mt +160 -0
- data/std/crypto.mt +74 -0
- data/std/cstring.mt +13 -0
- data/std/ctype.mt +52 -0
- data/std/curl/runtime.mt +261 -0
- data/std/curl.mt +38 -0
- data/std/deque.mt +348 -0
- data/std/encoding.mt +93 -0
- data/std/enet.mt +133 -0
- data/std/env.mt +41 -0
- data/std/errno.mt +47 -0
- data/std/flecs.mt +978 -0
- data/std/fmt.mt +271 -0
- data/std/fs.linux.mt +696 -0
- data/std/fs.windows.mt +711 -0
- data/std/fsm.mt +267 -0
- data/std/gl.mt +2062 -0
- data/std/glfw.mt +471 -0
- data/std/goap.mt +342 -0
- data/std/graph.mt +521 -0
- data/std/gzip.mt +77 -0
- data/std/hash.mt +429 -0
- data/std/http/server.mt +810 -0
- data/std/http.mt +1227 -0
- data/std/intern.mt +53 -0
- data/std/jobs.mt +288 -0
- data/std/json.mt +627 -0
- data/std/libc.mt +34 -0
- data/std/libuv.mt +554 -0
- data/std/linear_algebra.mt +243 -0
- data/std/linked_map.mt +372 -0
- data/std/linked_map_view.mt +49 -0
- data/std/linked_set.mt +117 -0
- data/std/log.mt +69 -0
- data/std/map.mt +418 -0
- data/std/math.mt +24 -0
- data/std/mem/arena.mt +137 -0
- data/std/mem/endian.mt +51 -0
- data/std/mem/heap.mt +298 -0
- data/std/mem/pool.mt +164 -0
- data/std/mem/stack.mt +47 -0
- data/std/mem/tracking.mt +119 -0
- data/std/miniaudio.mt +1299 -0
- data/std/multiset.mt +191 -0
- data/std/net/channel.mt +727 -0
- data/std/net/clock.mt +237 -0
- data/std/net/discovery.mt +277 -0
- data/std/net/lobby.mt +813 -0
- data/std/net/manager.mt +539 -0
- data/std/net/mux.mt +839 -0
- data/std/net/nat.mt +122 -0
- data/std/net/packet.mt +219 -0
- data/std/net/punch.mt +162 -0
- data/std/net/rpc.mt +119 -0
- data/std/net/session.mt +1157 -0
- data/std/net/stun.mt +252 -0
- data/std/net/sync.mt +183 -0
- data/std/net/turn.mt +459 -0
- data/std/net.mt +2944 -0
- data/std/oauth2.mt +408 -0
- data/std/option.mt +51 -0
- data/std/ordered_map.mt +497 -0
- data/std/ordered_set.mt +348 -0
- data/std/path.mt +368 -0
- data/std/pcre2/runtime.mt +35 -0
- data/std/pcre2.mt +78 -0
- data/std/priority_queue.mt +55 -0
- data/std/process.mt +837 -0
- data/std/queue.mt +55 -0
- data/std/random.mt +146 -0
- data/std/raygui.mt +99 -0
- data/std/raylib/debug_console.mt +71 -0
- data/std/raylib/easing.mt +388 -0
- data/std/raylib/packed_assets.mt +255 -0
- data/std/raylib/runtime.mt +30 -0
- data/std/raylib/tracy_gpu.mt +37 -0
- data/std/raylib.mt +1510 -0
- data/std/raymath.mt +153 -0
- data/std/result.mt +89 -0
- data/std/rlgl.mt +268 -0
- data/std/rpng.mt +46 -0
- data/std/rres.mt +36 -0
- data/std/sdl3/runtime.mt +54 -0
- data/std/sdl3.mt +1731 -0
- data/std/serialize.mt +68 -0
- data/std/set.mt +124 -0
- data/std/spatial.mt +176 -0
- data/std/sqlite3.mt +151 -0
- data/std/stack.mt +55 -0
- data/std/stb_image.mt +47 -0
- data/std/stb_image_resize2.mt +41 -0
- data/std/stb_image_write.mt +17 -0
- data/std/stb_rect_pack.mt +15 -0
- data/std/stb_truetype.mt +77 -0
- data/std/stb_vorbis.mt +16 -0
- data/std/stdio.mt +88 -0
- data/std/steamworks.mt +1542 -0
- data/std/str.mt +293 -0
- data/std/string.mt +234 -0
- data/std/sync.mt +194 -0
- data/std/tar.mt +704 -0
- data/std/terminal.mt +1002 -0
- data/std/testing.mt +266 -0
- data/std/thread.mt +120 -0
- data/std/time.mt +105 -0
- data/std/tls.mt +616 -0
- data/std/toml.mt +1310 -0
- data/std/tracy.mt +42 -0
- data/std/uri.mt +118 -0
- data/std/url.mt +372 -0
- data/std/vec.mt +433 -0
- data/std/zstd.mt +94 -0
- metadata +187 -2
data/std/c/pcre2.mt
ADDED
|
@@ -0,0 +1,735 @@
|
|
|
1
|
+
# generated by mtc bindgen from /home/teefan/Projects/Ruby/mt-lang/tmp/vendored-pcre2-prefix/include/pcre2.h
|
|
2
|
+
external
|
|
3
|
+
|
|
4
|
+
link "pcre2-8"
|
|
5
|
+
include "pcre2.h"
|
|
6
|
+
|
|
7
|
+
type PCRE2_UCHAR8 = ubyte
|
|
8
|
+
type PCRE2_UCHAR16 = ushort
|
|
9
|
+
type PCRE2_UCHAR32 = uint
|
|
10
|
+
type PCRE2_SPTR8 = const_ptr[PCRE2_UCHAR8]
|
|
11
|
+
type PCRE2_SPTR16 = const_ptr[PCRE2_UCHAR16]
|
|
12
|
+
type PCRE2_SPTR32 = const_ptr[PCRE2_UCHAR32]
|
|
13
|
+
|
|
14
|
+
opaque pcre2_general_context_8 = c"pcre2_general_context_8"
|
|
15
|
+
opaque pcre2_compile_context_8 = c"pcre2_compile_context_8"
|
|
16
|
+
opaque pcre2_match_context_8 = c"pcre2_match_context_8"
|
|
17
|
+
opaque pcre2_convert_context_8 = c"pcre2_convert_context_8"
|
|
18
|
+
opaque pcre2_code_8 = c"pcre2_code_8"
|
|
19
|
+
opaque pcre2_match_data_8 = c"pcre2_match_data_8"
|
|
20
|
+
opaque pcre2_jit_stack_8 = c"pcre2_jit_stack_8"
|
|
21
|
+
|
|
22
|
+
type pcre2_jit_callback_8 = fn(arg0: ptr[void]) -> ptr[pcre2_jit_stack_8]
|
|
23
|
+
|
|
24
|
+
struct pcre2_callout_block_8:
|
|
25
|
+
version: uint
|
|
26
|
+
callout_number: uint
|
|
27
|
+
capture_top: uint
|
|
28
|
+
capture_last: uint
|
|
29
|
+
offset_vector: ptr[ptr_uint]
|
|
30
|
+
mark: const_ptr[PCRE2_UCHAR8]
|
|
31
|
+
subject: const_ptr[PCRE2_UCHAR8]
|
|
32
|
+
subject_length: ptr_uint
|
|
33
|
+
start_match: ptr_uint
|
|
34
|
+
current_position: ptr_uint
|
|
35
|
+
pattern_position: ptr_uint
|
|
36
|
+
next_item_length: ptr_uint
|
|
37
|
+
callout_string_offset: ptr_uint
|
|
38
|
+
callout_string_length: ptr_uint
|
|
39
|
+
callout_string: const_ptr[PCRE2_UCHAR8]
|
|
40
|
+
callout_flags: uint
|
|
41
|
+
|
|
42
|
+
struct pcre2_callout_enumerate_block_8:
|
|
43
|
+
version: uint
|
|
44
|
+
pattern_position: ptr_uint
|
|
45
|
+
next_item_length: ptr_uint
|
|
46
|
+
callout_number: uint
|
|
47
|
+
callout_string_offset: ptr_uint
|
|
48
|
+
callout_string_length: ptr_uint
|
|
49
|
+
callout_string: const_ptr[PCRE2_UCHAR8]
|
|
50
|
+
|
|
51
|
+
struct pcre2_substitute_callout_block_8:
|
|
52
|
+
version: uint
|
|
53
|
+
input: const_ptr[PCRE2_UCHAR8]
|
|
54
|
+
output: const_ptr[PCRE2_UCHAR8]
|
|
55
|
+
output_offsets: array[ptr_uint, 2]
|
|
56
|
+
ovector: ptr[ptr_uint]
|
|
57
|
+
oveccount: uint
|
|
58
|
+
subscount: uint
|
|
59
|
+
|
|
60
|
+
external function pcre2_config_8(arg0: uint, arg1: ptr[void]) -> int
|
|
61
|
+
external function pcre2_general_context_copy_8(arg0: ptr[pcre2_general_context_8]) -> ptr[pcre2_general_context_8]
|
|
62
|
+
external function pcre2_general_context_create_8(arg0: fn(arg0: ptr_uint, arg1: ptr[void]) -> ptr[void], arg1: fn(arg0: ptr[void], arg1: ptr[void]) -> void, arg2: ptr[void]) -> ptr[pcre2_general_context_8]
|
|
63
|
+
external function pcre2_general_context_free_8(arg0: ptr[pcre2_general_context_8]) -> void
|
|
64
|
+
external function pcre2_compile_context_copy_8(arg0: ptr[pcre2_compile_context_8]) -> ptr[pcre2_compile_context_8]
|
|
65
|
+
external function pcre2_compile_context_create_8(arg0: ptr[pcre2_general_context_8]) -> ptr[pcre2_compile_context_8]
|
|
66
|
+
external function pcre2_compile_context_free_8(arg0: ptr[pcre2_compile_context_8]) -> void
|
|
67
|
+
external function pcre2_set_bsr_8(arg0: ptr[pcre2_compile_context_8], arg1: uint) -> int
|
|
68
|
+
external function pcre2_set_character_tables_8(arg0: ptr[pcre2_compile_context_8], arg1: const_ptr[ubyte]) -> int
|
|
69
|
+
external function pcre2_set_compile_extra_options_8(arg0: ptr[pcre2_compile_context_8], arg1: uint) -> int
|
|
70
|
+
external function pcre2_set_max_pattern_length_8(arg0: ptr[pcre2_compile_context_8], arg1: ptr_uint) -> int
|
|
71
|
+
external function pcre2_set_max_pattern_compiled_length_8(arg0: ptr[pcre2_compile_context_8], arg1: ptr_uint) -> int
|
|
72
|
+
external function pcre2_set_max_varlookbehind_8(arg0: ptr[pcre2_compile_context_8], arg1: uint) -> int
|
|
73
|
+
external function pcre2_set_newline_8(arg0: ptr[pcre2_compile_context_8], arg1: uint) -> int
|
|
74
|
+
external function pcre2_set_parens_nest_limit_8(arg0: ptr[pcre2_compile_context_8], arg1: uint) -> int
|
|
75
|
+
external function pcre2_set_compile_recursion_guard_8(arg0: ptr[pcre2_compile_context_8], arg1: fn(arg0: uint, arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
76
|
+
external function pcre2_set_optimize_8(arg0: ptr[pcre2_compile_context_8], arg1: uint) -> int
|
|
77
|
+
external function pcre2_convert_context_copy_8(arg0: ptr[pcre2_convert_context_8]) -> ptr[pcre2_convert_context_8]
|
|
78
|
+
external function pcre2_convert_context_create_8(arg0: ptr[pcre2_general_context_8]) -> ptr[pcre2_convert_context_8]
|
|
79
|
+
external function pcre2_convert_context_free_8(arg0: ptr[pcre2_convert_context_8]) -> void
|
|
80
|
+
external function pcre2_set_glob_escape_8(arg0: ptr[pcre2_convert_context_8], arg1: uint) -> int
|
|
81
|
+
external function pcre2_set_glob_separator_8(arg0: ptr[pcre2_convert_context_8], arg1: uint) -> int
|
|
82
|
+
external function pcre2_pattern_convert_8(arg0: const_ptr[PCRE2_UCHAR8], arg1: ptr_uint, arg2: uint, arg3: ptr[ptr[PCRE2_UCHAR8]], arg4: ptr[ptr_uint], arg5: ptr[pcre2_convert_context_8]) -> int
|
|
83
|
+
external function pcre2_converted_pattern_free_8(arg0: ptr[PCRE2_UCHAR8]) -> void
|
|
84
|
+
external function pcre2_match_context_copy_8(arg0: ptr[pcre2_match_context_8]) -> ptr[pcre2_match_context_8]
|
|
85
|
+
external function pcre2_match_context_create_8(arg0: ptr[pcre2_general_context_8]) -> ptr[pcre2_match_context_8]
|
|
86
|
+
external function pcre2_match_context_free_8(arg0: ptr[pcre2_match_context_8]) -> void
|
|
87
|
+
external function pcre2_set_callout_8(arg0: ptr[pcre2_match_context_8], arg1: fn(arg0: ptr[pcre2_callout_block_8], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
88
|
+
external function pcre2_set_substitute_callout_8(arg0: ptr[pcre2_match_context_8], arg1: fn(arg0: ptr[pcre2_substitute_callout_block_8], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
89
|
+
external function pcre2_set_substitute_case_callout_8(arg0: ptr[pcre2_match_context_8], arg1: fn(arg0: PCRE2_SPTR8, arg1: ptr_uint, arg2: ptr[PCRE2_UCHAR8], arg3: ptr_uint, arg4: int, arg5: ptr[void]) -> ptr_uint, arg2: ptr[void]) -> int
|
|
90
|
+
external function pcre2_set_depth_limit_8(arg0: ptr[pcre2_match_context_8], arg1: uint) -> int
|
|
91
|
+
external function pcre2_set_heap_limit_8(arg0: ptr[pcre2_match_context_8], arg1: uint) -> int
|
|
92
|
+
external function pcre2_set_match_limit_8(arg0: ptr[pcre2_match_context_8], arg1: uint) -> int
|
|
93
|
+
external function pcre2_set_offset_limit_8(arg0: ptr[pcre2_match_context_8], arg1: ptr_uint) -> int
|
|
94
|
+
external function pcre2_set_recursion_limit_8(arg0: ptr[pcre2_match_context_8], arg1: uint) -> int
|
|
95
|
+
external function pcre2_set_recursion_memory_management_8(arg0: ptr[pcre2_match_context_8], arg1: fn(arg0: ptr_uint, arg1: ptr[void]) -> ptr[void], arg2: fn(arg0: ptr[void], arg1: ptr[void]) -> void, arg3: ptr[void]) -> int
|
|
96
|
+
external function pcre2_compile_8(arg0: const_ptr[PCRE2_UCHAR8], arg1: ptr_uint, arg2: uint, arg3: ptr[int], arg4: ptr[ptr_uint], arg5: ptr[pcre2_compile_context_8]) -> ptr[pcre2_code_8]
|
|
97
|
+
external function pcre2_code_free_8(arg0: ptr[pcre2_code_8]) -> void
|
|
98
|
+
external function pcre2_code_copy_8(arg0: const_ptr[pcre2_code_8]) -> ptr[pcre2_code_8]
|
|
99
|
+
external function pcre2_code_copy_with_tables_8(arg0: const_ptr[pcre2_code_8]) -> ptr[pcre2_code_8]
|
|
100
|
+
external function pcre2_pattern_info_8(arg0: const_ptr[pcre2_code_8], arg1: uint, arg2: ptr[void]) -> int
|
|
101
|
+
external function pcre2_callout_enumerate_8(arg0: const_ptr[pcre2_code_8], arg1: fn(arg0: ptr[pcre2_callout_enumerate_block_8], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
102
|
+
external function pcre2_match_data_create_8(arg0: uint, arg1: ptr[pcre2_general_context_8]) -> ptr[pcre2_match_data_8]
|
|
103
|
+
external function pcre2_match_data_create_from_pattern_8(arg0: const_ptr[pcre2_code_8], arg1: ptr[pcre2_general_context_8]) -> ptr[pcre2_match_data_8]
|
|
104
|
+
external function pcre2_match_data_free_8(arg0: ptr[pcre2_match_data_8]) -> void
|
|
105
|
+
external function pcre2_dfa_match_8(arg0: const_ptr[pcre2_code_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_8], arg6: ptr[pcre2_match_context_8], arg7: ptr[int], arg8: ptr_uint) -> int
|
|
106
|
+
external function pcre2_match_8(arg0: const_ptr[pcre2_code_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_8], arg6: ptr[pcre2_match_context_8]) -> int
|
|
107
|
+
external function pcre2_get_mark_8(arg0: ptr[pcre2_match_data_8]) -> PCRE2_SPTR8
|
|
108
|
+
external function pcre2_get_match_data_size_8(arg0: ptr[pcre2_match_data_8]) -> ptr_uint
|
|
109
|
+
external function pcre2_get_match_data_heapframes_size_8(arg0: ptr[pcre2_match_data_8]) -> ptr_uint
|
|
110
|
+
external function pcre2_get_ovector_count_8(arg0: ptr[pcre2_match_data_8]) -> uint
|
|
111
|
+
external function pcre2_get_ovector_pointer_8(arg0: ptr[pcre2_match_data_8]) -> ptr[ptr_uint]
|
|
112
|
+
external function pcre2_get_startchar_8(arg0: ptr[pcre2_match_data_8]) -> ptr_uint
|
|
113
|
+
external function pcre2_next_match_8(arg0: ptr[pcre2_match_data_8], arg1: ptr[ptr_uint], arg2: ptr[uint]) -> int
|
|
114
|
+
external function pcre2_substring_copy_byname_8(arg0: ptr[pcre2_match_data_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr[PCRE2_UCHAR8], arg3: ptr[ptr_uint]) -> int
|
|
115
|
+
external function pcre2_substring_copy_bynumber_8(arg0: ptr[pcre2_match_data_8], arg1: uint, arg2: ptr[PCRE2_UCHAR8], arg3: ptr[ptr_uint]) -> int
|
|
116
|
+
external function pcre2_substring_free_8(arg0: ptr[PCRE2_UCHAR8]) -> void
|
|
117
|
+
external function pcre2_substring_get_byname_8(arg0: ptr[pcre2_match_data_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr[ptr[PCRE2_UCHAR8]], arg3: ptr[ptr_uint]) -> int
|
|
118
|
+
external function pcre2_substring_get_bynumber_8(arg0: ptr[pcre2_match_data_8], arg1: uint, arg2: ptr[ptr[PCRE2_UCHAR8]], arg3: ptr[ptr_uint]) -> int
|
|
119
|
+
external function pcre2_substring_length_byname_8(arg0: ptr[pcre2_match_data_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr[ptr_uint]) -> int
|
|
120
|
+
external function pcre2_substring_length_bynumber_8(arg0: ptr[pcre2_match_data_8], arg1: uint, arg2: ptr[ptr_uint]) -> int
|
|
121
|
+
external function pcre2_substring_nametable_scan_8(arg0: const_ptr[pcre2_code_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr[PCRE2_SPTR8], arg3: ptr[PCRE2_SPTR8]) -> int
|
|
122
|
+
external function pcre2_substring_number_from_name_8(arg0: const_ptr[pcre2_code_8], arg1: const_ptr[PCRE2_UCHAR8]) -> int
|
|
123
|
+
external function pcre2_substring_list_free_8(arg0: ptr[ptr[PCRE2_UCHAR8]]) -> void
|
|
124
|
+
external function pcre2_substring_list_get_8(arg0: ptr[pcre2_match_data_8], arg1: ptr[ptr[ptr[PCRE2_UCHAR8]]], arg2: ptr[ptr[ptr_uint]]) -> int
|
|
125
|
+
external function pcre2_serialize_encode_8(arg0: ptr[const_ptr[pcre2_code_8]], arg1: int, arg2: ptr[ptr[ubyte]], arg3: ptr[ptr_uint], arg4: ptr[pcre2_general_context_8]) -> int
|
|
126
|
+
external function pcre2_serialize_decode_8(arg0: ptr[ptr[pcre2_code_8]], arg1: int, arg2: const_ptr[ubyte], arg3: ptr[pcre2_general_context_8]) -> int
|
|
127
|
+
external function pcre2_serialize_get_number_of_codes_8(arg0: const_ptr[ubyte]) -> int
|
|
128
|
+
external function pcre2_serialize_free_8(arg0: ptr[ubyte]) -> void
|
|
129
|
+
external function pcre2_substitute_8(arg0: const_ptr[pcre2_code_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_8], arg6: ptr[pcre2_match_context_8], arg7: const_ptr[PCRE2_UCHAR8], arg8: ptr_uint, arg9: ptr[PCRE2_UCHAR8], arg10: ptr[ptr_uint]) -> int
|
|
130
|
+
external function pcre2_jit_compile_8(arg0: ptr[pcre2_code_8], arg1: uint) -> int
|
|
131
|
+
external function pcre2_jit_match_8(arg0: const_ptr[pcre2_code_8], arg1: const_ptr[PCRE2_UCHAR8], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_8], arg6: ptr[pcre2_match_context_8]) -> int
|
|
132
|
+
external function pcre2_jit_free_unused_memory_8(arg0: ptr[pcre2_general_context_8]) -> void
|
|
133
|
+
external function pcre2_jit_stack_create_8(arg0: ptr_uint, arg1: ptr_uint, arg2: ptr[pcre2_general_context_8]) -> ptr[pcre2_jit_stack_8]
|
|
134
|
+
external function pcre2_jit_stack_assign_8(arg0: ptr[pcre2_match_context_8], arg1: fn(arg0: ptr[void]) -> ptr[pcre2_jit_stack_8], arg2: ptr[void]) -> void
|
|
135
|
+
external function pcre2_jit_stack_free_8(arg0: ptr[pcre2_jit_stack_8]) -> void
|
|
136
|
+
external function pcre2_get_error_message_8(arg0: int, arg1: ptr[PCRE2_UCHAR8], arg2: ptr_uint) -> int
|
|
137
|
+
external function pcre2_maketables_8(arg0: ptr[pcre2_general_context_8]) -> const_ptr[ubyte]
|
|
138
|
+
external function pcre2_maketables_free_8(arg0: ptr[pcre2_general_context_8], arg1: const_ptr[ubyte]) -> void
|
|
139
|
+
|
|
140
|
+
opaque pcre2_general_context_16 = c"pcre2_general_context_16"
|
|
141
|
+
opaque pcre2_compile_context_16 = c"pcre2_compile_context_16"
|
|
142
|
+
opaque pcre2_match_context_16 = c"pcre2_match_context_16"
|
|
143
|
+
opaque pcre2_convert_context_16 = c"pcre2_convert_context_16"
|
|
144
|
+
opaque pcre2_code_16 = c"pcre2_code_16"
|
|
145
|
+
opaque pcre2_match_data_16 = c"pcre2_match_data_16"
|
|
146
|
+
opaque pcre2_jit_stack_16 = c"pcre2_jit_stack_16"
|
|
147
|
+
|
|
148
|
+
type pcre2_jit_callback_16 = fn(arg0: ptr[void]) -> ptr[pcre2_jit_stack_16]
|
|
149
|
+
|
|
150
|
+
struct pcre2_callout_block_16:
|
|
151
|
+
version: uint
|
|
152
|
+
callout_number: uint
|
|
153
|
+
capture_top: uint
|
|
154
|
+
capture_last: uint
|
|
155
|
+
offset_vector: ptr[ptr_uint]
|
|
156
|
+
mark: const_ptr[PCRE2_UCHAR16]
|
|
157
|
+
subject: const_ptr[PCRE2_UCHAR16]
|
|
158
|
+
subject_length: ptr_uint
|
|
159
|
+
start_match: ptr_uint
|
|
160
|
+
current_position: ptr_uint
|
|
161
|
+
pattern_position: ptr_uint
|
|
162
|
+
next_item_length: ptr_uint
|
|
163
|
+
callout_string_offset: ptr_uint
|
|
164
|
+
callout_string_length: ptr_uint
|
|
165
|
+
callout_string: const_ptr[PCRE2_UCHAR16]
|
|
166
|
+
callout_flags: uint
|
|
167
|
+
|
|
168
|
+
struct pcre2_callout_enumerate_block_16:
|
|
169
|
+
version: uint
|
|
170
|
+
pattern_position: ptr_uint
|
|
171
|
+
next_item_length: ptr_uint
|
|
172
|
+
callout_number: uint
|
|
173
|
+
callout_string_offset: ptr_uint
|
|
174
|
+
callout_string_length: ptr_uint
|
|
175
|
+
callout_string: const_ptr[PCRE2_UCHAR16]
|
|
176
|
+
|
|
177
|
+
struct pcre2_substitute_callout_block_16:
|
|
178
|
+
version: uint
|
|
179
|
+
input: const_ptr[PCRE2_UCHAR16]
|
|
180
|
+
output: const_ptr[PCRE2_UCHAR16]
|
|
181
|
+
output_offsets: array[ptr_uint, 2]
|
|
182
|
+
ovector: ptr[ptr_uint]
|
|
183
|
+
oveccount: uint
|
|
184
|
+
subscount: uint
|
|
185
|
+
|
|
186
|
+
external function pcre2_config_16(arg0: uint, arg1: ptr[void]) -> int
|
|
187
|
+
external function pcre2_general_context_copy_16(arg0: ptr[pcre2_general_context_16]) -> ptr[pcre2_general_context_16]
|
|
188
|
+
external function pcre2_general_context_create_16(arg0: fn(arg0: ptr_uint, arg1: ptr[void]) -> ptr[void], arg1: fn(arg0: ptr[void], arg1: ptr[void]) -> void, arg2: ptr[void]) -> ptr[pcre2_general_context_16]
|
|
189
|
+
external function pcre2_general_context_free_16(arg0: ptr[pcre2_general_context_16]) -> void
|
|
190
|
+
external function pcre2_compile_context_copy_16(arg0: ptr[pcre2_compile_context_16]) -> ptr[pcre2_compile_context_16]
|
|
191
|
+
external function pcre2_compile_context_create_16(arg0: ptr[pcre2_general_context_16]) -> ptr[pcre2_compile_context_16]
|
|
192
|
+
external function pcre2_compile_context_free_16(arg0: ptr[pcre2_compile_context_16]) -> void
|
|
193
|
+
external function pcre2_set_bsr_16(arg0: ptr[pcre2_compile_context_16], arg1: uint) -> int
|
|
194
|
+
external function pcre2_set_character_tables_16(arg0: ptr[pcre2_compile_context_16], arg1: const_ptr[ubyte]) -> int
|
|
195
|
+
external function pcre2_set_compile_extra_options_16(arg0: ptr[pcre2_compile_context_16], arg1: uint) -> int
|
|
196
|
+
external function pcre2_set_max_pattern_length_16(arg0: ptr[pcre2_compile_context_16], arg1: ptr_uint) -> int
|
|
197
|
+
external function pcre2_set_max_pattern_compiled_length_16(arg0: ptr[pcre2_compile_context_16], arg1: ptr_uint) -> int
|
|
198
|
+
external function pcre2_set_max_varlookbehind_16(arg0: ptr[pcre2_compile_context_16], arg1: uint) -> int
|
|
199
|
+
external function pcre2_set_newline_16(arg0: ptr[pcre2_compile_context_16], arg1: uint) -> int
|
|
200
|
+
external function pcre2_set_parens_nest_limit_16(arg0: ptr[pcre2_compile_context_16], arg1: uint) -> int
|
|
201
|
+
external function pcre2_set_compile_recursion_guard_16(arg0: ptr[pcre2_compile_context_16], arg1: fn(arg0: uint, arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
202
|
+
external function pcre2_set_optimize_16(arg0: ptr[pcre2_compile_context_16], arg1: uint) -> int
|
|
203
|
+
external function pcre2_convert_context_copy_16(arg0: ptr[pcre2_convert_context_16]) -> ptr[pcre2_convert_context_16]
|
|
204
|
+
external function pcre2_convert_context_create_16(arg0: ptr[pcre2_general_context_16]) -> ptr[pcre2_convert_context_16]
|
|
205
|
+
external function pcre2_convert_context_free_16(arg0: ptr[pcre2_convert_context_16]) -> void
|
|
206
|
+
external function pcre2_set_glob_escape_16(arg0: ptr[pcre2_convert_context_16], arg1: uint) -> int
|
|
207
|
+
external function pcre2_set_glob_separator_16(arg0: ptr[pcre2_convert_context_16], arg1: uint) -> int
|
|
208
|
+
external function pcre2_pattern_convert_16(arg0: const_ptr[PCRE2_UCHAR16], arg1: ptr_uint, arg2: uint, arg3: ptr[ptr[PCRE2_UCHAR16]], arg4: ptr[ptr_uint], arg5: ptr[pcre2_convert_context_16]) -> int
|
|
209
|
+
external function pcre2_converted_pattern_free_16(arg0: ptr[PCRE2_UCHAR16]) -> void
|
|
210
|
+
external function pcre2_match_context_copy_16(arg0: ptr[pcre2_match_context_16]) -> ptr[pcre2_match_context_16]
|
|
211
|
+
external function pcre2_match_context_create_16(arg0: ptr[pcre2_general_context_16]) -> ptr[pcre2_match_context_16]
|
|
212
|
+
external function pcre2_match_context_free_16(arg0: ptr[pcre2_match_context_16]) -> void
|
|
213
|
+
external function pcre2_set_callout_16(arg0: ptr[pcre2_match_context_16], arg1: fn(arg0: ptr[pcre2_callout_block_16], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
214
|
+
external function pcre2_set_substitute_callout_16(arg0: ptr[pcre2_match_context_16], arg1: fn(arg0: ptr[pcre2_substitute_callout_block_16], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
215
|
+
external function pcre2_set_substitute_case_callout_16(arg0: ptr[pcre2_match_context_16], arg1: fn(arg0: PCRE2_SPTR16, arg1: ptr_uint, arg2: ptr[PCRE2_UCHAR16], arg3: ptr_uint, arg4: int, arg5: ptr[void]) -> ptr_uint, arg2: ptr[void]) -> int
|
|
216
|
+
external function pcre2_set_depth_limit_16(arg0: ptr[pcre2_match_context_16], arg1: uint) -> int
|
|
217
|
+
external function pcre2_set_heap_limit_16(arg0: ptr[pcre2_match_context_16], arg1: uint) -> int
|
|
218
|
+
external function pcre2_set_match_limit_16(arg0: ptr[pcre2_match_context_16], arg1: uint) -> int
|
|
219
|
+
external function pcre2_set_offset_limit_16(arg0: ptr[pcre2_match_context_16], arg1: ptr_uint) -> int
|
|
220
|
+
external function pcre2_set_recursion_limit_16(arg0: ptr[pcre2_match_context_16], arg1: uint) -> int
|
|
221
|
+
external function pcre2_set_recursion_memory_management_16(arg0: ptr[pcre2_match_context_16], arg1: fn(arg0: ptr_uint, arg1: ptr[void]) -> ptr[void], arg2: fn(arg0: ptr[void], arg1: ptr[void]) -> void, arg3: ptr[void]) -> int
|
|
222
|
+
external function pcre2_compile_16(arg0: const_ptr[PCRE2_UCHAR16], arg1: ptr_uint, arg2: uint, arg3: ptr[int], arg4: ptr[ptr_uint], arg5: ptr[pcre2_compile_context_16]) -> ptr[pcre2_code_16]
|
|
223
|
+
external function pcre2_code_free_16(arg0: ptr[pcre2_code_16]) -> void
|
|
224
|
+
external function pcre2_code_copy_16(arg0: const_ptr[pcre2_code_16]) -> ptr[pcre2_code_16]
|
|
225
|
+
external function pcre2_code_copy_with_tables_16(arg0: const_ptr[pcre2_code_16]) -> ptr[pcre2_code_16]
|
|
226
|
+
external function pcre2_pattern_info_16(arg0: const_ptr[pcre2_code_16], arg1: uint, arg2: ptr[void]) -> int
|
|
227
|
+
external function pcre2_callout_enumerate_16(arg0: const_ptr[pcre2_code_16], arg1: fn(arg0: ptr[pcre2_callout_enumerate_block_16], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
228
|
+
external function pcre2_match_data_create_16(arg0: uint, arg1: ptr[pcre2_general_context_16]) -> ptr[pcre2_match_data_16]
|
|
229
|
+
external function pcre2_match_data_create_from_pattern_16(arg0: const_ptr[pcre2_code_16], arg1: ptr[pcre2_general_context_16]) -> ptr[pcre2_match_data_16]
|
|
230
|
+
external function pcre2_match_data_free_16(arg0: ptr[pcre2_match_data_16]) -> void
|
|
231
|
+
external function pcre2_dfa_match_16(arg0: const_ptr[pcre2_code_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_16], arg6: ptr[pcre2_match_context_16], arg7: ptr[int], arg8: ptr_uint) -> int
|
|
232
|
+
external function pcre2_match_16(arg0: const_ptr[pcre2_code_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_16], arg6: ptr[pcre2_match_context_16]) -> int
|
|
233
|
+
external function pcre2_get_mark_16(arg0: ptr[pcre2_match_data_16]) -> PCRE2_SPTR16
|
|
234
|
+
external function pcre2_get_match_data_size_16(arg0: ptr[pcre2_match_data_16]) -> ptr_uint
|
|
235
|
+
external function pcre2_get_match_data_heapframes_size_16(arg0: ptr[pcre2_match_data_16]) -> ptr_uint
|
|
236
|
+
external function pcre2_get_ovector_count_16(arg0: ptr[pcre2_match_data_16]) -> uint
|
|
237
|
+
external function pcre2_get_ovector_pointer_16(arg0: ptr[pcre2_match_data_16]) -> ptr[ptr_uint]
|
|
238
|
+
external function pcre2_get_startchar_16(arg0: ptr[pcre2_match_data_16]) -> ptr_uint
|
|
239
|
+
external function pcre2_next_match_16(arg0: ptr[pcre2_match_data_16], arg1: ptr[ptr_uint], arg2: ptr[uint]) -> int
|
|
240
|
+
external function pcre2_substring_copy_byname_16(arg0: ptr[pcre2_match_data_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr[PCRE2_UCHAR16], arg3: ptr[ptr_uint]) -> int
|
|
241
|
+
external function pcre2_substring_copy_bynumber_16(arg0: ptr[pcre2_match_data_16], arg1: uint, arg2: ptr[PCRE2_UCHAR16], arg3: ptr[ptr_uint]) -> int
|
|
242
|
+
external function pcre2_substring_free_16(arg0: ptr[PCRE2_UCHAR16]) -> void
|
|
243
|
+
external function pcre2_substring_get_byname_16(arg0: ptr[pcre2_match_data_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr[ptr[PCRE2_UCHAR16]], arg3: ptr[ptr_uint]) -> int
|
|
244
|
+
external function pcre2_substring_get_bynumber_16(arg0: ptr[pcre2_match_data_16], arg1: uint, arg2: ptr[ptr[PCRE2_UCHAR16]], arg3: ptr[ptr_uint]) -> int
|
|
245
|
+
external function pcre2_substring_length_byname_16(arg0: ptr[pcre2_match_data_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr[ptr_uint]) -> int
|
|
246
|
+
external function pcre2_substring_length_bynumber_16(arg0: ptr[pcre2_match_data_16], arg1: uint, arg2: ptr[ptr_uint]) -> int
|
|
247
|
+
external function pcre2_substring_nametable_scan_16(arg0: const_ptr[pcre2_code_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr[PCRE2_SPTR16], arg3: ptr[PCRE2_SPTR16]) -> int
|
|
248
|
+
external function pcre2_substring_number_from_name_16(arg0: const_ptr[pcre2_code_16], arg1: const_ptr[PCRE2_UCHAR16]) -> int
|
|
249
|
+
external function pcre2_substring_list_free_16(arg0: ptr[ptr[PCRE2_UCHAR16]]) -> void
|
|
250
|
+
external function pcre2_substring_list_get_16(arg0: ptr[pcre2_match_data_16], arg1: ptr[ptr[ptr[PCRE2_UCHAR16]]], arg2: ptr[ptr[ptr_uint]]) -> int
|
|
251
|
+
external function pcre2_serialize_encode_16(arg0: ptr[const_ptr[pcre2_code_16]], arg1: int, arg2: ptr[ptr[ubyte]], arg3: ptr[ptr_uint], arg4: ptr[pcre2_general_context_16]) -> int
|
|
252
|
+
external function pcre2_serialize_decode_16(arg0: ptr[ptr[pcre2_code_16]], arg1: int, arg2: const_ptr[ubyte], arg3: ptr[pcre2_general_context_16]) -> int
|
|
253
|
+
external function pcre2_serialize_get_number_of_codes_16(arg0: const_ptr[ubyte]) -> int
|
|
254
|
+
external function pcre2_serialize_free_16(arg0: ptr[ubyte]) -> void
|
|
255
|
+
external function pcre2_substitute_16(arg0: const_ptr[pcre2_code_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_16], arg6: ptr[pcre2_match_context_16], arg7: const_ptr[PCRE2_UCHAR16], arg8: ptr_uint, arg9: ptr[PCRE2_UCHAR16], arg10: ptr[ptr_uint]) -> int
|
|
256
|
+
external function pcre2_jit_compile_16(arg0: ptr[pcre2_code_16], arg1: uint) -> int
|
|
257
|
+
external function pcre2_jit_match_16(arg0: const_ptr[pcre2_code_16], arg1: const_ptr[PCRE2_UCHAR16], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_16], arg6: ptr[pcre2_match_context_16]) -> int
|
|
258
|
+
external function pcre2_jit_free_unused_memory_16(arg0: ptr[pcre2_general_context_16]) -> void
|
|
259
|
+
external function pcre2_jit_stack_create_16(arg0: ptr_uint, arg1: ptr_uint, arg2: ptr[pcre2_general_context_16]) -> ptr[pcre2_jit_stack_16]
|
|
260
|
+
external function pcre2_jit_stack_assign_16(arg0: ptr[pcre2_match_context_16], arg1: fn(arg0: ptr[void]) -> ptr[pcre2_jit_stack_16], arg2: ptr[void]) -> void
|
|
261
|
+
external function pcre2_jit_stack_free_16(arg0: ptr[pcre2_jit_stack_16]) -> void
|
|
262
|
+
external function pcre2_get_error_message_16(arg0: int, arg1: ptr[PCRE2_UCHAR16], arg2: ptr_uint) -> int
|
|
263
|
+
external function pcre2_maketables_16(arg0: ptr[pcre2_general_context_16]) -> const_ptr[ubyte]
|
|
264
|
+
external function pcre2_maketables_free_16(arg0: ptr[pcre2_general_context_16], arg1: const_ptr[ubyte]) -> void
|
|
265
|
+
|
|
266
|
+
opaque pcre2_general_context_32 = c"pcre2_general_context_32"
|
|
267
|
+
opaque pcre2_compile_context_32 = c"pcre2_compile_context_32"
|
|
268
|
+
opaque pcre2_match_context_32 = c"pcre2_match_context_32"
|
|
269
|
+
opaque pcre2_convert_context_32 = c"pcre2_convert_context_32"
|
|
270
|
+
opaque pcre2_code_32 = c"pcre2_code_32"
|
|
271
|
+
opaque pcre2_match_data_32 = c"pcre2_match_data_32"
|
|
272
|
+
opaque pcre2_jit_stack_32 = c"pcre2_jit_stack_32"
|
|
273
|
+
|
|
274
|
+
type pcre2_jit_callback_32 = fn(arg0: ptr[void]) -> ptr[pcre2_jit_stack_32]
|
|
275
|
+
|
|
276
|
+
struct pcre2_callout_block_32:
|
|
277
|
+
version: uint
|
|
278
|
+
callout_number: uint
|
|
279
|
+
capture_top: uint
|
|
280
|
+
capture_last: uint
|
|
281
|
+
offset_vector: ptr[ptr_uint]
|
|
282
|
+
mark: const_ptr[PCRE2_UCHAR32]
|
|
283
|
+
subject: const_ptr[PCRE2_UCHAR32]
|
|
284
|
+
subject_length: ptr_uint
|
|
285
|
+
start_match: ptr_uint
|
|
286
|
+
current_position: ptr_uint
|
|
287
|
+
pattern_position: ptr_uint
|
|
288
|
+
next_item_length: ptr_uint
|
|
289
|
+
callout_string_offset: ptr_uint
|
|
290
|
+
callout_string_length: ptr_uint
|
|
291
|
+
callout_string: const_ptr[PCRE2_UCHAR32]
|
|
292
|
+
callout_flags: uint
|
|
293
|
+
|
|
294
|
+
struct pcre2_callout_enumerate_block_32:
|
|
295
|
+
version: uint
|
|
296
|
+
pattern_position: ptr_uint
|
|
297
|
+
next_item_length: ptr_uint
|
|
298
|
+
callout_number: uint
|
|
299
|
+
callout_string_offset: ptr_uint
|
|
300
|
+
callout_string_length: ptr_uint
|
|
301
|
+
callout_string: const_ptr[PCRE2_UCHAR32]
|
|
302
|
+
|
|
303
|
+
struct pcre2_substitute_callout_block_32:
|
|
304
|
+
version: uint
|
|
305
|
+
input: const_ptr[PCRE2_UCHAR32]
|
|
306
|
+
output: const_ptr[PCRE2_UCHAR32]
|
|
307
|
+
output_offsets: array[ptr_uint, 2]
|
|
308
|
+
ovector: ptr[ptr_uint]
|
|
309
|
+
oveccount: uint
|
|
310
|
+
subscount: uint
|
|
311
|
+
|
|
312
|
+
external function pcre2_config_32(arg0: uint, arg1: ptr[void]) -> int
|
|
313
|
+
external function pcre2_general_context_copy_32(arg0: ptr[pcre2_general_context_32]) -> ptr[pcre2_general_context_32]
|
|
314
|
+
external function pcre2_general_context_create_32(arg0: fn(arg0: ptr_uint, arg1: ptr[void]) -> ptr[void], arg1: fn(arg0: ptr[void], arg1: ptr[void]) -> void, arg2: ptr[void]) -> ptr[pcre2_general_context_32]
|
|
315
|
+
external function pcre2_general_context_free_32(arg0: ptr[pcre2_general_context_32]) -> void
|
|
316
|
+
external function pcre2_compile_context_copy_32(arg0: ptr[pcre2_compile_context_32]) -> ptr[pcre2_compile_context_32]
|
|
317
|
+
external function pcre2_compile_context_create_32(arg0: ptr[pcre2_general_context_32]) -> ptr[pcre2_compile_context_32]
|
|
318
|
+
external function pcre2_compile_context_free_32(arg0: ptr[pcre2_compile_context_32]) -> void
|
|
319
|
+
external function pcre2_set_bsr_32(arg0: ptr[pcre2_compile_context_32], arg1: uint) -> int
|
|
320
|
+
external function pcre2_set_character_tables_32(arg0: ptr[pcre2_compile_context_32], arg1: const_ptr[ubyte]) -> int
|
|
321
|
+
external function pcre2_set_compile_extra_options_32(arg0: ptr[pcre2_compile_context_32], arg1: uint) -> int
|
|
322
|
+
external function pcre2_set_max_pattern_length_32(arg0: ptr[pcre2_compile_context_32], arg1: ptr_uint) -> int
|
|
323
|
+
external function pcre2_set_max_pattern_compiled_length_32(arg0: ptr[pcre2_compile_context_32], arg1: ptr_uint) -> int
|
|
324
|
+
external function pcre2_set_max_varlookbehind_32(arg0: ptr[pcre2_compile_context_32], arg1: uint) -> int
|
|
325
|
+
external function pcre2_set_newline_32(arg0: ptr[pcre2_compile_context_32], arg1: uint) -> int
|
|
326
|
+
external function pcre2_set_parens_nest_limit_32(arg0: ptr[pcre2_compile_context_32], arg1: uint) -> int
|
|
327
|
+
external function pcre2_set_compile_recursion_guard_32(arg0: ptr[pcre2_compile_context_32], arg1: fn(arg0: uint, arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
328
|
+
external function pcre2_set_optimize_32(arg0: ptr[pcre2_compile_context_32], arg1: uint) -> int
|
|
329
|
+
external function pcre2_convert_context_copy_32(arg0: ptr[pcre2_convert_context_32]) -> ptr[pcre2_convert_context_32]
|
|
330
|
+
external function pcre2_convert_context_create_32(arg0: ptr[pcre2_general_context_32]) -> ptr[pcre2_convert_context_32]
|
|
331
|
+
external function pcre2_convert_context_free_32(arg0: ptr[pcre2_convert_context_32]) -> void
|
|
332
|
+
external function pcre2_set_glob_escape_32(arg0: ptr[pcre2_convert_context_32], arg1: uint) -> int
|
|
333
|
+
external function pcre2_set_glob_separator_32(arg0: ptr[pcre2_convert_context_32], arg1: uint) -> int
|
|
334
|
+
external function pcre2_pattern_convert_32(arg0: const_ptr[PCRE2_UCHAR32], arg1: ptr_uint, arg2: uint, arg3: ptr[ptr[PCRE2_UCHAR32]], arg4: ptr[ptr_uint], arg5: ptr[pcre2_convert_context_32]) -> int
|
|
335
|
+
external function pcre2_converted_pattern_free_32(arg0: ptr[PCRE2_UCHAR32]) -> void
|
|
336
|
+
external function pcre2_match_context_copy_32(arg0: ptr[pcre2_match_context_32]) -> ptr[pcre2_match_context_32]
|
|
337
|
+
external function pcre2_match_context_create_32(arg0: ptr[pcre2_general_context_32]) -> ptr[pcre2_match_context_32]
|
|
338
|
+
external function pcre2_match_context_free_32(arg0: ptr[pcre2_match_context_32]) -> void
|
|
339
|
+
external function pcre2_set_callout_32(arg0: ptr[pcre2_match_context_32], arg1: fn(arg0: ptr[pcre2_callout_block_32], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
340
|
+
external function pcre2_set_substitute_callout_32(arg0: ptr[pcre2_match_context_32], arg1: fn(arg0: ptr[pcre2_substitute_callout_block_32], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
341
|
+
external function pcre2_set_substitute_case_callout_32(arg0: ptr[pcre2_match_context_32], arg1: fn(arg0: PCRE2_SPTR32, arg1: ptr_uint, arg2: ptr[PCRE2_UCHAR32], arg3: ptr_uint, arg4: int, arg5: ptr[void]) -> ptr_uint, arg2: ptr[void]) -> int
|
|
342
|
+
external function pcre2_set_depth_limit_32(arg0: ptr[pcre2_match_context_32], arg1: uint) -> int
|
|
343
|
+
external function pcre2_set_heap_limit_32(arg0: ptr[pcre2_match_context_32], arg1: uint) -> int
|
|
344
|
+
external function pcre2_set_match_limit_32(arg0: ptr[pcre2_match_context_32], arg1: uint) -> int
|
|
345
|
+
external function pcre2_set_offset_limit_32(arg0: ptr[pcre2_match_context_32], arg1: ptr_uint) -> int
|
|
346
|
+
external function pcre2_set_recursion_limit_32(arg0: ptr[pcre2_match_context_32], arg1: uint) -> int
|
|
347
|
+
external function pcre2_set_recursion_memory_management_32(arg0: ptr[pcre2_match_context_32], arg1: fn(arg0: ptr_uint, arg1: ptr[void]) -> ptr[void], arg2: fn(arg0: ptr[void], arg1: ptr[void]) -> void, arg3: ptr[void]) -> int
|
|
348
|
+
external function pcre2_compile_32(arg0: const_ptr[PCRE2_UCHAR32], arg1: ptr_uint, arg2: uint, arg3: ptr[int], arg4: ptr[ptr_uint], arg5: ptr[pcre2_compile_context_32]) -> ptr[pcre2_code_32]
|
|
349
|
+
external function pcre2_code_free_32(arg0: ptr[pcre2_code_32]) -> void
|
|
350
|
+
external function pcre2_code_copy_32(arg0: const_ptr[pcre2_code_32]) -> ptr[pcre2_code_32]
|
|
351
|
+
external function pcre2_code_copy_with_tables_32(arg0: const_ptr[pcre2_code_32]) -> ptr[pcre2_code_32]
|
|
352
|
+
external function pcre2_pattern_info_32(arg0: const_ptr[pcre2_code_32], arg1: uint, arg2: ptr[void]) -> int
|
|
353
|
+
external function pcre2_callout_enumerate_32(arg0: const_ptr[pcre2_code_32], arg1: fn(arg0: ptr[pcre2_callout_enumerate_block_32], arg1: ptr[void]) -> int, arg2: ptr[void]) -> int
|
|
354
|
+
external function pcre2_match_data_create_32(arg0: uint, arg1: ptr[pcre2_general_context_32]) -> ptr[pcre2_match_data_32]
|
|
355
|
+
external function pcre2_match_data_create_from_pattern_32(arg0: const_ptr[pcre2_code_32], arg1: ptr[pcre2_general_context_32]) -> ptr[pcre2_match_data_32]
|
|
356
|
+
external function pcre2_match_data_free_32(arg0: ptr[pcre2_match_data_32]) -> void
|
|
357
|
+
external function pcre2_dfa_match_32(arg0: const_ptr[pcre2_code_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_32], arg6: ptr[pcre2_match_context_32], arg7: ptr[int], arg8: ptr_uint) -> int
|
|
358
|
+
external function pcre2_match_32(arg0: const_ptr[pcre2_code_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_32], arg6: ptr[pcre2_match_context_32]) -> int
|
|
359
|
+
external function pcre2_get_mark_32(arg0: ptr[pcre2_match_data_32]) -> PCRE2_SPTR32
|
|
360
|
+
external function pcre2_get_match_data_size_32(arg0: ptr[pcre2_match_data_32]) -> ptr_uint
|
|
361
|
+
external function pcre2_get_match_data_heapframes_size_32(arg0: ptr[pcre2_match_data_32]) -> ptr_uint
|
|
362
|
+
external function pcre2_get_ovector_count_32(arg0: ptr[pcre2_match_data_32]) -> uint
|
|
363
|
+
external function pcre2_get_ovector_pointer_32(arg0: ptr[pcre2_match_data_32]) -> ptr[ptr_uint]
|
|
364
|
+
external function pcre2_get_startchar_32(arg0: ptr[pcre2_match_data_32]) -> ptr_uint
|
|
365
|
+
external function pcre2_next_match_32(arg0: ptr[pcre2_match_data_32], arg1: ptr[ptr_uint], arg2: ptr[uint]) -> int
|
|
366
|
+
external function pcre2_substring_copy_byname_32(arg0: ptr[pcre2_match_data_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr[PCRE2_UCHAR32], arg3: ptr[ptr_uint]) -> int
|
|
367
|
+
external function pcre2_substring_copy_bynumber_32(arg0: ptr[pcre2_match_data_32], arg1: uint, arg2: ptr[PCRE2_UCHAR32], arg3: ptr[ptr_uint]) -> int
|
|
368
|
+
external function pcre2_substring_free_32(arg0: ptr[PCRE2_UCHAR32]) -> void
|
|
369
|
+
external function pcre2_substring_get_byname_32(arg0: ptr[pcre2_match_data_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr[ptr[PCRE2_UCHAR32]], arg3: ptr[ptr_uint]) -> int
|
|
370
|
+
external function pcre2_substring_get_bynumber_32(arg0: ptr[pcre2_match_data_32], arg1: uint, arg2: ptr[ptr[PCRE2_UCHAR32]], arg3: ptr[ptr_uint]) -> int
|
|
371
|
+
external function pcre2_substring_length_byname_32(arg0: ptr[pcre2_match_data_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr[ptr_uint]) -> int
|
|
372
|
+
external function pcre2_substring_length_bynumber_32(arg0: ptr[pcre2_match_data_32], arg1: uint, arg2: ptr[ptr_uint]) -> int
|
|
373
|
+
external function pcre2_substring_nametable_scan_32(arg0: const_ptr[pcre2_code_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr[PCRE2_SPTR32], arg3: ptr[PCRE2_SPTR32]) -> int
|
|
374
|
+
external function pcre2_substring_number_from_name_32(arg0: const_ptr[pcre2_code_32], arg1: const_ptr[PCRE2_UCHAR32]) -> int
|
|
375
|
+
external function pcre2_substring_list_free_32(arg0: ptr[ptr[PCRE2_UCHAR32]]) -> void
|
|
376
|
+
external function pcre2_substring_list_get_32(arg0: ptr[pcre2_match_data_32], arg1: ptr[ptr[ptr[PCRE2_UCHAR32]]], arg2: ptr[ptr[ptr_uint]]) -> int
|
|
377
|
+
external function pcre2_serialize_encode_32(arg0: ptr[const_ptr[pcre2_code_32]], arg1: int, arg2: ptr[ptr[ubyte]], arg3: ptr[ptr_uint], arg4: ptr[pcre2_general_context_32]) -> int
|
|
378
|
+
external function pcre2_serialize_decode_32(arg0: ptr[ptr[pcre2_code_32]], arg1: int, arg2: const_ptr[ubyte], arg3: ptr[pcre2_general_context_32]) -> int
|
|
379
|
+
external function pcre2_serialize_get_number_of_codes_32(arg0: const_ptr[ubyte]) -> int
|
|
380
|
+
external function pcre2_serialize_free_32(arg0: ptr[ubyte]) -> void
|
|
381
|
+
external function pcre2_substitute_32(arg0: const_ptr[pcre2_code_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_32], arg6: ptr[pcre2_match_context_32], arg7: const_ptr[PCRE2_UCHAR32], arg8: ptr_uint, arg9: ptr[PCRE2_UCHAR32], arg10: ptr[ptr_uint]) -> int
|
|
382
|
+
external function pcre2_jit_compile_32(arg0: ptr[pcre2_code_32], arg1: uint) -> int
|
|
383
|
+
external function pcre2_jit_match_32(arg0: const_ptr[pcre2_code_32], arg1: const_ptr[PCRE2_UCHAR32], arg2: ptr_uint, arg3: ptr_uint, arg4: uint, arg5: ptr[pcre2_match_data_32], arg6: ptr[pcre2_match_context_32]) -> int
|
|
384
|
+
external function pcre2_jit_free_unused_memory_32(arg0: ptr[pcre2_general_context_32]) -> void
|
|
385
|
+
external function pcre2_jit_stack_create_32(arg0: ptr_uint, arg1: ptr_uint, arg2: ptr[pcre2_general_context_32]) -> ptr[pcre2_jit_stack_32]
|
|
386
|
+
external function pcre2_jit_stack_assign_32(arg0: ptr[pcre2_match_context_32], arg1: fn(arg0: ptr[void]) -> ptr[pcre2_jit_stack_32], arg2: ptr[void]) -> void
|
|
387
|
+
external function pcre2_jit_stack_free_32(arg0: ptr[pcre2_jit_stack_32]) -> void
|
|
388
|
+
external function pcre2_get_error_message_32(arg0: int, arg1: ptr[PCRE2_UCHAR32], arg2: ptr_uint) -> int
|
|
389
|
+
external function pcre2_maketables_32(arg0: ptr[pcre2_general_context_32]) -> const_ptr[ubyte]
|
|
390
|
+
external function pcre2_maketables_free_32(arg0: ptr[pcre2_general_context_32], arg1: const_ptr[ubyte]) -> void
|
|
391
|
+
|
|
392
|
+
const PCRE2_MAJOR: int = 10
|
|
393
|
+
const PCRE2_MINOR: int = 47
|
|
394
|
+
const PCRE2_ANCHORED: uint = 2147483648
|
|
395
|
+
const PCRE2_NO_UTF_CHECK: uint = 1073741824
|
|
396
|
+
const PCRE2_ENDANCHORED: uint = 536870912
|
|
397
|
+
const PCRE2_ALLOW_EMPTY_CLASS: uint = 1
|
|
398
|
+
const PCRE2_ALT_BSUX: uint = 2
|
|
399
|
+
const PCRE2_AUTO_CALLOUT: uint = 4
|
|
400
|
+
const PCRE2_CASELESS: uint = 8
|
|
401
|
+
const PCRE2_DOLLAR_ENDONLY: uint = 16
|
|
402
|
+
const PCRE2_DOTALL: uint = 32
|
|
403
|
+
const PCRE2_DUPNAMES: uint = 64
|
|
404
|
+
const PCRE2_EXTENDED: uint = 128
|
|
405
|
+
const PCRE2_FIRSTLINE: uint = 256
|
|
406
|
+
const PCRE2_MATCH_UNSET_BACKREF: uint = 512
|
|
407
|
+
const PCRE2_MULTILINE: uint = 1024
|
|
408
|
+
const PCRE2_NEVER_UCP: uint = 2048
|
|
409
|
+
const PCRE2_NEVER_UTF: uint = 4096
|
|
410
|
+
const PCRE2_NO_AUTO_CAPTURE: uint = 8192
|
|
411
|
+
const PCRE2_NO_AUTO_POSSESS: uint = 16384
|
|
412
|
+
const PCRE2_NO_DOTSTAR_ANCHOR: uint = 32768
|
|
413
|
+
const PCRE2_NO_START_OPTIMIZE: uint = 65536
|
|
414
|
+
const PCRE2_UCP: uint = 131072
|
|
415
|
+
const PCRE2_UNGREEDY: uint = 262144
|
|
416
|
+
const PCRE2_UTF: uint = 524288
|
|
417
|
+
const PCRE2_NEVER_BACKSLASH_C: uint = 1048576
|
|
418
|
+
const PCRE2_ALT_CIRCUMFLEX: uint = 2097152
|
|
419
|
+
const PCRE2_ALT_VERBNAMES: uint = 4194304
|
|
420
|
+
const PCRE2_USE_OFFSET_LIMIT: uint = 8388608
|
|
421
|
+
const PCRE2_EXTENDED_MORE: uint = 16777216
|
|
422
|
+
const PCRE2_LITERAL: uint = 33554432
|
|
423
|
+
const PCRE2_MATCH_INVALID_UTF: uint = 67108864
|
|
424
|
+
const PCRE2_ALT_EXTENDED_CLASS: uint = 134217728
|
|
425
|
+
const PCRE2_EXTRA_ALLOW_SURROGATE_ESCAPES: uint = 1
|
|
426
|
+
const PCRE2_EXTRA_BAD_ESCAPE_IS_LITERAL: uint = 2
|
|
427
|
+
const PCRE2_EXTRA_MATCH_WORD: uint = 4
|
|
428
|
+
const PCRE2_EXTRA_MATCH_LINE: uint = 8
|
|
429
|
+
const PCRE2_EXTRA_ESCAPED_CR_IS_LF: uint = 16
|
|
430
|
+
const PCRE2_EXTRA_ALT_BSUX: uint = 32
|
|
431
|
+
const PCRE2_EXTRA_ALLOW_LOOKAROUND_BSK: uint = 64
|
|
432
|
+
const PCRE2_EXTRA_CASELESS_RESTRICT: uint = 128
|
|
433
|
+
const PCRE2_EXTRA_ASCII_BSD: uint = 256
|
|
434
|
+
const PCRE2_EXTRA_ASCII_BSS: uint = 512
|
|
435
|
+
const PCRE2_EXTRA_ASCII_BSW: uint = 1024
|
|
436
|
+
const PCRE2_EXTRA_ASCII_POSIX: uint = 2048
|
|
437
|
+
const PCRE2_EXTRA_ASCII_DIGIT: uint = 4096
|
|
438
|
+
const PCRE2_EXTRA_PYTHON_OCTAL: uint = 8192
|
|
439
|
+
const PCRE2_EXTRA_NO_BS0: uint = 16384
|
|
440
|
+
const PCRE2_EXTRA_NEVER_CALLOUT: uint = 32768
|
|
441
|
+
const PCRE2_EXTRA_TURKISH_CASING: uint = 65536
|
|
442
|
+
const PCRE2_JIT_COMPLETE: uint = 1
|
|
443
|
+
const PCRE2_JIT_PARTIAL_SOFT: uint = 2
|
|
444
|
+
const PCRE2_JIT_PARTIAL_HARD: uint = 4
|
|
445
|
+
const PCRE2_JIT_INVALID_UTF: uint = 256
|
|
446
|
+
const PCRE2_JIT_TEST_ALLOC: uint = 512
|
|
447
|
+
const PCRE2_NOTBOL: uint = 1
|
|
448
|
+
const PCRE2_NOTEOL: uint = 2
|
|
449
|
+
const PCRE2_NOTEMPTY: uint = 4
|
|
450
|
+
const PCRE2_NOTEMPTY_ATSTART: uint = 8
|
|
451
|
+
const PCRE2_PARTIAL_SOFT: uint = 16
|
|
452
|
+
const PCRE2_PARTIAL_HARD: uint = 32
|
|
453
|
+
const PCRE2_DFA_RESTART: uint = 64
|
|
454
|
+
const PCRE2_DFA_SHORTEST: uint = 128
|
|
455
|
+
const PCRE2_SUBSTITUTE_GLOBAL: uint = 256
|
|
456
|
+
const PCRE2_SUBSTITUTE_EXTENDED: uint = 512
|
|
457
|
+
const PCRE2_SUBSTITUTE_UNSET_EMPTY: uint = 1024
|
|
458
|
+
const PCRE2_SUBSTITUTE_UNKNOWN_UNSET: uint = 2048
|
|
459
|
+
const PCRE2_SUBSTITUTE_OVERFLOW_LENGTH: uint = 4096
|
|
460
|
+
const PCRE2_NO_JIT: uint = 8192
|
|
461
|
+
const PCRE2_COPY_MATCHED_SUBJECT: uint = 16384
|
|
462
|
+
const PCRE2_SUBSTITUTE_LITERAL: uint = 32768
|
|
463
|
+
const PCRE2_SUBSTITUTE_MATCHED: uint = 65536
|
|
464
|
+
const PCRE2_SUBSTITUTE_REPLACEMENT_ONLY: uint = 131072
|
|
465
|
+
const PCRE2_DISABLE_RECURSELOOP_CHECK: uint = 262144
|
|
466
|
+
const PCRE2_CONVERT_UTF: uint = 1
|
|
467
|
+
const PCRE2_CONVERT_NO_UTF_CHECK: uint = 2
|
|
468
|
+
const PCRE2_CONVERT_POSIX_BASIC: uint = 4
|
|
469
|
+
const PCRE2_CONVERT_POSIX_EXTENDED: uint = 8
|
|
470
|
+
const PCRE2_CONVERT_GLOB: uint = 16
|
|
471
|
+
const PCRE2_CONVERT_GLOB_NO_WILD_SEPARATOR: uint = 48
|
|
472
|
+
const PCRE2_CONVERT_GLOB_NO_STARSTAR: uint = 80
|
|
473
|
+
const PCRE2_NEWLINE_CR: int = 1
|
|
474
|
+
const PCRE2_NEWLINE_LF: int = 2
|
|
475
|
+
const PCRE2_NEWLINE_CRLF: int = 3
|
|
476
|
+
const PCRE2_NEWLINE_ANY: int = 4
|
|
477
|
+
const PCRE2_NEWLINE_ANYCRLF: int = 5
|
|
478
|
+
const PCRE2_NEWLINE_NUL: int = 6
|
|
479
|
+
const PCRE2_BSR_UNICODE: int = 1
|
|
480
|
+
const PCRE2_BSR_ANYCRLF: int = 2
|
|
481
|
+
const PCRE2_ERROR_END_BACKSLASH: int = 101
|
|
482
|
+
const PCRE2_ERROR_END_BACKSLASH_C: int = 102
|
|
483
|
+
const PCRE2_ERROR_UNKNOWN_ESCAPE: int = 103
|
|
484
|
+
const PCRE2_ERROR_QUANTIFIER_OUT_OF_ORDER: int = 104
|
|
485
|
+
const PCRE2_ERROR_QUANTIFIER_TOO_BIG: int = 105
|
|
486
|
+
const PCRE2_ERROR_MISSING_SQUARE_BRACKET: int = 106
|
|
487
|
+
const PCRE2_ERROR_ESCAPE_INVALID_IN_CLASS: int = 107
|
|
488
|
+
const PCRE2_ERROR_CLASS_RANGE_ORDER: int = 108
|
|
489
|
+
const PCRE2_ERROR_QUANTIFIER_INVALID: int = 109
|
|
490
|
+
const PCRE2_ERROR_INTERNAL_UNEXPECTED_REPEAT: int = 110
|
|
491
|
+
const PCRE2_ERROR_INVALID_AFTER_PARENS_QUERY: int = 111
|
|
492
|
+
const PCRE2_ERROR_POSIX_CLASS_NOT_IN_CLASS: int = 112
|
|
493
|
+
const PCRE2_ERROR_POSIX_NO_SUPPORT_COLLATING: int = 113
|
|
494
|
+
const PCRE2_ERROR_MISSING_CLOSING_PARENTHESIS: int = 114
|
|
495
|
+
const PCRE2_ERROR_BAD_SUBPATTERN_REFERENCE: int = 115
|
|
496
|
+
const PCRE2_ERROR_NULL_PATTERN: int = 116
|
|
497
|
+
const PCRE2_ERROR_BAD_OPTIONS: int = 117
|
|
498
|
+
const PCRE2_ERROR_MISSING_COMMENT_CLOSING: int = 118
|
|
499
|
+
const PCRE2_ERROR_PARENTHESES_NEST_TOO_DEEP: int = 119
|
|
500
|
+
const PCRE2_ERROR_PATTERN_TOO_LARGE: int = 120
|
|
501
|
+
const PCRE2_ERROR_HEAP_FAILED: int = 121
|
|
502
|
+
const PCRE2_ERROR_UNMATCHED_CLOSING_PARENTHESIS: int = 122
|
|
503
|
+
const PCRE2_ERROR_INTERNAL_CODE_OVERFLOW: int = 123
|
|
504
|
+
const PCRE2_ERROR_MISSING_CONDITION_CLOSING: int = 124
|
|
505
|
+
const PCRE2_ERROR_LOOKBEHIND_NOT_FIXED_LENGTH: int = 125
|
|
506
|
+
const PCRE2_ERROR_ZERO_RELATIVE_REFERENCE: int = 126
|
|
507
|
+
const PCRE2_ERROR_TOO_MANY_CONDITION_BRANCHES: int = 127
|
|
508
|
+
const PCRE2_ERROR_CONDITION_ASSERTION_EXPECTED: int = 128
|
|
509
|
+
const PCRE2_ERROR_BAD_RELATIVE_REFERENCE: int = 129
|
|
510
|
+
const PCRE2_ERROR_UNKNOWN_POSIX_CLASS: int = 130
|
|
511
|
+
const PCRE2_ERROR_INTERNAL_STUDY_ERROR: int = 131
|
|
512
|
+
const PCRE2_ERROR_UNICODE_NOT_SUPPORTED: int = 132
|
|
513
|
+
const PCRE2_ERROR_PARENTHESES_STACK_CHECK: int = 133
|
|
514
|
+
const PCRE2_ERROR_CODE_POINT_TOO_BIG: int = 134
|
|
515
|
+
const PCRE2_ERROR_LOOKBEHIND_TOO_COMPLICATED: int = 135
|
|
516
|
+
const PCRE2_ERROR_LOOKBEHIND_INVALID_BACKSLASH_C: int = 136
|
|
517
|
+
const PCRE2_ERROR_UNSUPPORTED_ESCAPE_SEQUENCE: int = 137
|
|
518
|
+
const PCRE2_ERROR_CALLOUT_NUMBER_TOO_BIG: int = 138
|
|
519
|
+
const PCRE2_ERROR_MISSING_CALLOUT_CLOSING: int = 139
|
|
520
|
+
const PCRE2_ERROR_ESCAPE_INVALID_IN_VERB: int = 140
|
|
521
|
+
const PCRE2_ERROR_UNRECOGNIZED_AFTER_QUERY_P: int = 141
|
|
522
|
+
const PCRE2_ERROR_MISSING_NAME_TERMINATOR: int = 142
|
|
523
|
+
const PCRE2_ERROR_DUPLICATE_SUBPATTERN_NAME: int = 143
|
|
524
|
+
const PCRE2_ERROR_INVALID_SUBPATTERN_NAME: int = 144
|
|
525
|
+
const PCRE2_ERROR_UNICODE_PROPERTIES_UNAVAILABLE: int = 145
|
|
526
|
+
const PCRE2_ERROR_MALFORMED_UNICODE_PROPERTY: int = 146
|
|
527
|
+
const PCRE2_ERROR_UNKNOWN_UNICODE_PROPERTY: int = 147
|
|
528
|
+
const PCRE2_ERROR_SUBPATTERN_NAME_TOO_LONG: int = 148
|
|
529
|
+
const PCRE2_ERROR_TOO_MANY_NAMED_SUBPATTERNS: int = 149
|
|
530
|
+
const PCRE2_ERROR_CLASS_INVALID_RANGE: int = 150
|
|
531
|
+
const PCRE2_ERROR_OCTAL_BYTE_TOO_BIG: int = 151
|
|
532
|
+
const PCRE2_ERROR_INTERNAL_OVERRAN_WORKSPACE: int = 152
|
|
533
|
+
const PCRE2_ERROR_INTERNAL_MISSING_SUBPATTERN: int = 153
|
|
534
|
+
const PCRE2_ERROR_DEFINE_TOO_MANY_BRANCHES: int = 154
|
|
535
|
+
const PCRE2_ERROR_BACKSLASH_O_MISSING_BRACE: int = 155
|
|
536
|
+
const PCRE2_ERROR_INTERNAL_UNKNOWN_NEWLINE: int = 156
|
|
537
|
+
const PCRE2_ERROR_BACKSLASH_G_SYNTAX: int = 157
|
|
538
|
+
const PCRE2_ERROR_PARENS_QUERY_R_MISSING_CLOSING: int = 158
|
|
539
|
+
const PCRE2_ERROR_VERB_ARGUMENT_NOT_ALLOWED: int = 159
|
|
540
|
+
const PCRE2_ERROR_VERB_UNKNOWN: int = 160
|
|
541
|
+
const PCRE2_ERROR_SUBPATTERN_NUMBER_TOO_BIG: int = 161
|
|
542
|
+
const PCRE2_ERROR_SUBPATTERN_NAME_EXPECTED: int = 162
|
|
543
|
+
const PCRE2_ERROR_INTERNAL_PARSED_OVERFLOW: int = 163
|
|
544
|
+
const PCRE2_ERROR_INVALID_OCTAL: int = 164
|
|
545
|
+
const PCRE2_ERROR_SUBPATTERN_NAMES_MISMATCH: int = 165
|
|
546
|
+
const PCRE2_ERROR_MARK_MISSING_ARGUMENT: int = 166
|
|
547
|
+
const PCRE2_ERROR_INVALID_HEXADECIMAL: int = 167
|
|
548
|
+
const PCRE2_ERROR_BACKSLASH_C_SYNTAX: int = 168
|
|
549
|
+
const PCRE2_ERROR_BACKSLASH_K_SYNTAX: int = 169
|
|
550
|
+
const PCRE2_ERROR_INTERNAL_BAD_CODE_LOOKBEHINDS: int = 170
|
|
551
|
+
const PCRE2_ERROR_BACKSLASH_N_IN_CLASS: int = 171
|
|
552
|
+
const PCRE2_ERROR_CALLOUT_STRING_TOO_LONG: int = 172
|
|
553
|
+
const PCRE2_ERROR_UNICODE_DISALLOWED_CODE_POINT: int = 173
|
|
554
|
+
const PCRE2_ERROR_UTF_IS_DISABLED: int = 174
|
|
555
|
+
const PCRE2_ERROR_UCP_IS_DISABLED: int = 175
|
|
556
|
+
const PCRE2_ERROR_VERB_NAME_TOO_LONG: int = 176
|
|
557
|
+
const PCRE2_ERROR_BACKSLASH_U_CODE_POINT_TOO_BIG: int = 177
|
|
558
|
+
const PCRE2_ERROR_MISSING_OCTAL_OR_HEX_DIGITS: int = 178
|
|
559
|
+
const PCRE2_ERROR_VERSION_CONDITION_SYNTAX: int = 179
|
|
560
|
+
const PCRE2_ERROR_INTERNAL_BAD_CODE_AUTO_POSSESS: int = 180
|
|
561
|
+
const PCRE2_ERROR_CALLOUT_NO_STRING_DELIMITER: int = 181
|
|
562
|
+
const PCRE2_ERROR_CALLOUT_BAD_STRING_DELIMITER: int = 182
|
|
563
|
+
const PCRE2_ERROR_BACKSLASH_C_CALLER_DISABLED: int = 183
|
|
564
|
+
const PCRE2_ERROR_QUERY_BARJX_NEST_TOO_DEEP: int = 184
|
|
565
|
+
const PCRE2_ERROR_BACKSLASH_C_LIBRARY_DISABLED: int = 185
|
|
566
|
+
const PCRE2_ERROR_PATTERN_TOO_COMPLICATED: int = 186
|
|
567
|
+
const PCRE2_ERROR_LOOKBEHIND_TOO_LONG: int = 187
|
|
568
|
+
const PCRE2_ERROR_PATTERN_STRING_TOO_LONG: int = 188
|
|
569
|
+
const PCRE2_ERROR_INTERNAL_BAD_CODE: int = 189
|
|
570
|
+
const PCRE2_ERROR_INTERNAL_BAD_CODE_IN_SKIP: int = 190
|
|
571
|
+
const PCRE2_ERROR_NO_SURROGATES_IN_UTF16: int = 191
|
|
572
|
+
const PCRE2_ERROR_BAD_LITERAL_OPTIONS: int = 192
|
|
573
|
+
const PCRE2_ERROR_SUPPORTED_ONLY_IN_UNICODE: int = 193
|
|
574
|
+
const PCRE2_ERROR_INVALID_HYPHEN_IN_OPTIONS: int = 194
|
|
575
|
+
const PCRE2_ERROR_ALPHA_ASSERTION_UNKNOWN: int = 195
|
|
576
|
+
const PCRE2_ERROR_SCRIPT_RUN_NOT_AVAILABLE: int = 196
|
|
577
|
+
const PCRE2_ERROR_TOO_MANY_CAPTURES: int = 197
|
|
578
|
+
const PCRE2_ERROR_MISSING_OCTAL_DIGIT: int = 198
|
|
579
|
+
const PCRE2_ERROR_BACKSLASH_K_IN_LOOKAROUND: int = 199
|
|
580
|
+
const PCRE2_ERROR_MAX_VAR_LOOKBEHIND_EXCEEDED: int = 200
|
|
581
|
+
const PCRE2_ERROR_PATTERN_COMPILED_SIZE_TOO_BIG: int = 201
|
|
582
|
+
const PCRE2_ERROR_OVERSIZE_PYTHON_OCTAL: int = 202
|
|
583
|
+
const PCRE2_ERROR_CALLOUT_CALLER_DISABLED: int = 203
|
|
584
|
+
const PCRE2_ERROR_EXTRA_CASING_REQUIRES_UNICODE: int = 204
|
|
585
|
+
const PCRE2_ERROR_TURKISH_CASING_REQUIRES_UTF: int = 205
|
|
586
|
+
const PCRE2_ERROR_EXTRA_CASING_INCOMPATIBLE: int = 206
|
|
587
|
+
const PCRE2_ERROR_ECLASS_NEST_TOO_DEEP: int = 207
|
|
588
|
+
const PCRE2_ERROR_ECLASS_INVALID_OPERATOR: int = 208
|
|
589
|
+
const PCRE2_ERROR_ECLASS_UNEXPECTED_OPERATOR: int = 209
|
|
590
|
+
const PCRE2_ERROR_ECLASS_EXPECTED_OPERAND: int = 210
|
|
591
|
+
const PCRE2_ERROR_ECLASS_MIXED_OPERATORS: int = 211
|
|
592
|
+
const PCRE2_ERROR_ECLASS_HINT_SQUARE_BRACKET: int = 212
|
|
593
|
+
const PCRE2_ERROR_PERL_ECLASS_UNEXPECTED_EXPR: int = 213
|
|
594
|
+
const PCRE2_ERROR_PERL_ECLASS_EMPTY_EXPR: int = 214
|
|
595
|
+
const PCRE2_ERROR_PERL_ECLASS_MISSING_CLOSE: int = 215
|
|
596
|
+
const PCRE2_ERROR_PERL_ECLASS_UNEXPECTED_CHAR: int = 216
|
|
597
|
+
const PCRE2_ERROR_EXPECTED_CAPTURE_GROUP: int = 217
|
|
598
|
+
const PCRE2_ERROR_MISSING_OPENING_PARENTHESIS: int = 218
|
|
599
|
+
const PCRE2_ERROR_MISSING_NUMBER_TERMINATOR: int = 219
|
|
600
|
+
const PCRE2_ERROR_NULL_ERROROFFSET: int = 220
|
|
601
|
+
const PCRE2_ERROR_NOMATCH: int = -1
|
|
602
|
+
const PCRE2_ERROR_PARTIAL: int = -2
|
|
603
|
+
const PCRE2_ERROR_UTF8_ERR1: int = -3
|
|
604
|
+
const PCRE2_ERROR_UTF8_ERR2: int = -4
|
|
605
|
+
const PCRE2_ERROR_UTF8_ERR3: int = -5
|
|
606
|
+
const PCRE2_ERROR_UTF8_ERR4: int = -6
|
|
607
|
+
const PCRE2_ERROR_UTF8_ERR5: int = -7
|
|
608
|
+
const PCRE2_ERROR_UTF8_ERR6: int = -8
|
|
609
|
+
const PCRE2_ERROR_UTF8_ERR7: int = -9
|
|
610
|
+
const PCRE2_ERROR_UTF8_ERR8: int = -10
|
|
611
|
+
const PCRE2_ERROR_UTF8_ERR9: int = -11
|
|
612
|
+
const PCRE2_ERROR_UTF8_ERR10: int = -12
|
|
613
|
+
const PCRE2_ERROR_UTF8_ERR11: int = -13
|
|
614
|
+
const PCRE2_ERROR_UTF8_ERR12: int = -14
|
|
615
|
+
const PCRE2_ERROR_UTF8_ERR13: int = -15
|
|
616
|
+
const PCRE2_ERROR_UTF8_ERR14: int = -16
|
|
617
|
+
const PCRE2_ERROR_UTF8_ERR15: int = -17
|
|
618
|
+
const PCRE2_ERROR_UTF8_ERR16: int = -18
|
|
619
|
+
const PCRE2_ERROR_UTF8_ERR17: int = -19
|
|
620
|
+
const PCRE2_ERROR_UTF8_ERR18: int = -20
|
|
621
|
+
const PCRE2_ERROR_UTF8_ERR19: int = -21
|
|
622
|
+
const PCRE2_ERROR_UTF8_ERR20: int = -22
|
|
623
|
+
const PCRE2_ERROR_UTF8_ERR21: int = -23
|
|
624
|
+
const PCRE2_ERROR_UTF16_ERR1: int = -24
|
|
625
|
+
const PCRE2_ERROR_UTF16_ERR2: int = -25
|
|
626
|
+
const PCRE2_ERROR_UTF16_ERR3: int = -26
|
|
627
|
+
const PCRE2_ERROR_UTF32_ERR1: int = -27
|
|
628
|
+
const PCRE2_ERROR_UTF32_ERR2: int = -28
|
|
629
|
+
const PCRE2_ERROR_BADDATA: int = -29
|
|
630
|
+
const PCRE2_ERROR_MIXEDTABLES: int = -30
|
|
631
|
+
const PCRE2_ERROR_BADMAGIC: int = -31
|
|
632
|
+
const PCRE2_ERROR_BADMODE: int = -32
|
|
633
|
+
const PCRE2_ERROR_BADOFFSET: int = -33
|
|
634
|
+
const PCRE2_ERROR_BADOPTION: int = -34
|
|
635
|
+
const PCRE2_ERROR_BADREPLACEMENT: int = -35
|
|
636
|
+
const PCRE2_ERROR_BADUTFOFFSET: int = -36
|
|
637
|
+
const PCRE2_ERROR_CALLOUT: int = -37
|
|
638
|
+
const PCRE2_ERROR_DFA_BADRESTART: int = -38
|
|
639
|
+
const PCRE2_ERROR_DFA_RECURSE: int = -39
|
|
640
|
+
const PCRE2_ERROR_DFA_UCOND: int = -40
|
|
641
|
+
const PCRE2_ERROR_DFA_UFUNC: int = -41
|
|
642
|
+
const PCRE2_ERROR_DFA_UITEM: int = -42
|
|
643
|
+
const PCRE2_ERROR_DFA_WSSIZE: int = -43
|
|
644
|
+
const PCRE2_ERROR_INTERNAL: int = -44
|
|
645
|
+
const PCRE2_ERROR_JIT_BADOPTION: int = -45
|
|
646
|
+
const PCRE2_ERROR_JIT_STACKLIMIT: int = -46
|
|
647
|
+
const PCRE2_ERROR_MATCHLIMIT: int = -47
|
|
648
|
+
const PCRE2_ERROR_NOMEMORY: int = -48
|
|
649
|
+
const PCRE2_ERROR_NOSUBSTRING: int = -49
|
|
650
|
+
const PCRE2_ERROR_NOUNIQUESUBSTRING: int = -50
|
|
651
|
+
const PCRE2_ERROR_NULL: int = -51
|
|
652
|
+
const PCRE2_ERROR_RECURSELOOP: int = -52
|
|
653
|
+
const PCRE2_ERROR_DEPTHLIMIT: int = -53
|
|
654
|
+
const PCRE2_ERROR_RECURSIONLIMIT: int = -53
|
|
655
|
+
const PCRE2_ERROR_UNAVAILABLE: int = -54
|
|
656
|
+
const PCRE2_ERROR_UNSET: int = -55
|
|
657
|
+
const PCRE2_ERROR_BADOFFSETLIMIT: int = -56
|
|
658
|
+
const PCRE2_ERROR_BADREPESCAPE: int = -57
|
|
659
|
+
const PCRE2_ERROR_REPMISSINGBRACE: int = -58
|
|
660
|
+
const PCRE2_ERROR_BADSUBSTITUTION: int = -59
|
|
661
|
+
const PCRE2_ERROR_BADSUBSPATTERN: int = -60
|
|
662
|
+
const PCRE2_ERROR_TOOMANYREPLACE: int = -61
|
|
663
|
+
const PCRE2_ERROR_BADSERIALIZEDDATA: int = -62
|
|
664
|
+
const PCRE2_ERROR_HEAPLIMIT: int = -63
|
|
665
|
+
const PCRE2_ERROR_CONVERT_SYNTAX: int = -64
|
|
666
|
+
const PCRE2_ERROR_INTERNAL_DUPMATCH: int = -65
|
|
667
|
+
const PCRE2_ERROR_DFA_UINVALID_UTF: int = -66
|
|
668
|
+
const PCRE2_ERROR_INVALIDOFFSET: int = -67
|
|
669
|
+
const PCRE2_ERROR_JIT_UNSUPPORTED: int = -68
|
|
670
|
+
const PCRE2_ERROR_REPLACECASE: int = -69
|
|
671
|
+
const PCRE2_ERROR_TOOLARGEREPLACE: int = -70
|
|
672
|
+
const PCRE2_ERROR_DIFFSUBSPATTERN: int = -71
|
|
673
|
+
const PCRE2_ERROR_DIFFSUBSSUBJECT: int = -72
|
|
674
|
+
const PCRE2_ERROR_DIFFSUBSOFFSET: int = -73
|
|
675
|
+
const PCRE2_ERROR_DIFFSUBSOPTIONS: int = -74
|
|
676
|
+
const PCRE2_ERROR_BAD_BACKSLASH_K: int = -75
|
|
677
|
+
const PCRE2_INFO_ALLOPTIONS: int = 0
|
|
678
|
+
const PCRE2_INFO_ARGOPTIONS: int = 1
|
|
679
|
+
const PCRE2_INFO_BACKREFMAX: int = 2
|
|
680
|
+
const PCRE2_INFO_BSR: int = 3
|
|
681
|
+
const PCRE2_INFO_CAPTURECOUNT: int = 4
|
|
682
|
+
const PCRE2_INFO_FIRSTCODEUNIT: int = 5
|
|
683
|
+
const PCRE2_INFO_FIRSTCODETYPE: int = 6
|
|
684
|
+
const PCRE2_INFO_FIRSTBITMAP: int = 7
|
|
685
|
+
const PCRE2_INFO_HASCRORLF: int = 8
|
|
686
|
+
const PCRE2_INFO_JCHANGED: int = 9
|
|
687
|
+
const PCRE2_INFO_JITSIZE: int = 10
|
|
688
|
+
const PCRE2_INFO_LASTCODEUNIT: int = 11
|
|
689
|
+
const PCRE2_INFO_LASTCODETYPE: int = 12
|
|
690
|
+
const PCRE2_INFO_MATCHEMPTY: int = 13
|
|
691
|
+
const PCRE2_INFO_MATCHLIMIT: int = 14
|
|
692
|
+
const PCRE2_INFO_MAXLOOKBEHIND: int = 15
|
|
693
|
+
const PCRE2_INFO_MINLENGTH: int = 16
|
|
694
|
+
const PCRE2_INFO_NAMECOUNT: int = 17
|
|
695
|
+
const PCRE2_INFO_NAMEENTRYSIZE: int = 18
|
|
696
|
+
const PCRE2_INFO_NAMETABLE: int = 19
|
|
697
|
+
const PCRE2_INFO_NEWLINE: int = 20
|
|
698
|
+
const PCRE2_INFO_DEPTHLIMIT: int = 21
|
|
699
|
+
const PCRE2_INFO_RECURSIONLIMIT: int = 21
|
|
700
|
+
const PCRE2_INFO_SIZE: int = 22
|
|
701
|
+
const PCRE2_INFO_HASBACKSLASHC: int = 23
|
|
702
|
+
const PCRE2_INFO_FRAMESIZE: int = 24
|
|
703
|
+
const PCRE2_INFO_HEAPLIMIT: int = 25
|
|
704
|
+
const PCRE2_INFO_EXTRAOPTIONS: int = 26
|
|
705
|
+
const PCRE2_CONFIG_BSR: int = 0
|
|
706
|
+
const PCRE2_CONFIG_JIT: int = 1
|
|
707
|
+
const PCRE2_CONFIG_JITTARGET: int = 2
|
|
708
|
+
const PCRE2_CONFIG_LINKSIZE: int = 3
|
|
709
|
+
const PCRE2_CONFIG_MATCHLIMIT: int = 4
|
|
710
|
+
const PCRE2_CONFIG_NEWLINE: int = 5
|
|
711
|
+
const PCRE2_CONFIG_PARENSLIMIT: int = 6
|
|
712
|
+
const PCRE2_CONFIG_DEPTHLIMIT: int = 7
|
|
713
|
+
const PCRE2_CONFIG_RECURSIONLIMIT: int = 7
|
|
714
|
+
const PCRE2_CONFIG_STACKRECURSE: int = 8
|
|
715
|
+
const PCRE2_CONFIG_UNICODE: int = 9
|
|
716
|
+
const PCRE2_CONFIG_UNICODE_VERSION: int = 10
|
|
717
|
+
const PCRE2_CONFIG_VERSION: int = 11
|
|
718
|
+
const PCRE2_CONFIG_HEAPLIMIT: int = 12
|
|
719
|
+
const PCRE2_CONFIG_NEVER_BACKSLASH_C: int = 13
|
|
720
|
+
const PCRE2_CONFIG_COMPILED_WIDTHS: int = 14
|
|
721
|
+
const PCRE2_CONFIG_TABLES_LENGTH: int = 15
|
|
722
|
+
const PCRE2_CONFIG_EFFECTIVE_LINKSIZE: int = 16
|
|
723
|
+
const PCRE2_OPTIMIZATION_NONE: int = 0
|
|
724
|
+
const PCRE2_OPTIMIZATION_FULL: int = 1
|
|
725
|
+
const PCRE2_AUTO_POSSESS: int = 64
|
|
726
|
+
const PCRE2_AUTO_POSSESS_OFF: int = 65
|
|
727
|
+
const PCRE2_DOTSTAR_ANCHOR: int = 66
|
|
728
|
+
const PCRE2_DOTSTAR_ANCHOR_OFF: int = 67
|
|
729
|
+
const PCRE2_START_OPTIMIZE: int = 68
|
|
730
|
+
const PCRE2_START_OPTIMIZE_OFF: int = 69
|
|
731
|
+
const PCRE2_SUBSTITUTE_CASE_LOWER: int = 1
|
|
732
|
+
const PCRE2_SUBSTITUTE_CASE_UPPER: int = 2
|
|
733
|
+
const PCRE2_SUBSTITUTE_CASE_TITLE_FIRST: int = 3
|
|
734
|
+
const PCRE2_CALLOUT_STARTMATCH: uint = 1
|
|
735
|
+
const PCRE2_CALLOUT_BACKTRACK: uint = 2
|