-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path_test_compat.pyi
124 lines (122 loc) · 6.44 KB
/
_test_compat.pyi
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Copyright (c) Meta Platforms, Inc. and affiliates.
# pyre-unsafe
class TestCompat:
def test_atomic_add_int(self) -> None: ...
def test_atomic_add_int16(self) -> None: ...
def test_atomic_add_int32(self) -> None: ...
def test_atomic_add_int64(self) -> None: ...
def test_atomic_add_int8(self) -> None: ...
def test_atomic_add_intptr(self) -> None: ...
def test_atomic_add_ssize(self) -> None: ...
def test_atomic_add_uint(self) -> None: ...
def test_atomic_add_uint16(self) -> None: ...
def test_atomic_add_uint32(self) -> None: ...
def test_atomic_add_uint64(self) -> None: ...
def test_atomic_add_uint8(self) -> None: ...
def test_atomic_add_uintptr(self) -> None: ...
def test_atomic_and_uint16(self) -> None: ...
def test_atomic_and_uint32(self) -> None: ...
def test_atomic_and_uint64(self) -> None: ...
def test_atomic_and_uint8(self) -> None: ...
def test_atomic_and_uintptr(self) -> None: ...
def test_atomic_compare_exchange_int(self) -> None: ...
def test_atomic_compare_exchange_int16(self) -> None: ...
def test_atomic_compare_exchange_int32(self) -> None: ...
def test_atomic_compare_exchange_int64(self) -> None: ...
def test_atomic_compare_exchange_int8(self) -> None: ...
def test_atomic_compare_exchange_intptr(self) -> None: ...
def test_atomic_compare_exchange_ptr(self) -> None: ...
def test_atomic_compare_exchange_ssize(self) -> None: ...
def test_atomic_compare_exchange_uint(self) -> None: ...
def test_atomic_compare_exchange_uint16(self) -> None: ...
def test_atomic_compare_exchange_uint32(self) -> None: ...
def test_atomic_compare_exchange_uint64(self) -> None: ...
def test_atomic_compare_exchange_uint8(self) -> None: ...
def test_atomic_compare_exchange_uintptr(self) -> None: ...
def test_atomic_exchange_int16(self) -> None: ...
def test_atomic_exchange_int32(self) -> None: ...
def test_atomic_exchange_int64(self) -> None: ...
def test_atomic_exchange_int8(self) -> None: ...
def test_atomic_exchange_intptr(self) -> None: ...
def test_atomic_exchange_ptr(self) -> None: ...
def test_atomic_exchange_ssize(self) -> None: ...
def test_atomic_exchange_uint(self) -> None: ...
def test_atomic_exchange_uint16(self) -> None: ...
def test_atomic_exchange_uint32(self) -> None: ...
def test_atomic_exchange_uint64(self) -> None: ...
def test_atomic_exchange_uint8(self) -> None: ...
def test_atomic_exchange_uintptr(self) -> None: ...
def test_atomic_fence_acquire(self) -> None: ...
def test_atomic_fence_release(self) -> None: ...
def test_atomic_fence_seq_cst(self) -> None: ...
def test_atomic_load_int(self) -> None: ...
def test_atomic_load_int16(self) -> None: ...
def test_atomic_load_int16_relaxed(self) -> None: ...
def test_atomic_load_int32(self) -> None: ...
def test_atomic_load_int32_relaxed(self) -> None: ...
def test_atomic_load_int64(self) -> None: ...
def test_atomic_load_int8(self) -> None: ...
def test_atomic_load_int8_relaxed(self) -> None: ...
def test_atomic_load_int_acquire(self) -> None: ...
def test_atomic_load_int_relaxed(self) -> None: ...
def test_atomic_load_intptr(self) -> None: ...
def test_atomic_load_intptr_relaxed(self) -> None: ...
def test_atomic_load_ptr(self) -> None: ...
def test_atomic_load_ptr_acquire(self) -> None: ...
def test_atomic_load_ptr_relaxed(self) -> None: ...
def test_atomic_load_ssize(self) -> None: ...
def test_atomic_load_ssize_acquire(self) -> None: ...
def test_atomic_load_ssize_relaxed(self) -> None: ...
def test_atomic_load_uint(self) -> None: ...
def test_atomic_load_uint16(self) -> None: ...
def test_atomic_load_uint16_relaxed(self) -> None: ...
def test_atomic_load_uint32(self) -> None: ...
def test_atomic_load_uint32_acquire(self) -> None: ...
def test_atomic_load_uint32_relaxed(self) -> None: ...
def test_atomic_load_uint64(self) -> None: ...
def test_atomic_load_uint64_acquire(self) -> None: ...
def test_atomic_load_uint8(self) -> None: ...
def test_atomic_load_uint_relaxed(self) -> None: ...
def test_atomic_load_uintptr(self) -> None: ...
def test_atomic_load_uintptr_acquire(self) -> None: ...
def test_atomic_load_uintptr_relaxed(self) -> None: ...
def test_atomic_load_ullong_relaxed(self) -> None: ...
def test_atomic_or_uint16(self) -> None: ...
def test_atomic_or_uint32(self) -> None: ...
def test_atomic_or_uint64(self) -> None: ...
def test_atomic_or_uint8(self) -> None: ...
def test_atomic_or_uintptr(self) -> None: ...
def test_atomic_store_int(self) -> None: ...
def test_atomic_store_int16(self) -> None: ...
def test_atomic_store_int16_relaxed(self) -> None: ...
def test_atomic_store_int32(self) -> None: ...
def test_atomic_store_int32_relaxed(self) -> None: ...
def test_atomic_store_int64(self) -> None: ...
def test_atomic_store_int64_relaxed(self) -> None: ...
def test_atomic_store_int8(self) -> None: ...
def test_atomic_store_int8_relaxed(self) -> None: ...
def test_atomic_store_int_release(self) -> None: ...
def test_atomic_store_intptr(self) -> None: ...
def test_atomic_store_intptr_relaxed(self) -> None: ...
def test_atomic_store_ptr(self) -> None: ...
def test_atomic_store_ptr_relaxed(self) -> None: ...
def test_atomic_store_ptr_release(self) -> None: ...
def test_atomic_store_ssize(self) -> None: ...
def test_atomic_store_ssize_relaxed(self) -> None: ...
def test_atomic_store_ssize_release(self) -> None: ...
def test_atomic_store_uint(self) -> None: ...
def test_atomic_store_uint16(self) -> None: ...
def test_atomic_store_uint16_relaxed(self) -> None: ...
def test_atomic_store_uint32(self) -> None: ...
def test_atomic_store_uint32_relaxed(self) -> None: ...
def test_atomic_store_uint32_release(self) -> None: ...
def test_atomic_store_uint64(self) -> None: ...
def test_atomic_store_uint64_relaxed(self) -> None: ...
def test_atomic_store_uint64_release(self) -> None: ...
def test_atomic_store_uint8(self) -> None: ...
def test_atomic_store_uint8_relaxed(self) -> None: ...
def test_atomic_store_uint_relaxed(self) -> None: ...
def test_atomic_store_uintptr(self) -> None: ...
def test_atomic_store_uintptr_relaxed(self) -> None: ...
def test_atomic_store_uintptr_release(self) -> None: ...
def test_atomic_store_ullong_relaxed(self) -> None: ...