Searched refs:getStaticMethod (Results 1 – 16 of 16) sorted by relevance
/external/fbjni/test/jni/ |
D | doc_tests.cpp | 128 static const auto method = cls->getStaticMethod<void()>("staticVoidMethod"); in callStaticVoidMethod() 154 static const auto doubler = clazz->getStaticMethod<jlong(jint)>("doubler"); in addSomeNumbers() 187 clazz->getStaticMethod<JString(JString)>("doubler"); in fancyCat() 191 clazz->getStaticMethod<std::string(std::string)>("doubler"); in fancyCat() 195 clazz->getStaticMethod<std::string(const char*)>("doubler"); in fancyCat() 349 clazz->getStaticMethod<void()>("doesNotExist"); in catchAndThrow() 434 clazz->getStaticMethod<void(alias_ref<JByteBuffer>)>("receiveBuffer"); in transformBuffer()
|
D | fbjni_tests.cpp | 164 resolved_class->getStaticMethod<jtypeArray<jtypeArray<jstring>>()>( in TestVirtualMethodResolution_arrarrS() 176 resolved_class->getStaticMethod<jtypeArray<jintArray>()>( in TestVirtualMethodResolution_arrarrI() 246 cls->getStaticMethod<void()>("voidFooStatic"); in TestJStaticMethodCallbacks() 250 cls->getStaticMethod<jboolean()>("booleanFooStatic"); in TestJStaticMethodCallbacks() 254 cls->getStaticMethod<jbyte()>("byteFooStatic"); in TestJStaticMethodCallbacks() 258 cls->getStaticMethod<jchar(jchar, jint)>("charFooStatic"); in TestJStaticMethodCallbacks() 262 cls->getStaticMethod<jshort(jshort, jshort)>("shortFooStatic"); in TestJStaticMethodCallbacks() 266 cls->getStaticMethod<jint(jint)>("intFooStatic"); in TestJStaticMethodCallbacks() 270 cls->getStaticMethod<jlong()>("longFooStatic"); in TestJStaticMethodCallbacks() 274 cls->getStaticMethod<jfloat()>("floatFooStatic"); in TestJStaticMethodCallbacks() [all …]
|
D | byte_buffer_tests.cpp | 69 cls->getStaticMethod<void(JByteBuffer, jbyte, jbyte, jbyte, jbyte)>( in testRewindBuffer()
|
/external/pytorch/android/pytorch_android/src/main/cpp/ |
D | pytorch_jni_common.cpp | 246 cls->getStaticMethod<facebook::jni::local_ref<TensorHybrid::javaobject>( in newJTensorFromAtTensor() 295 ->getStaticMethod<facebook::jni::local_ref<JIValue>( in newJIValueFromStringDict() 316 ->getStaticMethod<facebook::jni::local_ref<JIValue>( in newJIValueFromIntDict() 340 ->getStaticMethod<facebook::jni::local_ref<JIValue>()>( in newJIValueFromAtIValue() 346 ->getStaticMethod<facebook::jni::local_ref<JIValue>( in newJIValueFromAtIValue() 355 ->getStaticMethod<facebook::jni::local_ref<JIValue>(jboolean)>( in newJIValueFromAtIValue() 361 ->getStaticMethod<facebook::jni::local_ref<JIValue>(jlong)>("from"); in newJIValueFromAtIValue() 366 ->getStaticMethod<facebook::jni::local_ref<JIValue>(jdouble)>( in newJIValueFromAtIValue() 372 ->getStaticMethod<facebook::jni::local_ref<JIValue>( in newJIValueFromAtIValue() 382 ->getStaticMethod<facebook::jni::local_ref<JIValue>( in newJIValueFromAtIValue() [all …]
|
/external/executorch/extension/android/jni/ |
D | jni_layer.cpp | 83 cls->getStaticMethod<facebook::jni::local_ref<TensorHybrid::javaobject>( in newJTensorFromTensor() 111 ->getStaticMethod<facebook::jni::local_ref<JEValue>( in newJEValueFromEValue() 119 ->getStaticMethod<facebook::jni::local_ref<JEValue>(jlong)>( in newJEValueFromEValue() 125 ->getStaticMethod<facebook::jni::local_ref<JEValue>(jdouble)>( in newJEValueFromEValue() 131 ->getStaticMethod<facebook::jni::local_ref<JEValue>(jboolean)>( in newJEValueFromEValue() 137 ->getStaticMethod<facebook::jni::local_ref<JEValue>( in newJEValueFromEValue()
|
/external/fbjni/cxx/fbjni/ |
D | ByteBuffer.cpp | 67 JByteOrder::javaClassStatic()->getStaticMethod<local_ref<JByteOrder>()>( in nativeOrder() 102 static auto meth = cls->getStaticMethod<JByteBuffer(int)>("allocateDirect"); in allocateDirect()
|
D | JThread.h | 54 javaClassStatic()->getStaticMethod<local_ref<JThread>()>( in getCurrent()
|
/external/fbjni/docs/ |
D | quickref.md | 94 static const auto method = cls->getStaticMethod<void()>("staticVoidMethod"); 125 static const auto doubler = clazz->getStaticMethod<jlong(jint)>("doubler"); 162 static const auto doubler_java = clazz->getStaticMethod<JString(JString)>("doubler"); 165 static const auto doubler_std = clazz->getStaticMethod<std::string(std::string)>("doubler"); 168 static const auto doubler_char = clazz->getStaticMethod<std::string(const char*)>("doubler"); 373 clazz->getStaticMethod<void()>("doesNotExist"); 489 …static const auto receiver = clazz->getStaticMethod<void(alias_ref<JByteBuffer>)>("receiveBuffer");
|
/external/fbjni/cxx/fbjni/detail/ |
D | Boxed.h | 32 cls->template getStaticMethod<javaobject(jprim)>("valueOf"); in valueOf()
|
D | CoreClasses-inl.h | 212 inline JStaticMethod<F> JClass::getStaticMethod(const char* name) const { in getStaticMethod() function 213 return getStaticMethod<F>( in getStaticMethod() 218 inline JStaticMethod<F> JClass::getStaticMethod( in getStaticMethod() function
|
D | CoreClasses.h | 335 JStaticMethod<F> getStaticMethod(const char* name) const; 339 JStaticMethod<F> getStaticMethod(const char* name, const char* descriptor)
|
D | Environment.cpp | 350 javaClassStatic()->getStaticMethod<void(jlong)>("runStdFunction"); in runStdFunction()
|
D | Exceptions.cpp | 433 exceptionHelperClass->getStaticMethod<std::string(jthrowable)>( in populateWhat()
|
D | Hybrid.h | 270 javaClassStatic()->template getStaticMethod<jhybridobject(jhybriddata)>(
|
/external/fbjni/ |
D | README.md | 19 static const auto getSuffix = clazz->getStaticMethod<JString()>("getSuffix");
|
/external/oj-libjdwp/src/share/back/ |
D | util.c | 167 getStaticMethod(JNIEnv *env, jclass clazz, const char * name, const char *signature) in getStaticMethod() function 246 getStaticMethod(env, gdata->systemClass, in util_initialize() 299 getStaticMethod(env, localVMSupportClass, in util_initialize()
|