Home
last modified time | relevance | path

Searched refs:aob (Results 1 – 10 of 10) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DintersectionAndUnionTypes.js12 var aob: A | B; variable
24 x = aob;
28 aob = x;
33 y = aob;
37 aob = y; // Ok
48 var aob; variable
58 x = aob;
62 aob = x;
66 y = aob;
70 aob = y; // Ok
DintersectionAndUnionTypes.types29 var aob: A | B;
30 >aob : A | B
69 x = aob;
70 >x = aob : A | B
72 >aob : A | B
89 aob = x;
90 >aob = x : (A & B) | (C & D)
91 >aob : A | B
109 y = aob;
110 >y = aob : A | B
[all …]
DintersectionAndUnionTypes.symbols39 var aob: A | B;
40 >aob : Symbol(aob, Decl(intersectionAndUnionTypes.ts, 10, 3))
88 x = aob;
90 >aob : Symbol(aob, Decl(intersectionAndUnionTypes.ts, 10, 3))
104 aob = x;
105 >aob : Symbol(aob, Decl(intersectionAndUnionTypes.ts, 10, 3))
120 y = aob;
122 >aob : Symbol(aob, Decl(intersectionAndUnionTypes.ts, 10, 3))
136 aob = y; // Ok
137 >aob : Symbol(aob, Decl(intersectionAndUnionTypes.ts, 10, 3))
DintersectionAndUnionTypes.errors.txt58 var aob: A | B;
78 x = aob;
98 aob = x;
123 y = aob;
149 aob = y; // Ok
/third_party/typescript/tests/cases/conformance/types/intersection/
DintersectionAndUnionTypes.ts11 var aob: A | B; variable
23 x = aob;
27 aob = x;
32 y = aob;
36 aob = y; // Ok
/third_party/nghttp2/lib/
Dnghttp2_session.c390 static void active_outbound_item_reset(nghttp2_active_outbound_item *aob, in active_outbound_item_reset() argument
393 DEBUGF("send: aob->item = %p\n", aob->item); in active_outbound_item_reset()
394 nghttp2_outbound_item_free(aob->item, mem); in active_outbound_item_reset()
395 nghttp2_mem_free(mem, aob->item); in active_outbound_item_reset()
396 aob->item = NULL; in active_outbound_item_reset()
397 nghttp2_bufs_reset(&aob->framebufs); in active_outbound_item_reset()
398 aob->state = NGHTTP2_OB_POP_ITEM; in active_outbound_item_reset()
555 rv = nghttp2_bufs_init3(&(*session_ptr)->aob.framebufs, in session_new()
562 active_outbound_item_reset(&(*session_ptr)->aob, mem); in session_new()
581 (*session_ptr)->aob.state = NGHTTP2_OB_SEND_CLIENT_MAGIC; in session_new()
[all …]
Dnghttp2_session.h205 nghttp2_active_outbound_item aob; member
/third_party/node/deps/nghttp2/lib/
Dnghttp2_session.c390 static void active_outbound_item_reset(nghttp2_active_outbound_item *aob, in active_outbound_item_reset() argument
393 DEBUGF("send: aob->item = %p\n", aob->item); in active_outbound_item_reset()
394 nghttp2_outbound_item_free(aob->item, mem); in active_outbound_item_reset()
395 nghttp2_mem_free(mem, aob->item); in active_outbound_item_reset()
396 aob->item = NULL; in active_outbound_item_reset()
397 nghttp2_bufs_reset(&aob->framebufs); in active_outbound_item_reset()
398 aob->state = NGHTTP2_OB_POP_ITEM; in active_outbound_item_reset()
555 rv = nghttp2_bufs_init3(&(*session_ptr)->aob.framebufs, in session_new()
562 active_outbound_item_reset(&(*session_ptr)->aob, mem); in session_new()
581 (*session_ptr)->aob.state = NGHTTP2_OB_SEND_CLIENT_MAGIC; in session_new()
[all …]
Dnghttp2_session.h205 nghttp2_active_outbound_item aob; member
/third_party/nghttp2/tests/
Dnghttp2_session_test.c4814 nghttp2_active_outbound_item *aob; in test_nghttp2_submit_data() local
4824 aob = &session->aob; in test_nghttp2_submit_data()
4825 framebufs = &aob->framebufs; in test_nghttp2_submit_data()
4834 frame = &aob->item->frame; in test_nghttp2_submit_data()
4842 CU_ASSERT(NGHTTP2_FLAG_END_STREAM == aob->item->aux_data.data.flags); in test_nghttp2_submit_data()
4854 nghttp2_active_outbound_item *aob; in test_nghttp2_submit_data_read_length_too_large() local
4866 aob = &session->aob; in test_nghttp2_submit_data_read_length_too_large()
4867 framebufs = &aob->framebufs; in test_nghttp2_submit_data_read_length_too_large()
4876 frame = &aob->item->frame; in test_nghttp2_submit_data_read_length_too_large()
4885 CU_ASSERT(NGHTTP2_FLAG_END_STREAM == aob->item->aux_data.data.flags); in test_nghttp2_submit_data_read_length_too_large()
[all …]