Lines Matching refs:VALUE
33 VALUE cError;
34 VALUE cParseError;
35 VALUE cTypeError;
36 VALUE c_only_cookie = Qnil;
38 static VALUE cached_empty_string = Qnil;
39 static VALUE cached_empty_bytes = Qnil;
41 static VALUE create_frozen_string(const char* str, size_t size, bool binary) { in create_frozen_string()
42 VALUE str_rb = rb_str_new(str, size); in create_frozen_string()
50 VALUE get_frozen_string(const char* str, size_t size, bool binary) { in get_frozen_string()
97 VALUE google = rb_define_module("Google"); in Init_protobuf_c()
98 VALUE protobuf = rb_define_module_under(google, "Protobuf"); in Init_protobuf_c()
99 VALUE internal = rb_define_module_under(protobuf, "Internal"); in Init_protobuf_c()