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

  /external/webkit/WebCore/platform/android/
GeolocationServiceBridge.h 51 static void newLocationAvailable(JNIEnv *env, jclass, jlong nativeObject, jobject location);
52 static void newErrorAvailable(JNIEnv *env, jclass, jlong nativeObject, jstring message);
GeolocationServiceBridge.cpp 109 void GeolocationServiceBridge::newLocationAvailable(JNIEnv* env, jclass, jlong nativeObject, jobject location)
111 ASSERT(nativeObject);
113 GeolocationServiceBridge* object = reinterpret_cast<GeolocationServiceBridge*>(nativeObject);
117 void GeolocationServiceBridge::newErrorAvailable(JNIEnv* env, jclass, jlong nativeObject, jstring message)
119 GeolocationServiceBridge* object = reinterpret_cast<GeolocationServiceBridge*>(nativeObject);
187 jlong nativeObject = reinterpret_cast<jlong>(this);
190 nativeObject);
  /frameworks/base/core/java/android/webkit/
GeolocationService.java 48 * @param nativeObject The native object to which this object will report position updates and
51 public GeolocationService(long nativeObject) {
52 mNativeObject = nativeObject;
191 private static native void nativeNewLocationAvailable(long nativeObject, Location location);
192 private static native void nativeNewErrorAvailable(long nativeObject, String message);
  /external/webkit/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 55 InjectedScriptHost* nativeObject = static_cast<InjectedScriptHost*>(parameter);
56 nativeObject->deref();

Completed in 158 milliseconds