Home | History | Annotate | Download | only in protobuf_c

Lines Matching refs:type_class

1231                               VALUE type_class) {
1240 if (type_class != Qnil) {
1241 if (TYPE(type_class) != T_STRING) {
1245 type_class = rb_str_append(rb_str_new2("."), type_class);
1246 rb_funcall(fielddef, rb_intern("submsg_name="), 1, type_class);
1255 * MessageBuilderContext.optional(name, type, number, type_class = nil)
1259 * symbol (as accepted by FieldDescriptor#type=) and the type_class must be a
1264 VALUE name, type, number, type_class;
1272 type_class = (argc > 3) ? argv[3] : Qnil;
1275 name, type, number, type_class);
1280 * MessageBuilderContext.required(name, type, number, type_class = nil)
1284 * symbol (as accepted by FieldDescriptor#type=) and the type_class must be a
1293 VALUE name, type, number, type_class;
1301 type_class = (argc > 3) ? argv[3] : Qnil;
1304 name, type, number, type_class);
1309 * MessageBuilderContext.repeated(name, type, number, type_class = nil)
1313 * symbol (as accepted by FieldDescriptor#type=) and the type_class must be a
1318 VALUE name, type, number, type_class;
1326 type_class = (argc > 3) ? argv[3] : Qnil;
1329 name, type, number, type_class);
1341 * type_class must be a string, if present (as accepted by
1346 VALUE name, key_type, value_type, number, type_class;
1356 type_class = (argc > 4) ? argv[4] : Qnil;
1404 if (type_class != Qnil) {
1406 submsg_name = rb_str_append(submsg_name, type_class);
1519 * OneofBuilderContext.optional(name, type, number, type_class = nil)
1523 * (as accepted by FieldDescriptor#type=) and the type_class must be a string,
1528 VALUE name, type, number, type_class;
1536 type_class = (argc > 3) ? argv[3] : Qnil;
1539 name, type, number, type_class);