Home
last modified time | relevance | path

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

/external/cronet/third_party/jni_zero/
Djni_generator.py134 c_type = java_type.to_cpp()
142 c_type = java_type.to_cpp()
185 params = [p.java_type.to_cpp() + ' ' + p.name for p in native.params]
202 ret = java_type.to_cpp()
639 c_type = p.java_type.to_cpp()
645 return_type = native.return_type.to_cpp()
746 return_type_str = return_type.to_cpp()
Djni_registration_generator.py263 signature.return_type.to_cpp(),
473 params_in_stub.append('%s %s_param%d' % (t.to_cpp(), t.to_java().replace(
549 'RETURN': native.proxy_return_type.to_cpp(),
Djava_types.py181 def to_cpp(self): member in JavaType