⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ael.tab.c

📁 asterisk 是一个很有知名度开源软件
💻 C
📖 第 1 页 / 共 5 页
字号:
   Do not make this value too large; the results are undefined if   YYSTACK_ALLOC_MAXIMUM < YYSTACK_BYTES (YYMAXDEPTH)   evaluated with infinite-precision integer arithmetic.  */#ifndef YYMAXDEPTH# define YYMAXDEPTH 10000#endif#if YYERROR_VERBOSE# ifndef yystrlen#  if defined __GLIBC__ && defined _STRING_H#   define yystrlen strlen#  else/* Return the length of YYSTR.  */#if (defined __STDC__ || defined __C99__FUNC__ \     || defined __cplusplus || defined _MSC_VER)static YYSIZE_Tyystrlen (const char *yystr)#elsestatic YYSIZE_Tyystrlen (yystr)    const char *yystr;#endif{  YYSIZE_T yylen;  for (yylen = 0; yystr[yylen]; yylen++)    continue;  return yylen;}#  endif# endif# ifndef yystpcpy#  if defined __GLIBC__ && defined _STRING_H && defined _GNU_SOURCE#   define yystpcpy stpcpy#  else/* Copy YYSRC to YYDEST, returning the address of the terminating '\0' in   YYDEST.  */#if (defined __STDC__ || defined __C99__FUNC__ \     || defined __cplusplus || defined _MSC_VER)static char *yystpcpy (char *yydest, const char *yysrc)#elsestatic char *yystpcpy (yydest, yysrc)    char *yydest;    const char *yysrc;#endif{  char *yyd = yydest;  const char *yys = yysrc;  while ((*yyd++ = *yys++) != '\0')    continue;  return yyd - 1;}#  endif# endif# ifndef yytnamerr/* Copy to YYRES the contents of YYSTR after stripping away unnecessary   quotes and backslashes, so that it's suitable for yyerror.  The   heuristic is that double-quoting is unnecessary unless the string   contains an apostrophe, a comma, or backslash (other than   backslash-backslash).  YYSTR is taken from yytname.  If YYRES is   null, do not copy; instead, return the length of what the result   would have been.  */static YYSIZE_Tyytnamerr (char *yyres, const char *yystr){  if (*yystr == '"')    {      YYSIZE_T yyn = 0;      char const *yyp = yystr;      for (;;)	switch (*++yyp)	  {	  case '\'':	  case ',':	    goto do_not_strip_quotes;	  case '\\':	    if (*++yyp != '\\')	      goto do_not_strip_quotes;	    /* Fall through.  */	  default:	    if (yyres)	      yyres[yyn] = *yyp;	    yyn++;	    break;	  case '"':	    if (yyres)	      yyres[yyn] = '\0';	    return yyn;	  }    do_not_strip_quotes: ;    }  if (! yyres)    return yystrlen (yystr);  return yystpcpy (yyres, yystr) - yyres;}# endif/* Copy into YYRESULT an error message about the unexpected token   YYCHAR while in state YYSTATE.  Return the number of bytes copied,   including the terminating null byte.  If YYRESULT is null, do not   copy anything; just return the number of bytes that would be   copied.  As a special case, return 0 if an ordinary "syntax error"   message will do.  Return YYSIZE_MAXIMUM if overflow occurs during   size calculation.  */static YYSIZE_Tyysyntax_error (char *yyresult, int yystate, int yychar){  int yyn = yypact[yystate];  if (! (YYPACT_NINF < yyn && yyn <= YYLAST))    return 0;  else    {      int yytype = YYTRANSLATE (yychar);      YYSIZE_T yysize0 = yytnamerr (0, yytname[yytype]);      YYSIZE_T yysize = yysize0;      YYSIZE_T yysize1;      int yysize_overflow = 0;      enum { YYERROR_VERBOSE_ARGS_MAXIMUM = 5 };      char const *yyarg[YYERROR_VERBOSE_ARGS_MAXIMUM];      int yyx;# if 0      /* This is so xgettext sees the translatable formats that are	 constructed on the fly.  */      YY_("syntax error, unexpected %s");      YY_("syntax error, unexpected %s, expecting %s");      YY_("syntax error, unexpected %s, expecting %s or %s");      YY_("syntax error, unexpected %s, expecting %s or %s or %s");      YY_("syntax error, unexpected %s, expecting %s or %s or %s or %s");# endif      char *yyfmt;      char const *yyf;      static char const yyunexpected[] = "syntax error, unexpected %s";      static char const yyexpecting[] = ", expecting %s";      static char const yyor[] = " or %s";      char yyformat[sizeof yyunexpected		    + sizeof yyexpecting - 1		    + ((YYERROR_VERBOSE_ARGS_MAXIMUM - 2)		       * (sizeof yyor - 1))];      char const *yyprefix = yyexpecting;      /* Start YYX at -YYN if negative to avoid negative indexes in	 YYCHECK.  */      int yyxbegin = yyn < 0 ? -yyn : 0;      /* Stay within bounds of both yycheck and yytname.  */      int yychecklim = YYLAST - yyn + 1;      int yyxend = yychecklim < YYNTOKENS ? yychecklim : YYNTOKENS;      int yycount = 1;      yyarg[0] = yytname[yytype];      yyfmt = yystpcpy (yyformat, yyunexpected);      for (yyx = yyxbegin; yyx < yyxend; ++yyx)	if (yycheck[yyx + yyn] == yyx && yyx != YYTERROR)	  {	    if (yycount == YYERROR_VERBOSE_ARGS_MAXIMUM)	      {		yycount = 1;		yysize = yysize0;		yyformat[sizeof yyunexpected - 1] = '\0';		break;	      }	    yyarg[yycount++] = yytname[yyx];	    yysize1 = yysize + yytnamerr (0, yytname[yyx]);	    yysize_overflow |= (yysize1 < yysize);	    yysize = yysize1;	    yyfmt = yystpcpy (yyfmt, yyprefix);	    yyprefix = yyor;	  }      yyf = YY_(yyformat);      yysize1 = yysize + yystrlen (yyf);      yysize_overflow |= (yysize1 < yysize);      yysize = yysize1;      if (yysize_overflow)	return YYSIZE_MAXIMUM;      if (yyresult)	{	  /* Avoid sprintf, as that infringes on the user's name space.	     Don't have undefined behavior even if the translation	     produced a string with the wrong number of "%s"s.  */	  char *yyp = yyresult;	  int yyi = 0;	  while ((*yyp = *yyf) != '\0')	    {	      if (*yyp == '%' && yyf[1] == 's' && yyi < yycount)		{		  yyp += yytnamerr (yyp, yyarg[yyi++]);		  yyf += 2;		}	      else		{		  yyp++;		  yyf++;		}	    }	}      return yysize;    }}#endif /* YYERROR_VERBOSE *//*-----------------------------------------------.| Release the memory associated to this symbol.  |`-----------------------------------------------*//*ARGSUSED*/#if (defined __STDC__ || defined __C99__FUNC__ \     || defined __cplusplus || defined _MSC_VER)static voidyydestruct (const char *yymsg, int yytype, YYSTYPE *yyvaluep, YYLTYPE *yylocationp, struct parse_io *parseio)#elsestatic voidyydestruct (yymsg, yytype, yyvaluep, yylocationp, parseio)    const char *yymsg;    int yytype;    YYSTYPE *yyvaluep;    YYLTYPE *yylocationp;    struct parse_io *parseio;#endif{  YYUSE (yyvaluep);  YYUSE (yylocationp);  YYUSE (parseio);  if (!yymsg)    yymsg = "Deleting";  YY_SYMBOL_PRINT (yymsg, yytype, yyvaluep, yylocationp);  switch (yytype)    {      case 43: /* "word" */#line 184 "ael.y"	{ free((yyvaluep->str));};#line 1474 "ael.tab.c"	break;      case 46: /* "objects" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1482 "ael.tab.c"	break;      case 47: /* "object" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1490 "ael.tab.c"	break;      case 48: /* "context_name" */#line 184 "ael.y"	{ free((yyvaluep->str));};#line 1495 "ael.tab.c"	break;      case 49: /* "context" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1503 "ael.tab.c"	break;      case 51: /* "macro" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1511 "ael.tab.c"	break;      case 52: /* "globals" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1519 "ael.tab.c"	break;      case 53: /* "global_statements" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1527 "ael.tab.c"	break;      case 54: /* "assignment" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1535 "ael.tab.c"	break;      case 56: /* "local_assignment" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1543 "ael.tab.c"	break;      case 58: /* "arglist" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1551 "ael.tab.c"	break;      case 59: /* "elements" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1559 "ael.tab.c"	break;      case 60: /* "element" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1567 "ael.tab.c"	break;      case 61: /* "ignorepat" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1575 "ael.tab.c"	break;      case 62: /* "extension" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1583 "ael.tab.c"	break;      case 63: /* "statements" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1591 "ael.tab.c"	break;      case 64: /* "timerange" */#line 184 "ael.y"	{ free((yyvaluep->str));};#line 1596 "ael.tab.c"	break;      case 65: /* "timespec" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1604 "ael.tab.c"	break;      case 66: /* "test_expr" */#line 184 "ael.y"	{ free((yyvaluep->str));};#line 1609 "ael.tab.c"	break;      case 68: /* "if_like_head" */#line 171 "ael.y"	{		destroy_pval((yyvaluep->pval));		prev_word=0;	};#line 1617 "ael.tab.c"	break;      case 69: /* "word_list" */#line 184 "ael.y"	{ free((yyvaluep->str));};#line 1622 "ael.tab.c"	break;      case 71: /* "word3_list" */#line 184 "ael.y"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -