Home
last modified time | relevance | path

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

/external/libxkbcommon/xkbcommon/src/xkbcomp/
Dparser.y265 $$ = (XkbFile *) AppendStmt((ParseCommon *) $1,
313 { $$ = AppendStmt($1, $2); }
403 { $$ = (VModDef *) AppendStmt((ParseCommon *) $1,
428 { $$ = (VarDef *) AppendStmt((ParseCommon *) $1,
447 { $$ = (VarDef *) AppendStmt((ParseCommon *) $1,
626 { $$ = (ExprDef *) AppendStmt((ParseCommon *) $1,
665 { $$ = (ExprDef *) AppendStmt((ParseCommon *) $1,
Dast-build.h31 AppendStmt(ParseCommon *to, ParseCommon *append);
Dparser.c2043 … (yyval.file) = (XkbFile *) AppendStmt((ParseCommon *) (yyvsp[-1].file), in yyparse()
2174 { (yyval.any) = AppendStmt((yyvsp[-1].any), (yyvsp[0].any)); } in yyparse()
2348 { (yyval.vmod) = (VModDef *) AppendStmt((ParseCommon *) (yyvsp[-2].vmod), in yyparse()
2391 { (yyval.var) = (VarDef *) AppendStmt((ParseCommon *) (yyvsp[-1].var), in yyparse()
2416 { (yyval.var) = (VarDef *) AppendStmt((ParseCommon *) (yyvsp[-2].var), in yyparse()
2855 { (yyval.expr) = (ExprDef *) AppendStmt((ParseCommon *) (yyvsp[-2].expr), in yyparse()
2952 { (yyval.expr) = (ExprDef *) AppendStmt((ParseCommon *) (yyvsp[-2].expr), in yyparse()
Dast-build.c59 AppendStmt(ParseCommon *to, ParseCommon *append) in AppendStmt() function
555 defs = AppendStmt(defs, &file->common); in XkbFileFromComponents()