Home
last modified time | relevance | path

Searched refs:BoolVarCreate (Results 1 – 4 of 4) sorted by relevance

/external/libxkbcommon/xkbcommon/src/xkbcomp/
Dparser.y385 { $$ = BoolVarCreate($1, true); }
387 { $$ = BoolVarCreate($2, false); }
456 | Ident { $$ = BoolVarCreate($1, true); }
457 | EXCLAM Ident { $$ = BoolVarCreate($2, false); }
Dast-build.h89 BoolVarCreate(xkb_atom_t ident, bool set);
Dparser.c2318 { (yyval.var) = BoolVarCreate((yyvsp[-1].atom), true); } in yyparse()
2324 { (yyval.var) = BoolVarCreate((yyvsp[-1].atom), false); } in yyparse()
2447 { (yyval.var) = BoolVarCreate((yyvsp[0].atom), true); } in yyparse()
2453 { (yyval.var) = BoolVarCreate((yyvsp[0].atom), false); } in yyparse()
Dast-build.c304 BoolVarCreate(xkb_atom_t ident, bool set) in BoolVarCreate() function