Lines Matching defs:stuff
1204 Perl_croak(aTHX_ "Lexing code attempted to stuff "
3320 * 'has_above_latin1', so that we don't skip stuff that
4748 * First argument is the stuff after the first token, e.g. "bar".
5238 /* spot stuff that looks like an prototype */
11544 Use scan_str to pull out the stuff between the <> and treat it
11669 (stuff) sub attr parameters sub foo : attr(stuff)
12692 SV * const stuff = newSVpvs("");
12724 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
12732 sv_catpvn(stuff, s, eol-s);
12735 char *end = SvPVX(stuff) + SvCUR(stuff);
12738 SvCUR_set(stuff, SvCUR(stuff) - 1);
12760 if (!SvCUR(stuff) || needargs)
12762 if (SvCUR(stuff)) {
12777 if (UTF && is_utf8_string((U8*)SvPVX_const(stuff), SvCUR(stuff)))
12778 SvUTF8_on(stuff);
12780 NEXTVAL_NEXTTOKE.opval = newSVOP(OP_CONST, 0, stuff);
12784 SvREFCNT_dec(stuff);