Home | History | Annotate | Download | only in tests

Lines Matching refs:info

36     TestInfo* info;
42 TestInfo* info;
44 info = g_slice_new(TestInfo);
45 info->data = g_strdup(data);
46 info->flag = flag;
48 return info;
52 test_info_destroy(TestInfo* info)
54 g_free(info->data);
55 g_slice_free(TestInfo, info);
63 fixture->info = (TestInfo*)data;
70 test_info_destroy(fixture->info);
79 TestInfo* info = (TestInfo*)data;
96 g_assert(context & info->flag);
105 if (info->flag == WEBKIT_HIT_TEST_RESULT_CONTEXT_DOCUMENT)
107 else if (info->flag == WEBKIT_HIT_TEST_RESULT_CONTEXT_IMAGE)
109 else if (info->flag == WEBKIT_HIT_TEST_RESULT_CONTEXT_LINK) {
124 TestInfo* info = (TestInfo*)data;
128 info->data,
133 g_signal_connect(fixture->webView, "notify::load-status", G_CALLBACK(load_status_cb), info);