Lines Matching refs:stuff
1871 * First argument is the stuff after the first token, e.g. "bar".
6777 Use scan_str to pull out the stuff between the <> and treat it
6900 (stuff) sub attr parameters sub foo : attr(stuff)
7598 SV *stuff = newSVpvn("",0);
7624 if (*t == '~' && t[1] == '~' && SvCUR(stuff)) {
7632 sv_catpvn(stuff, s, eol-s);
7635 char *end = SvPVX(stuff) + SvCUR(stuff);
7638 SvCUR(stuff)--;
7659 if (SvCUR(stuff)) {
7669 if (UTF && is_utf8_string((U8*)SvPVX(stuff), SvCUR(stuff)))
7670 SvUTF8_on(stuff);
7672 sv_recode_to_utf8(stuff, PL_encoding);
7674 PL_nextval[PL_nexttoke].opval = (OP*)newSVOP(OP_CONST, 0, stuff);
7680 SvREFCNT_dec(stuff);