Lines Matching refs:kccgst
59 struct xkb_component_names kccgst; in test_rules() local
70 if (!xkb_components_from_rules(ctx, &rmlvo, &kccgst)) { in test_rules()
76 kccgst.keycodes, kccgst.types, kccgst.compat, kccgst.symbols); in test_rules()
78 passed = streq(kccgst.keycodes, data->keycodes) && in test_rules()
79 streq(kccgst.types, data->types) && in test_rules()
80 streq(kccgst.compat, data->compat) && in test_rules()
81 streq(kccgst.symbols, data->symbols); in test_rules()
83 free(kccgst.keycodes); in test_rules()
84 free(kccgst.types); in test_rules()
85 free(kccgst.compat); in test_rules()
86 free(kccgst.symbols); in test_rules()