HomeSort by relevance Sort by last modified time
    Searched refs:javaInstance (Results 1 - 9 of 9) sorted by null

  /external/webkit/Source/WebKit/android/jni/
DeviceMotionClientImpl.cpp 104 jobject javaInstance = getJavaInstance();
105 if (!javaInstance)
107 getJNIEnv()->CallVoidMethod(javaInstance, javaServiceClassMethodIDs[ServiceMethodStart]);
112 jobject javaInstance = getJavaInstance();
113 if (!javaInstance)
115 getJNIEnv()->CallVoidMethod(javaInstance, javaServiceClassMethodIDs[ServiceMethodStop]);
126 jobject javaInstance = getJavaInstance();
127 if (!javaInstance)
129 getJNIEnv()->CallVoidMethod(javaInstance, javaServiceClassMethodIDs[ServiceMethodSuspend]);
134 jobject javaInstance = getJavaInstance()
    [all...]
DeviceOrientationClientImpl.cpp 104 jobject javaInstance = getJavaInstance();
105 if (!javaInstance)
107 getJNIEnv()->CallVoidMethod(javaInstance, javaDeviceOrientationServiceClassMethodIDs[DeviceOrientationServiceMethodStart]);
112 jobject javaInstance = getJavaInstance();
113 if (!javaInstance)
115 getJNIEnv()->CallVoidMethod(javaInstance, javaDeviceOrientationServiceClassMethodIDs[DeviceOrientationServiceMethodStop]);
126 jobject javaInstance = getJavaInstance();
127 if (!javaInstance)
129 getJNIEnv()->CallVoidMethod(javaInstance, javaDeviceOrientationServiceClassMethodIDs[DeviceOrientationServiceMethodSuspend]);
134 jobject javaInstance = getJavaInstance()
    [all...]
  /external/webkit/Source/WebCore/bridge/jni/v8/
JavaInstanceJobjectV8.h 49 class JavaInstanceJobject : public JavaInstance {
53 // JavaInstance implementation
62 jobject javaInstance() const { return m_instance->m_instance; }
JavaInstanceJobjectV8.cpp 64 m_class = adoptPtr(new JavaClassJobject(javaInstance()));
79 jvalue result = callJNIMethod(javaInstance(), method->returnType(), method->name().utf8().data(), method->signature(), jvalueArgs.get());
116 return jvalueToJavaValue(getJNIField(javaInstance(), field->type(), field->name().utf8().data(), signature.toString().utf8().data()), field->type());
JNIUtilityPrivate.cpp 491 result.l = static_cast<JavaInstanceJobject*>(value.m_objectValue.get())->javaInstance();
  /external/webkit/Source/WebCore/bridge/jni/jsc/
JavaInstanceJSC.h 42 class JavaInstance : public Instance {
44 static PassRefPtr<JavaInstance> create(jobject instance, PassRefPtr<RootObject> rootObject)
46 return adoptRef(new JavaInstance(instance, rootObject));
49 ~JavaInstance();
59 jobject javaInstance() const { return m_instance->m_instance; }
66 JavaInstance(jobject instance, PassRefPtr<RootObject>);
JavaFieldJSC.cpp 68 jvalue JavaField::dispatchValueFromInstance(ExecState* exec, const JavaInstance* instance, const char* name, const char* sig, JavaType returnType) const
70 jobject jinstance = instance->javaInstance();
97 const JavaInstance* instance = static_cast<const JavaInstance*>(i);
115 jsresult = JavaInstance::create(anObject, instance->rootObject())->createRuntimeObject(exec);
155 void JavaField::dispatchSetValueToInstance(ExecState* exec, const JavaInstance* instance, jvalue javaValue, const char* name, const char* sig) const
157 jobject jinstance = instance->javaInstance();
183 const JavaInstance* instance = static_cast<const JavaInstance*>(i);
JNIUtilityPrivate.cpp 194 JavaInstance* instance = runtimeObject->getInternalJavaInstance();
196 result.l = instance->javaInstance();
  /external/webkit/Source/WebCore/bridge/jni/
jni_jsobject.mm 524 JavaInstance* runtimeInstance = runtimeObject->getInternalJavaInstance();
528 return runtimeInstance->javaInstance();
568 return JavaInstance::create(theObject, _rootObject)->createRuntimeObject(exec);
577 return JavaInstance::create(theObject, _rootObject)->createRuntimeObject(exec);

Completed in 94 milliseconds