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

  /external/webkit/Source/WebCore/platform/android/
GeolocationServiceBridge.h 52 static void newLocationAvailable(JNIEnv *env, jclass, jlong nativeObject, jobject location);
53 static void newErrorAvailable(JNIEnv *env, jclass, jlong nativeObject, jstring message);
GeolocationServiceBridge.cpp 113 void GeolocationServiceBridge::newLocationAvailable(JNIEnv* env, jclass, jlong nativeObject, jobject location)
115 ASSERT(nativeObject);
117 GeolocationServiceBridge* object = reinterpret_cast<GeolocationServiceBridge*>(nativeObject);
121 void GeolocationServiceBridge::newErrorAvailable(JNIEnv* env, jclass, jlong nativeObject, jstring message)
123 GeolocationServiceBridge* object = reinterpret_cast<GeolocationServiceBridge*>(nativeObject);
194 jlong nativeObject = reinterpret_cast<jlong>(this);
198 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(Context context, long nativeObject) {
52 mNativeObject = nativeObject;
199 private static native void nativeNewLocationAvailable(long nativeObject, Location location);
200 private static native void nativeNewErrorAvailable(long nativeObject, String message);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptManager.cpp 50 InjectedScriptHost* nativeObject = static_cast<InjectedScriptHost*>(parameter);
51 nativeObject->deref();

Completed in 186 milliseconds