HomeSort by relevance Sort by last modified time
    Searched defs:sMethods (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/core/jni/
android_database_SQLiteGlobal.cpp 78 static const JNINativeMethod sMethods[] =
89 sMethods, NELEM(sMethods));
android_hardware_location_ActivityRecognitionHardware.cpp 111 static const JNINativeMethod sMethods[] = {
130 sMethods,
131 NELEM(sMethods));
android_security_Scrypt.cpp 62 static const JNINativeMethod sMethods[] = {
69 sMethods, NELEM(sMethods));
android_util_FileObserver.cpp 130 static const JNINativeMethod sMethods[] = {
145 return RegisterMethodsOrDie(env, "android/os/FileObserver$ObserverThread", sMethods,
146 NELEM(sMethods));
android_database_CursorWindow.cpp 511 static const JNINativeMethod sMethods[] =
571 return RegisterMethodsOrDie(env, "android/database/CursorWindow", sMethods, NELEM(sMethods));
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_keyboard_ProximityInfo.cpp 46 static const JNINativeMethod sMethods[] = {
61 return registerNativeMethods(env, kClassPathName, sMethods, NELEMS(sMethods));
com_android_inputmethod_latin_DicTraverseSession.cpp 58 static const JNINativeMethod sMethods[] = {
78 return registerNativeMethods(env, kClassPathName, sMethods, NELEMS(sMethods));
com_android_inputmethod_latin_BinaryDictionaryUtils.cpp 82 static const JNINativeMethod sMethods[] = {
103 return registerNativeMethods(env, kClassPathName, sMethods, NELEMS(sMethods));
  /frameworks/layoutlib/create/src/com/android/tools/layoutlib/create/
OverrideMethod.java 31 private static HashMap<String, MethodListener> sMethods = new HashMap<>();
32 /** Default listener for all method not listed in sMethods. Nothing if null. */
54 sMethods.remove(signature);
56 sMethods.put(signature, listener);
75 MethodListener i = sMethods.get(signature);
88 MethodListener i = sMethods.get(signature);
102 MethodListener i = sMethods.get(signature);
116 MethodListener i = sMethods.get(signature);
130 MethodListener i = sMethods.get(signature);
144 MethodListener i = sMethods.get(signature)
    [all...]