Lines Matching refs:yystr
372 /* Return YYSTR after stripping away unnecessary quotes and
376 YYSTR is taken from yytname. */
377 private final String yytnamerr_ (String yystr)
379 if (yystr.charAt (0) == '"')
382 strip_quotes: for (int i = 1; i < yystr.length (); i++)
383 switch (yystr.charAt (i))
390 if (yystr.charAt(++i) != '\\')
394 yyr.append (yystr.charAt (i));
401 else if (yystr.equals ("$end"))
404 return yystr;