Lines Matching refs:obj

524 static void (*dll_rb_gc_writebarrier_unprotect)(VALUE obj);
596 rb_gc_writebarrier_unprotect_promoted_stub(VALUE obj) in rb_gc_writebarrier_unprotect_promoted_stub() argument
598 dll_rb_gc_writebarrier_unprotect_promoted(obj); in rb_gc_writebarrier_unprotect_promoted_stub()
602 rb_gc_writebarrier_unprotect_stub(VALUE obj) in rb_gc_writebarrier_unprotect_stub() argument
604 dll_rb_gc_writebarrier_unprotect(obj); in rb_gc_writebarrier_unprotect_stub()
617 rb_check_type_stub(VALUE obj, int t) in rb_check_type_stub() argument
619 dll_rb_check_type(obj, t); in rb_check_type_stub()
1304 VALUE obj = TypedData_Wrap_Struct(cBuffer, &buffer_type, buf); in buffer_new() local
1306 VALUE obj = Data_Wrap_Struct(cBuffer, 0, 0, buf); in buffer_new()
1308 buf->b_ruby_ref = (void *) obj; in buffer_new()
1309 rb_hash_aset(objtbl, rb_obj_id(obj), obj); in buffer_new()
1310 return obj; in buffer_new()
1315 get_buf(VALUE obj) in get_buf() argument
1320 TypedData_Get_Struct(obj, buf_T, &buffer_type, buf); in get_buf()
1322 Data_Get_Struct(obj, buf_T, buf); in get_buf()
1590 VALUE obj = TypedData_Wrap_Struct(cVimWindow, &window_type, win); in window_new() local
1592 VALUE obj = Data_Wrap_Struct(cVimWindow, 0, 0, win); in window_new()
1594 win->w_ruby_ref = (void *) obj; in window_new()
1595 rb_hash_aset(objtbl, rb_obj_id(obj), obj); in window_new()
1596 return obj; in window_new()
1601 get_win(VALUE obj) in get_win() argument
1606 TypedData_Get_Struct(obj, win_T, &window_type, win); in get_win()
1608 Data_Get_Struct(obj, win_T, win); in get_win()
1976 VALUE obj; in do_rubyeval() local
1978 obj = rb_eval_string_protect((const char *)str, &state); in do_rubyeval()
1982 retval = ruby_convert_to_vim_value(obj, rettv); in do_rubyeval()