Home
last modified time | relevance | path

Searched refs:NativeMethod (Results 1 – 5 of 5) sorted by relevance

/external/cronet/base/android/jni_generator/
Djni_generator_tests.py27 from jni_generator import NativeMethod
44 ret.append(jni_generator.NativeMethod(**n.__dict__))
310 NativeMethod(
316 NativeMethod(
322 NativeMethod(
334 NativeMethod(
340 NativeMethod(
349 NativeMethod(
355 NativeMethod(
361 NativeMethod(
[all …]
Djni_generator.py122 class NativeMethod(object): class
548 native = NativeMethod(
974 native = NativeMethod(
1080 if isinstance(entry, NativeMethod) and entry.is_proxy:
/external/libchrome/base/android/jni_generator/
Djni_generator_tests.py24 from jni_generator import NativeMethod
164 NativeMethod(return_type='int', static=False,
169 NativeMethod(return_type='void', static=False, name='Destroy',
175 NativeMethod(return_type='long', static=False, name='AddBookmark',
189 NativeMethod(return_type='String', static=True,
195 NativeMethod(return_type='void', static=True,
203 NativeMethod(return_type='byte[]', static=False,
208 NativeMethod(return_type='String[]', static=True,
212 NativeMethod(return_type='void', static=False,
218 NativeMethod(return_type='long', static=False,
[all …]
Djni_generator.py73 class NativeMethod(object): class
462 native = NativeMethod(
/external/rust/crates/jni/src/wrapper/
Djnienv.rs2118 pub fn register_native_methods<'c, T>(&self, class: T, methods: &[NativeMethod]) -> Result<()> in register_native_methods()
2302 pub struct NativeMethod { struct