• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/ruby-104/ruby/ext/ripper/

Lines Matching +defs:value +defs:get

353     VALUE value;
671 VALUE k = t->u1.value, kr = t->u2.value, b = t->u3.value;
727 /* Older versions of Yacc set YYMAXDEPTH to a very low value by default (150,
729 date/format.rb, therefore bump the value up to at least Bison's default. */
4648 Do not make this value too large; the results are undefined if
4974 /* The semantic value of the lookahead symbol. */
4996 /* The semantic value stack. */
5007 /* The variables used to return semantic value and location from the
5037 Waste one element of value and location stack
5049 /* In all cases, when you get here, the value and location stacks
5137 /* Not known => get a lookahead token if don't already have one. */
5205 /* If YYLEN is nonzero, implement the default value of the action:
12271 /* return value is for ?\u3042 */
13206 rb_compile_warning(ruby_sourcefile, ruby_sourceline, "invalid value for %s: %s", name, val);
15089 compile_error(PARSER_ARG "identifier %s is not valid to get", rb_id2name(id));
15107 compile_error(PARSER_ARG "identifier %s is not valid to get", rb_id2name(id));
15146 yyerror("Can't change the value of self");
15433 parser_warning(node, "void value expression");
15441 if (!cond) yyerror("void value expression");
16271 dvar_defined_gen(struct parser_params *parser, ID id, int get)
16290 if (get) used = 0;
17080 symbols_i(VALUE sym, ID value, VALUE ary)
17082 rb_ary_push(ary, ID2SYM(value));
17161 * String if non-zero value is returned, or is a String
17363 rb_gc_mark(p->value);
17613 return rb_funcall(parser->value, mid, 0);
17620 return rb_funcall(parser->value, mid, 1, a);
17628 return rb_funcall(parser->value, mid, 2, a, b);
17637 return rb_funcall(parser->value, mid, 3, a, b, c);
17647 return rb_funcall(parser->value, mid, 4, a, b, c, d);
17658 return rb_funcall(parser->value, mid, 5, a, b, c, d, e);
17671 return rb_funcall(parser->value, mid, 7, a, b, c, d, e, f, g);
17803 rb_funcall(parser->value, rb_intern("compile_error"), 1, str);
17809 rb_funcall(parser->value, rb_intern("warn"), 1, STR_NEW2(fmt));
17815 rb_funcall(parser->value, rb_intern("warn"), 2,
17822 rb_funcall(parser->value, rb_intern("warn"), 2,
17829 rb_funcall(parser->value, rb_intern("warning"), 1, STR_NEW2(fmt));
17835 rb_funcall(parser->value, rb_intern("warning"), 2,
17854 p->value = self;
17933 * Start parsing and returns the value of the root action.