Home
last modified time | relevance | path

Searched refs:stringify (Results 1 – 25 of 1277) sorted by relevance

12345678910>>...52

/third_party/jerryscript/tests/jerry/
Dregexp-backtrack.js15 assert (JSON.stringify (/(?:(a)*){3,}/.exec("aaaab")) === '["aaaa",null]');
16 assert (JSON.stringify (/((a)*){3,}/.exec("aaaab")) === '["aaaa","",null]');
17 assert (JSON.stringify (/((a)+){3,}/.exec("aaaab")) === '["aaaa","a","a"]');
18 assert (JSON.stringify (/((.)*){3,}/.exec("abcd")) === '["abcd","",null]');
19 assert (JSON.stringify (/((.)+){3,}/.exec("abcd")) === '["abcd","d","d"]');
21 assert (JSON.stringify (/((.){1,2}){1,2}/.exec("abc")) === '["abc","c","c"]');
22 assert (JSON.stringify (/(?:(a)*?)asd/.exec("aaasd")) === '["aaasd","a"]');
23 assert (JSON.stringify (/(?:(a)*)asd/.exec("aaasd")) === '["aaasd","a"]');
25 assert (JSON.stringify (/(.)*((a)*|(b)*)/.exec("ab")) === '["ab","b","",null,null]');
26 assert (JSON.stringify (/(.)*((x)|(y))+/.exec("xy")) === '["xy","x","y",null,"y"]');
[all …]
Djson-stringify.js16 assert (JSON.stringify ("") === '""');
19 assert (JSON.stringify (normal_string) == '"asdasd"');
22 assert (JSON.stringify (format_characters) == '"\\ba\\fs\\nd\\ra\\tsd"');
25 assert (JSON.stringify (ctl_string) == '"asd\\u001fasd"');
28 assert (JSON.stringify (escpad_string) == '"\\"asdasd"');
30 assert (JSON.stringify('\u2040') == '"⁀"');
31 assert (JSON.stringify('abc\u2040\u2030cba') == '"abc⁀‰cba"');
34 assert (JSON.stringify (1) === '1');
35 assert (JSON.stringify (true) === 'true');
36 assert (JSON.stringify ("foo") === '"foo"');
[all …]
/third_party/node/deps/npm/node_modules/qs/test/
Dstringify.js11 st.equal(qs.stringify({ a: 'b' }), 'a=b');
12 st.equal(qs.stringify({ a: 1 }), 'a=1');
13 st.equal(qs.stringify({ a: 1, b: 2 }), 'a=1&b=2');
14 st.equal(qs.stringify({ a: 'A_Z' }), 'a=A_Z');
15 st.equal(qs.stringify({ a: '€' }), 'a=%E2%82%AC');
16 st.equal(qs.stringify({ a: '' }), 'a=%EE%80%80');
17 st.equal(qs.stringify({ a: 'א' }), 'a=%D7%90');
18 st.equal(qs.stringify({ a: '��' }), 'a=%F0%90%90%B7');
23 st.equal(qs.stringify({ a: 'b' }, { addQueryPrefix: true }), '?a=b');
28 st.equal(qs.stringify({}, { addQueryPrefix: true }), '');
[all …]
/third_party/jerryscript/tests/jerry/fail/
Dregression-test-issue-2775.js18 print ( JSON . stringify ( "" ) === '""' )
20 print ( JSON . stringify ( normal_string ) == '"asdasd"' )
22 print ( JSON . stringify ( format_characters ) == '"\\ba\\fs\\nd\\ra\\tsd"' )
24 print ( JSON . stringify ( ctl_string ) == '"asd\\u001fasd"' )
26 print ( JSON . stringify ( escpad_string ) == '"\\"asdasd"' )
27 print ( JSON . stringify ( true ) === 'true' )
28 print ( JSON . stringify ( "foo" ) === '"foo"' )
29 print ( JSON . stringify ( null ) === 'null' )
30 print ( JSON . stringify ( RegExp ) === undefined )
31 print ( JSON . stringify ( new Number ( 1 ) ) === '1' )
[all …]
Dregression-test-issue-2774.js18 print ( JSON . stringify ( "" ) === '""' )
20 print ( JSON . stringify ( normal_string ) == '"asdasd"' )
22 print ( JSON . stringify ( format_characters ) == '"\\ba\\fs\\nd\\ra\\tsd"' )
24 print ( JSON . stringify ( ctl_string ) == "h" )
26 print ( JSON . stringify ( escpad_string ) == '"\\"asdasd"' )
27 print ( JSON . stringify ( '\u2040' ) == '"⁀"' )
28 print ( JSON . stringify ( 'abc\u2040\u2030cba' ) == '"abc⁀‰cba"' )
29 print ( JSON . stringify ( 1 ) === '1' )
30 print ( JSON . stringify ( 0 ) === 'true' )
31 print ( JSON . stringify ( "" ) === '"foo"' )
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dlayout_large_align_field.rs74 concat!("Size of: ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
79 concat!("Alignment of ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
86 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
88 stringify!(ofs) in bindgen_test_layout_ip_frag()
96 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
98 stringify!(len) in bindgen_test_layout_ip_frag()
106 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
108 stringify!(mb) in bindgen_test_layout_ip_frag()
140 concat!("Size of: ", stringify!(ip_frag_key)) in bindgen_test_layout_ip_frag_key()
145 concat!("Alignment of ", stringify!(ip_frag_key)) in bindgen_test_layout_ip_frag_key()
[all …]
Dlayout_eth_conf.rs169 concat!("Size of: ", stringify!(rte_eth_rxmode)) in bindgen_test_layout_rte_eth_rxmode()
174 concat!("Alignment of ", stringify!(rte_eth_rxmode)) in bindgen_test_layout_rte_eth_rxmode()
181 stringify!(rte_eth_rxmode), in bindgen_test_layout_rte_eth_rxmode()
183 stringify!(mq_mode) in bindgen_test_layout_rte_eth_rxmode()
193 stringify!(rte_eth_rxmode), in bindgen_test_layout_rte_eth_rxmode()
195 stringify!(max_rx_pkt_len) in bindgen_test_layout_rte_eth_rxmode()
205 stringify!(rte_eth_rxmode), in bindgen_test_layout_rte_eth_rxmode()
207 stringify!(split_hdr_size) in bindgen_test_layout_rte_eth_rxmode()
432 concat!("Size of: ", stringify!(rte_eth_txmode)) in bindgen_test_layout_rte_eth_txmode()
437 concat!("Alignment of ", stringify!(rte_eth_txmode)) in bindgen_test_layout_rte_eth_txmode()
[all …]
Dlayout_eth_conf_1_0.rs212 concat!("Size of: ", stringify!(rte_eth_rxmode)) in bindgen_test_layout_rte_eth_rxmode()
217 concat!("Alignment of ", stringify!(rte_eth_rxmode)) in bindgen_test_layout_rte_eth_rxmode()
224 stringify!(rte_eth_rxmode), in bindgen_test_layout_rte_eth_rxmode()
226 stringify!(mq_mode) in bindgen_test_layout_rte_eth_rxmode()
236 stringify!(rte_eth_rxmode), in bindgen_test_layout_rte_eth_rxmode()
238 stringify!(max_rx_pkt_len) in bindgen_test_layout_rte_eth_rxmode()
248 stringify!(rte_eth_rxmode), in bindgen_test_layout_rte_eth_rxmode()
250 stringify!(split_hdr_size) in bindgen_test_layout_rte_eth_rxmode()
480 concat!("Size of: ", stringify!(rte_eth_txmode)) in bindgen_test_layout_rte_eth_txmode()
485 concat!("Alignment of ", stringify!(rte_eth_txmode)) in bindgen_test_layout_rte_eth_txmode()
[all …]
Dissue-1291.rs36 concat!("Size of: ", stringify!(RTCRay)) in bindgen_test_layout_RTCRay()
41 concat!("Alignment of ", stringify!(RTCRay)) in bindgen_test_layout_RTCRay()
48 stringify!(RTCRay), in bindgen_test_layout_RTCRay()
50 stringify!(org) in bindgen_test_layout_RTCRay()
58 stringify!(RTCRay), in bindgen_test_layout_RTCRay()
60 stringify!(align0) in bindgen_test_layout_RTCRay()
68 stringify!(RTCRay), in bindgen_test_layout_RTCRay()
70 stringify!(dir) in bindgen_test_layout_RTCRay()
78 stringify!(RTCRay), in bindgen_test_layout_RTCRay()
80 stringify!(align1) in bindgen_test_layout_RTCRay()
[all …]
Dclass_with_inner_struct.rs29 concat!("Size of: ", stringify!(A_Segment)) in bindgen_test_layout_A_Segment()
34 concat!("Alignment of ", stringify!(A_Segment)) in bindgen_test_layout_A_Segment()
41 stringify!(A_Segment), in bindgen_test_layout_A_Segment()
43 stringify!(begin) in bindgen_test_layout_A_Segment()
51 stringify!(A_Segment), in bindgen_test_layout_A_Segment()
53 stringify!(end) in bindgen_test_layout_A_Segment()
70 concat!("Size of: ", stringify!(A__bindgen_ty_1)) in bindgen_test_layout_A__bindgen_ty_1()
75 concat!("Alignment of ", stringify!(A__bindgen_ty_1)) in bindgen_test_layout_A__bindgen_ty_1()
82 stringify!(A__bindgen_ty_1), in bindgen_test_layout_A__bindgen_ty_1()
84 stringify!(f) in bindgen_test_layout_A__bindgen_ty_1()
[all …]
Dclass_with_inner_struct_1_0.rs72 concat!("Size of: ", stringify!(A_Segment)) in bindgen_test_layout_A_Segment()
77 concat!("Alignment of ", stringify!(A_Segment)) in bindgen_test_layout_A_Segment()
84 stringify!(A_Segment), in bindgen_test_layout_A_Segment()
86 stringify!(begin) in bindgen_test_layout_A_Segment()
94 stringify!(A_Segment), in bindgen_test_layout_A_Segment()
96 stringify!(end) in bindgen_test_layout_A_Segment()
119 concat!("Size of: ", stringify!(A__bindgen_ty_1)) in bindgen_test_layout_A__bindgen_ty_1()
124 concat!("Alignment of ", stringify!(A__bindgen_ty_1)) in bindgen_test_layout_A__bindgen_ty_1()
131 stringify!(A__bindgen_ty_1), in bindgen_test_layout_A__bindgen_ty_1()
133 stringify!(f) in bindgen_test_layout_A__bindgen_ty_1()
[all …]
Ddisable-nested-struct-naming.rs44 concat!("Size of: ", stringify!(bar4)) in bindgen_test_layout_bar4()
49 concat!("Alignment of ", stringify!(bar4)) in bindgen_test_layout_bar4()
54 concat!("Offset of field: ", stringify!(bar4), "::", stringify!(x4)) in bindgen_test_layout_bar4()
65 concat!("Size of: ", stringify!(bar1__bindgen_ty_1__bindgen_ty_1)) in bindgen_test_layout_bar1__bindgen_ty_1__bindgen_ty_1()
72 stringify!(bar1__bindgen_ty_1__bindgen_ty_1) in bindgen_test_layout_bar1__bindgen_ty_1__bindgen_ty_1()
80 stringify!(bar1__bindgen_ty_1__bindgen_ty_1), in bindgen_test_layout_bar1__bindgen_ty_1__bindgen_ty_1()
82 stringify!(x3) in bindgen_test_layout_bar1__bindgen_ty_1__bindgen_ty_1()
90 stringify!(bar1__bindgen_ty_1__bindgen_ty_1), in bindgen_test_layout_bar1__bindgen_ty_1__bindgen_ty_1()
92 stringify!(b4) in bindgen_test_layout_bar1__bindgen_ty_1__bindgen_ty_1()
104 concat!("Size of: ", stringify!(bar1__bindgen_ty_1)) in bindgen_test_layout_bar1__bindgen_ty_1()
[all …]
Dlayout_mbuf.rs115 concat!("Size of: ", stringify!(rte_atomic16_t)) in bindgen_test_layout_rte_atomic16_t()
120 concat!("Alignment of ", stringify!(rte_atomic16_t)) in bindgen_test_layout_rte_atomic16_t()
127 stringify!(rte_atomic16_t), in bindgen_test_layout_rte_atomic16_t()
129 stringify!(cnt) in bindgen_test_layout_rte_atomic16_t()
202 concat!("Size of: ", stringify!(rte_mbuf__bindgen_ty_1)) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
207 concat!("Alignment of ", stringify!(rte_mbuf__bindgen_ty_1)) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
216 stringify!(rte_mbuf__bindgen_ty_1), in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
218 stringify!(refcnt_atomic) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
226 stringify!(rte_mbuf__bindgen_ty_1), in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
228 stringify!(refcnt) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
[all …]
Dlayout_kni_mbuf.rs43 concat!("Size of: ", stringify!(rte_kni_mbuf)) in bindgen_test_layout_rte_kni_mbuf()
48 concat!("Alignment of ", stringify!(rte_kni_mbuf)) in bindgen_test_layout_rte_kni_mbuf()
57 stringify!(rte_kni_mbuf), in bindgen_test_layout_rte_kni_mbuf()
59 stringify!(buf_addr) in bindgen_test_layout_rte_kni_mbuf()
69 stringify!(rte_kni_mbuf), in bindgen_test_layout_rte_kni_mbuf()
71 stringify!(buf_physaddr) in bindgen_test_layout_rte_kni_mbuf()
79 stringify!(rte_kni_mbuf), in bindgen_test_layout_rte_kni_mbuf()
81 stringify!(pad0) in bindgen_test_layout_rte_kni_mbuf()
91 stringify!(rte_kni_mbuf), in bindgen_test_layout_rte_kni_mbuf()
93 stringify!(data_off) in bindgen_test_layout_rte_kni_mbuf()
[all …]
Dissue-1382-rust-primitive-types.rs42 concat!("Size of: ", stringify!(Foo)) in bindgen_test_layout_Foo()
47 concat!("Alignment of ", stringify!(Foo)) in bindgen_test_layout_Foo()
52 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(i8_)) in bindgen_test_layout_Foo()
57 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(u8_)) in bindgen_test_layout_Foo()
62 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(i16_)) in bindgen_test_layout_Foo()
67 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(u16_)) in bindgen_test_layout_Foo()
72 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(i32_)) in bindgen_test_layout_Foo()
77 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(u32_)) in bindgen_test_layout_Foo()
82 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(i64_)) in bindgen_test_layout_Foo()
87 concat!("Offset of field: ", stringify!(Foo), "::", stringify!(u64_)) in bindgen_test_layout_Foo()
[all …]
Dlayout_array_too_long.rs44 concat!("Size of: ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
49 concat!("Alignment of ", stringify!(ip_frag)) in bindgen_test_layout_ip_frag()
56 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
58 stringify!(ofs) in bindgen_test_layout_ip_frag()
66 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
68 stringify!(len) in bindgen_test_layout_ip_frag()
76 stringify!(ip_frag), in bindgen_test_layout_ip_frag()
78 stringify!(mb) in bindgen_test_layout_ip_frag()
110 concat!("Size of: ", stringify!(ip_frag_key)) in bindgen_test_layout_ip_frag_key()
115 concat!("Alignment of ", stringify!(ip_frag_key)) in bindgen_test_layout_ip_frag_key()
[all …]
Dlayout_mbuf_1_0.rs158 concat!("Size of: ", stringify!(rte_atomic16_t)) in bindgen_test_layout_rte_atomic16_t()
163 concat!("Alignment of ", stringify!(rte_atomic16_t)) in bindgen_test_layout_rte_atomic16_t()
170 stringify!(rte_atomic16_t), in bindgen_test_layout_rte_atomic16_t()
172 stringify!(cnt) in bindgen_test_layout_rte_atomic16_t()
251 concat!("Size of: ", stringify!(rte_mbuf__bindgen_ty_1)) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
256 concat!("Alignment of ", stringify!(rte_mbuf__bindgen_ty_1)) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
265 stringify!(rte_mbuf__bindgen_ty_1), in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
267 stringify!(refcnt_atomic) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
275 stringify!(rte_mbuf__bindgen_ty_1), in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
277 stringify!(refcnt) in bindgen_test_layout_rte_mbuf__bindgen_ty_1()
[all …]
Dchar.rs35 concat!("Size of: ", stringify!(Test)) in bindgen_test_layout_Test()
40 concat!("Alignment of ", stringify!(Test)) in bindgen_test_layout_Test()
45 concat!("Offset of field: ", stringify!(Test), "::", stringify!(ch)) in bindgen_test_layout_Test()
50 concat!("Offset of field: ", stringify!(Test), "::", stringify!(u)) in bindgen_test_layout_Test()
55 concat!("Offset of field: ", stringify!(Test), "::", stringify!(d)) in bindgen_test_layout_Test()
60 concat!("Offset of field: ", stringify!(Test), "::", stringify!(cch)) in bindgen_test_layout_Test()
65 concat!("Offset of field: ", stringify!(Test), "::", stringify!(cu)) in bindgen_test_layout_Test()
70 concat!("Offset of field: ", stringify!(Test), "::", stringify!(cd)) in bindgen_test_layout_Test()
75 concat!("Offset of field: ", stringify!(Test), "::", stringify!(Cch)) in bindgen_test_layout_Test()
80 concat!("Offset of field: ", stringify!(Test), "::", stringify!(Cu)) in bindgen_test_layout_Test()
[all …]
D16-byte-alignment.rs38 stringify!(rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1()
46 stringify!(rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1()
54 stringify!(rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1), in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1()
56 stringify!(dport) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1()
64 stringify!(rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1), in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1()
66 stringify!(sport) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1__bindgen_ty_1()
78 concat!("Size of: ", stringify!(rte_ipv4_tuple__bindgen_ty_1)) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1()
83 concat!("Alignment of ", stringify!(rte_ipv4_tuple__bindgen_ty_1)) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1()
92 stringify!(rte_ipv4_tuple__bindgen_ty_1), in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1()
94 stringify!(sctp_tag) in bindgen_test_layout_rte_ipv4_tuple__bindgen_ty_1()
[all …]
Dlayout_arp.rs39 concat!("Size of: ", stringify!(ether_addr)) in bindgen_test_layout_ether_addr()
44 concat!("Alignment of ", stringify!(ether_addr)) in bindgen_test_layout_ether_addr()
53 stringify!(ether_addr), in bindgen_test_layout_ether_addr()
55 stringify!(addr_bytes) in bindgen_test_layout_ether_addr()
80 concat!("Size of: ", stringify!(arp_ipv4)) in bindgen_test_layout_arp_ipv4()
85 concat!("Alignment of ", stringify!(arp_ipv4)) in bindgen_test_layout_arp_ipv4()
92 stringify!(arp_ipv4), in bindgen_test_layout_arp_ipv4()
94 stringify!(arp_sha) in bindgen_test_layout_arp_ipv4()
102 stringify!(arp_ipv4), in bindgen_test_layout_arp_ipv4()
104 stringify!(arp_sip) in bindgen_test_layout_arp_ipv4()
[all …]
Dlayout_array.rs77 concat!("Size of: ", stringify!(rte_mempool_ops)) in bindgen_test_layout_rte_mempool_ops()
82 concat!("Alignment of ", stringify!(rte_mempool_ops)) in bindgen_test_layout_rte_mempool_ops()
89 stringify!(rte_mempool_ops), in bindgen_test_layout_rte_mempool_ops()
91 stringify!(name) in bindgen_test_layout_rte_mempool_ops()
99 stringify!(rte_mempool_ops), in bindgen_test_layout_rte_mempool_ops()
101 stringify!(alloc) in bindgen_test_layout_rte_mempool_ops()
109 stringify!(rte_mempool_ops), in bindgen_test_layout_rte_mempool_ops()
111 stringify!(free) in bindgen_test_layout_rte_mempool_ops()
119 stringify!(rte_mempool_ops), in bindgen_test_layout_rte_mempool_ops()
121 stringify!(enqueue) in bindgen_test_layout_rte_mempool_ops()
[all …]
Daccessors.rs27 concat!("Size of: ", stringify!(SomeAccessors)) in bindgen_test_layout_SomeAccessors()
32 concat!("Alignment of ", stringify!(SomeAccessors)) in bindgen_test_layout_SomeAccessors()
41 stringify!(SomeAccessors), in bindgen_test_layout_SomeAccessors()
43 stringify!(mNoAccessor) in bindgen_test_layout_SomeAccessors()
53 stringify!(SomeAccessors), in bindgen_test_layout_SomeAccessors()
55 stringify!(mBothAccessors) in bindgen_test_layout_SomeAccessors()
66 stringify!(SomeAccessors), in bindgen_test_layout_SomeAccessors()
68 stringify!(mUnsafeAccessors) in bindgen_test_layout_SomeAccessors()
79 stringify!(SomeAccessors), in bindgen_test_layout_SomeAccessors()
81 stringify!(mImmutableAccessor) in bindgen_test_layout_SomeAccessors()
[all …]
/third_party/typescript/tests/baselines/reference/
Djson.stringify.symbols1 === tests/cases/compiler/json.stringify.ts ===
3 >value : Symbol(value, Decl(json.stringify.ts, 0, 3))
5 JSON.stringify(value, undefined, 2);
6 >JSON.stringify : Symbol(JSON.stringify, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
8 >stringify : Symbol(JSON.stringify, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
9 >value : Symbol(value, Decl(json.stringify.ts, 0, 3))
12 JSON.stringify(value, null, 2);
13 >JSON.stringify : Symbol(JSON.stringify, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
15 >stringify : Symbol(JSON.stringify, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
16 >value : Symbol(value, Decl(json.stringify.ts, 0, 3))
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/libclang-9/
Dclass.rs52 concat!("Size of: ", stringify!(C)) in bindgen_test_layout_C()
57 concat!("Alignment of ", stringify!(C)) in bindgen_test_layout_C()
62 concat!("Offset of field: ", stringify!(C), "::", stringify!(a)) in bindgen_test_layout_C()
71 stringify!(C), in bindgen_test_layout_C()
73 stringify!(big_array) in bindgen_test_layout_C()
100 concat!("Size of: ", stringify!(C_with_zero_length_array)) in bindgen_test_layout_C_with_zero_length_array()
105 concat!("Alignment of ", stringify!(C_with_zero_length_array)) in bindgen_test_layout_C_with_zero_length_array()
112 stringify!(C_with_zero_length_array), in bindgen_test_layout_C_with_zero_length_array()
114 stringify!(a) in bindgen_test_layout_C_with_zero_length_array()
124 stringify!(C_with_zero_length_array), in bindgen_test_layout_C_with_zero_length_array()
[all …]
Dclass_1_0.rs95 concat!("Size of: ", stringify!(C)) in bindgen_test_layout_C()
100 concat!("Alignment of ", stringify!(C)) in bindgen_test_layout_C()
105 concat!("Offset of field: ", stringify!(C), "::", stringify!(a)) in bindgen_test_layout_C()
114 stringify!(C), in bindgen_test_layout_C()
116 stringify!(big_array) in bindgen_test_layout_C()
153 concat!("Size of: ", stringify!(C_with_zero_length_array)) in bindgen_test_layout_C_with_zero_length_array()
158 concat!("Alignment of ", stringify!(C_with_zero_length_array)) in bindgen_test_layout_C_with_zero_length_array()
165 stringify!(C_with_zero_length_array), in bindgen_test_layout_C_with_zero_length_array()
167 stringify!(a) in bindgen_test_layout_C_with_zero_length_array()
177 stringify!(C_with_zero_length_array), in bindgen_test_layout_C_with_zero_length_array()
[all …]

12345678910>>...52