Home
last modified time | relevance | path

Searched refs:to_java (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/external/cronet/third_party/jni_zero/codegen/
H A Dproxy_impl_java.py11 class_name = return_type.to_array_element_type().to_java(type_resolver)
81 return_type_str = native.return_type.to_java(type_resolver)
106 proxy_return_type = native.proxy_return_type.to_java()
/aosp_15_r20/external/cronet/third_party/jni_zero/
H A Djni_registration_generator.py246 native.proxy_return_type.to_java(),
509 params_in_stub.append('%s %s_param%d' % (t.to_cpp(), t.to_java().replace(
765 type_str = p.java_type.to_java()
795 params_list = [t.to_java() for t in signature.param_types]
804 java_return_type = signature.return_type.to_java()
828 proxy_native.proxy_return_type.to_java(),
874 return_type_str = proxy_native.proxy_return_type.to_java()
H A Djava_types.py125 def to_java(self, type_resolver=None): member in JavaClass
211 def to_java(self, type_resolver=None): member in JavaType
215 ret = self.java_class.to_java(type_resolver)
284 return ', '.join('%s %s' % (p.java_type.to_java(type_resolver), p.name)