Lines Matching refs:kccgst
57 struct xkb_component_names kccgst; in test_rules() local
68 if (!xkb_components_from_rules(ctx, &rmlvo, &kccgst)) { in test_rules()
74 kccgst.keycodes, kccgst.types, kccgst.compat, kccgst.symbols); in test_rules()
76 passed = streq(kccgst.keycodes, data->keycodes) && in test_rules()
77 streq(kccgst.types, data->types) && in test_rules()
78 streq(kccgst.compat, data->compat) && in test_rules()
79 streq(kccgst.symbols, data->symbols); in test_rules()
81 free(kccgst.keycodes); in test_rules()
82 free(kccgst.types); in test_rules()
83 free(kccgst.compat); in test_rules()
84 free(kccgst.symbols); in test_rules()