Home
last modified time | relevance | path

Searched refs:exprList (Results 1 – 5 of 5) sorted by relevance

/external/sdk-platform-java/gapic-generator-java/src/main/java/com/google/api/generator/engine/ast/
DAnnotationNode.java49 public static AnnotationNode withTypeAndDescription(TypeNode type, List<Expr> exprList) { in withTypeAndDescription() argument
50 return AnnotationNode.builder().setType(type).setDescriptions(exprList).build(); in withTypeAndDescription()
132 private Builder setDescriptions(List<Expr> exprList) { in setDescriptions() argument
133 return setDescriptionExprs(exprList); in setDescriptions()
138 List<Expr> exprList = descriptionExprs(); in addDescriptionToList() local
141 exprList == null || exprList instanceof ArrayList, in addDescriptionToList()
143 if (exprList == null) { in addDescriptionToList()
144 exprList = new ArrayList<>(); in addDescriptionToList()
146 exprList.add(expr); in addDescriptionToList()
147 return setDescriptions(exprList); in addDescriptionToList()
/external/libxkbcommon/config/libxkbcommon.so.0.0.0.p/
Dparser.c1484 { FreeStmt((ParseCommon *) ((*yyvaluep).exprList).head); } in yydestruct()
1490 { FreeStmt((ParseCommon *) ((*yyvaluep).exprList).head); } in yydestruct()
1508 { FreeStmt((ParseCommon *) ((*yyvaluep).exprList).head); } in yydestruct()
2303 { (yyval.expr) = ExprCreateActionList((yyvsp[-1].exprList).head); } in yyparse()
2315 … { (yyval.modMask) = ModMapCreate((yyvsp[-4].atom), (yyvsp[-2].exprList).head); } in yyparse()
2441 … { FreeStmt((ParseCommon *) (yyvsp[-1].exprList).head); (yyval.geom) = NULL; } in yyparse()
2675 { (yyval.exprList) = (yyvsp[0].exprList); } in yyparse()
2681 { (yyval.exprList).head = (yyval.exprList).last = NULL; } in yyparse()
2687 …{ (yyval.exprList).head = (yyvsp[-2].exprList).head; (yyval.exprList).last->common.next = &(yyvsp[… in yyparse()
2693 { (yyval.exprList).head = (yyval.exprList).last = (yyvsp[0].expr); } in yyparse()
[all …]
Dparser.h139 struct { ExprDef *head; ExprDef *last; } exprList; member
/external/libxkbcommon/src/xkbcomp/
Dparser.y175 struct { ExprDef *head; ExprDef *last; } exprList;
208 %type <exprList> OptExprList ExprList ActionList
233 <anyList> <exprList> <varList> <vmodList>
/external/javassist/src/main/javassist/compiler/
DParser.java580 boolean exprList) in parseDeclarationOrExpression() argument
605 if (exprList) in parseDeclarationOrExpression()