Searched refs:mesg (Results 101 - 114 of 114) sorted by relevance

12345

/macosx-10.10.1/ruby-106/ruby/
H A Dparse.c14684 parser_warning(struct parser_params *parser, NODE *node, const char *mesg) argument
14686 rb_compile_warning(ruby_sourcefile, nd_line(node), "%s", mesg);
14688 #define parser_warning(node, mesg) parser_warning(parser, (node), (mesg))
14691 parser_warn(struct parser_params *parser, NODE *node, const char *mesg) argument
14693 rb_compile_warn(ruby_sourcefile, nd_line(node), "%s", mesg);
14695 #define parser_warn(node, mesg) parser_warn(parser, (node), (mesg))
16363 ID mesg = rb_intern("mesg"); local
[all...]
H A Dparse.y8188 parser_warning(struct parser_params *parser, NODE *node, const char *mesg)
8190 rb_compile_warning(ruby_sourcefile, nd_line(node), "%s", mesg);
8192 #define parser_warning(node, mesg) parser_warning(parser, (node), (mesg))
8195 parser_warn(struct parser_params *parser, NODE *node, const char *mesg)
8197 rb_compile_warn(ruby_sourcefile, nd_line(node), "%s", mesg);
8199 #define parser_warn(node, mesg) parser_warn(parser, (node), (mesg))
9867 ID mesg = rb_intern("mesg");
[all...]
H A Ddir.c1007 sys_warning_1(VALUE mesg) argument
1009 rb_sys_warning("%s:%s", strerror(errno), (const char *)mesg);
H A Dio.c7051 rb_write_error2(const char *mesg, long len) argument
7054 if (fwrite(mesg, sizeof(char), (size_t)len, stderr) < (size_t)len) {
7060 rb_io_write(rb_stderr, rb_str_new(mesg, len));
7065 rb_write_error(const char *mesg) argument
7067 rb_write_error2(mesg, strlen(mesg));
7071 rb_write_error_str(VALUE mesg) argument
7075 size_t len = (size_t)RSTRING_LEN(mesg);
7076 if (fwrite(RSTRING_PTR(mesg), sizeof(char), len, stderr) < len) {
7077 RB_GC_GUARD(mesg);
[all...]
H A Dvm_core.h852 VALUE rb_name_err_mesg_new(VALUE obj, VALUE mesg, VALUE recv, VALUE method);
/macosx-10.10.1/bc-21/bc/lib/
H A Dnumber.c43 _PROTOTYPE(void rt_warn, (char *mesg ,...));
44 _PROTOTYPE(void rt_error, (char *mesg ,...));
/macosx-10.10.1/ruby-106/ruby/lib/
H A Doptparse.rb1012 def warn(mesg = $!)
1013 super("#{program_name}: #{mesg}")
1016 def abort(mesg = $!)
1017 super("#{program_name}: #{mesg}")
/macosx-10.10.1/ruby-106/ruby/test/ruby/
H A Dtest_settracefunc.rb598 mesg = events1.map{|e|
607 assert_equal answer, event, mesg
H A Dtest_process.rb1391 def assert_fail_too_long_path((cmd, sep), mesg)
1398 assert_raise(*exs, mesg) do
/macosx-10.10.1/vim-55/src/
H A Dfileio.c6871 char *mesg = NULL; local
6992 mesg = _("E211: File \"%s\" no longer available");
7007 mesg = _("W12: Warning: File \"%s\" has changed and the buffer was changed in Vim as well");
7012 mesg = _("W11: Warning: File \"%s\" has changed since editing started");
7017 mesg = _("W16: Warning: Mode of file \"%s\" has changed since editing started");
7033 mesg = _("W13: Warning: File \"%s\" has been created after editing started");
7040 if (mesg != NULL)
7047 tbuf = alloc((unsigned)(STRLEN(path) + STRLEN(mesg)
7049 sprintf((char *)tbuf, mesg, path);
H A Dquickfix.c112 static int qf_add_entry __ARGS((qf_info_T *qi, qfline_T **prevp, char_u *dir, char_u *fname, int bufnum, char_u *mesg, long lnum, int col, int vis_col, char_u *pattern, int nr, int type, int valid));
960 qf_add_entry(qi, prevp, dir, fname, bufnum, mesg, lnum, col, vis_col, pattern,
967 char_u *mesg; /* message */
984 if ((qfp->qf_text = vim_strsave(mesg)) == NULL)
/macosx-10.10.1/ruby-106/ruby/ext/ripper/
H A Dripper.y8188 parser_warning(struct parser_params *parser, NODE *node, const char *mesg)
8190 rb_compile_warning(ruby_sourcefile, nd_line(node), "%s", mesg);
8192 #define parser_warning(node, mesg) parser_warning(parser, (node), (mesg))
8195 parser_warn(struct parser_params *parser, NODE *node, const char *mesg)
8197 rb_compile_warn(ruby_sourcefile, nd_line(node), "%s", mesg);
8199 #define parser_warn(node, mesg) parser_warn(parser, (node), (mesg))
9867 ID mesg = rb_intern("mesg");
[all...]
/macosx-10.10.1/ruby-106/ruby/tool/
H A Drbinstall.rb281 def prepare(mesg, basedir, subdirs=nil)
294 printf("installing %-18s %s%s\n", "#{mesg}:", basedir,
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dbaan.vim1791 syn match baanBshell "\<bsh.mesg\$"

Completed in 512 milliseconds

12345