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

  /packages/inputmethods/LatinIME/native/jni/
jni_common.h 24 const int numMethods);
jni_common.cpp 68 const int numMethods) {
74 if (env->RegisterNatives(clazz, methods, numMethods) < 0) {
  /development/samples/SimpleJNI/jni/
native.cpp 41 JNINativeMethod* gMethods, int numMethods)
50 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /dalvik/tools/dmtracedump/
TraceDump.c 146 int numMethods;
153 int numMethods;
188 int numMethods;
868 pKeys->numMethods = count;
928 qsort(pKeys->methods, pKeys->numMethods, sizeof(MethodEntry),
1007 printf("Methods (%d):\n", pKeys->numMethods);
1008 for (i = 0; i < pKeys->numMethods; i++) {
1108 hi = pKeys->numMethods - 1;
    [all...]
  /sdk/emulator/qtools/
check_stack.cpp 195 int numMethods = 0;
198 numMethods += 1;
205 if (numNonNativeMethods != numMethods && numNonNativeMethods != numMethods + 1) {
206 printf("\nDiff at time %llu pid %d: non-native %d numMethods %d\n",
207 time, pid, numNonNativeMethods, numMethods);
  /libnativehelper/include/nativehelper/
JNIHelp.h 50 int jniRegisterNativeMethods(C_JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods);
127 inline int jniRegisterNativeMethods(JNIEnv* env, const char* className, const JNINativeMethod* gMethods, int numMethods) {
128 return jniRegisterNativeMethods(&env->functions, className, gMethods, numMethods);
  /frameworks/base/include/android_runtime/
AndroidRuntime.h 51 const char* className, const JNINativeMethod* gMethods, int numMethods);
  /dalvik/vm/native/
dalvik_system_VMRuntime.cpp 382 uint32_t numMethods;
383 DexCacheStats() : numStrings(0), numTypes(0), numFields(0), numMethods(0) {};
407 total->numMethods += pHeader->methodIdsSize;
440 filled->numMethods++;
543 total.numMethods, before.numMethods, after.numMethods);
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.cpp 87 typedef UInt32 (WINAPI *GetNumberOfMethodsFunc)(UInt32 *numMethods);
118 UInt32 numMethods = 1;
122 RINOK(getNumberOfMethodsFunc(&numMethods));
125 for(UInt32 i = 0; i < numMethods; i++)
525 STDMETHODIMP CCodecs::GetNumberOfMethods(UInt32 *numMethods)
527 *numMethods =
LoadCodecs.h 177 STDMETHOD(GetNumberOfMethods)(UInt32 *numMethods);
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/rmi/
RmiSerializer.java 151 int numMethods = buffer.get() & 0xff;
152 MethodDef[] methodDefs = new MethodDef[numMethods];
153 for (int i = 0; i < numMethods; i++){
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 156 int numMethods = _bindInfo.Coders.Size();
173 for (i = 0; i < numMethods; i++)
271 for (i = numMethods - 1; i >= 0; i--)
272 folderItem.Coders[numMethods - 1 - i].Props = _codersInfo[i].Props;
  /external/lzma/CPP/7zip/UI/Console/
Main.cpp 305 UInt32 numMethods;
306 if (codecs->GetNumberOfMethods(&numMethods) == S_OK)
307 for (UInt32 j = 0; j < numMethods; j++)
  /libnativehelper/
JNIHelp.cpp 73 const JNINativeMethod* gMethods, int numMethods)
77 ALOGV("Registering %s's %d native methods...", className, numMethods);
86 if ((*env)->RegisterNatives(e, c.get(), gMethods, numMethods) < 0) {
  /external/lzma/CPP/7zip/
ICoder.h 130 STDMETHOD(GetNumberOfMethods)(UInt32 *numMethods) PURE;
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 312 JNINativeMethod* gMethods, int numMethods) {
319 if (env->RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /external/jdiff/src/jdiff/
HTMLStatistics.java 457 int numMethods = numMethodsRemoved + numMethodsAdded + numMethodsChanged;
458 h_.writeText(" <TD ALIGN=\"right\">" + numMethods + "</TD>");
  /packages/inputmethods/PinyinIME/jni/android/
com_android_inputmethod_pinyin_PinyinDecoderService.cpp 378 JNINativeMethod* gMethods, int numMethods)
386 if ((*env).RegisterNatives(clazz, gMethods, numMethods) < 0) {
  /external/jhead/
main.c 767 JNINativeMethod* gMethods, int numMethods)
777 if ((*env)->RegisterNatives(env, clazz, gMethods, numMethods) < 0) {
  /frameworks/base/core/jni/
AndroidRuntime.cpp 263 const char* className, const JNINativeMethod* gMethods, int numMethods)
265 return jniRegisterNativeMethods(env, className, gMethods, numMethods);
    [all...]
  /hardware/ti/wpan/tools/FM/service/src/jni/
JFmRxNative.cpp     [all...]
  /dalvik/vm/oo/
Class.cpp     [all...]
  /external/guava/guava/lib/
jdiff.jar 

Completed in 977 milliseconds