Lines Matching refs:top
59 string_entry *top;
67 top = (string_entry *)nghttp2_pq_top(&pq);
68 CU_ASSERT(strcmp("foo", top->s) == 0);
70 top = (string_entry *)nghttp2_pq_top(&pq);
71 CU_ASSERT(strcmp("bar", top->s) == 0);
73 top = (string_entry *)nghttp2_pq_top(&pq);
74 CU_ASSERT(strcmp("bar", top->s) == 0);
78 top = (string_entry *)nghttp2_pq_top(&pq);
79 CU_ASSERT(strcmp("C", top->s) == 0);
80 string_entry_del(top);
85 top = (string_entry *)nghttp2_pq_top(&pq);
86 CU_ASSERT(strcmp("bar", top->s) == 0);
88 string_entry_del(top);
90 top = (string_entry *)nghttp2_pq_top(&pq);
91 CU_ASSERT(strcmp("baz", top->s) == 0);
93 string_entry_del(top);
95 top = (string_entry *)nghttp2_pq_top(&pq);
96 CU_ASSERT(strcmp("foo", top->s) == 0);
98 string_entry_del(top);
110 top = (string_entry *)nghttp2_pq_top(&pq);
111 CU_ASSERT(NULL != top);
113 string_entry_del(top);