OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:fieldTypeToRuby
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
Utils.java
54
public static IRubyObject
fieldTypeToRuby
(ThreadContext context, Descriptors.FieldDescriptor.Type type) {
55
return
fieldTypeToRuby
(context, type.name());
58
public static IRubyObject
fieldTypeToRuby
(ThreadContext context, DescriptorProtos.FieldDescriptorProto.Type type) {
59
return
fieldTypeToRuby
(context, type.name());
62
private static IRubyObject
fieldTypeToRuby
(ThreadContext context, String typeName) {
RubyMap.java
407
Utils.
fieldTypeToRuby
(context, keyType),
408
Utils.
fieldTypeToRuby
(context, valueType),
412
Utils.
fieldTypeToRuby
(context, keyType),
413
Utils.
fieldTypeToRuby
(context, valueType),
RubyFieldDescriptor.java
145
return Utils.
fieldTypeToRuby
(context, this.builder.getType());
Completed in 58 milliseconds