HomeSort by relevance Sort by last modified time
    Searched full:methodname (Results 151 - 175 of 301) sorted by null

1 2 3 4 5 67 8 91011>>

  /dalvik/vm/native/
InternalNative.cpp 122 // className, methodName, methodSignature, pMeth->fnPtr);
  /dalvik/vm/oo/
Resolve.cpp 330 const char* methodName =
337 methodName, methodSig, resClass->descriptor);
338 resMethod = dvmFindInterfaceMethodHier(resClass, methodName, &proto);
340 dvmThrowNoSuchMethodError(methodName);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapeBrowserFuncs.cpp 646 static bool NPN_Invoke(NPP, NPObject *npObject, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
649 return npObject->_class->invoke(npObject, methodName, arguments, argumentCount, result);
716 static bool NPN_HasMethod(NPP npp, NPObject* npObject, NPIdentifier methodName)
722 return npObject->_class->hasMethod(npObject, methodName);
  /sdk/traceview/src/com/android/traceview/
DmTraceReader.java 503 String methodName = null;
508 methodName = tokens[2];
515 methodName = tokens[2];
523 mMethodMap.put(id, new MethodData(id, className, methodName, signature,
  /external/doclava/src/com/google/doclava/
Doclava.java     [all...]
  /dalvik/vm/
InlineNative.cpp 821 const char* methodName, const char* methodSignature)
838 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName,
841 method = dvmFindVirtualMethodByDescriptor(clazz, methodName,
846 clazz->descriptor, methodName, methodSignature);
887 gDvmInlineOpsTable[opIndex].methodName,
Jni.cpp 697 static void dumpCandidateMethods(ClassObject* clazz, const char* methodName, const char* signature) {
699 ALOGE("Requested: %s.%s:%s", clazz->descriptor, methodName, signature);
700 dumpMethods(clazz->virtualMethods, clazz->virtualMethodCount, methodName);
701 dumpMethods(clazz->directMethods, clazz->directMethodCount, methodName);
707 static bool dvmRegisterJNIMethod(ClassObject* clazz, const char* methodName,
720 ALOGV("fast JNI method %s.%s:%s detected", clazz->descriptor, methodName, signature);
723 Method* method = dvmFindDirectMethodByDescriptor(clazz, methodName, signature);
725 method = dvmFindVirtualMethodByDescriptor(clazz, methodName, signature);
728 dumpCandidateMethods(clazz, methodName, signature);
733 ALOGW("Unable to register: not native: %s.%s:%s", clazz->descriptor, methodName, signature)
    [all...]
Native.cpp 557 const char* methodName, int* pLen)
562 *pLen = 4 + descriptorLength + strlen(methodName);
572 sprintf(result, "Java/%s%s", classDescriptor + 1, methodName);
  /dalvik/vm/analysis/
Optimize.cpp 77 ops[i].methodName, ops[i].methodSignature);
84 ops[i].classDescriptor, ops[i].methodName,
    [all...]
  /dalvik/dx/src/com/android/dx/command/dexer/
Main.java 788 String methodName = fqName.substring(lastDot + 1);
797 methodName = methodName.substring(0, methodName.length() - 1);
811 if ((wildcard && methName.startsWith(methodName)) ||
812 (!wildcard && methName.equals(methodName))) {
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.mm     [all...]
  /frameworks/base/services/jni/
com_android_server_input_InputManagerService.cpp 258 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName);
309 bool NativeInputManager::checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
311 ALOGE("An exception was thrown by callback '%s'.", methodName);
    [all...]
com_android_server_location_GpsLocationProvider.cpp 63 static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
65 ALOGE("An exception was thrown by callback '%s'.", methodName);
  /dalvik/hit/src/com/android/hit/
HprofParser.java 209 String methodName = mStrings.get(readId());
215 StackFrame frame = new StackFrame(id, methodName, methodSignature,
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 231 getParameters().put("methodname", request.getRequestLine().getMethod());
265 String method = getParameter("methodname");
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 262 * @param {string} methodName The name of the method to dispatch.
271 function batchAsyncCall(entry, methodName, successCallback,
273 var resultCache = methodName + '_resultCache_';
285 opt_errorCallback = util.ferr('Error calling ' + methodName + ' for: ' +
289 var observerList = methodName + '_observers_';
312 entry[methodName](function(rv) { onComplete(true, rv) },
    [all...]
  /external/chromium/chrome/common/extensions/docs/
devtools.html 221 <a href="#method-anchor">methodName</a>
285 <span>chrome.module.methodName</span>(<span><span>, </span><span></span>
  /external/jdiff/src/jdiff/
APIHandler.java 110 String methodName = attributes.getValue("name");
121 XMLToAPI.addMethod(methodName, returnType, isAbstract, isNative,
  /external/nist-sip/java/gov/nist/core/
LogWriter.java 265 // String methodName = elem.getMethodName();
268 // String newMessage = className + "." + methodName + "(" + fileName + ":"
  /external/proguard/src/proguard/retrace/
ReTrace.java 596 public void processMethodMapping(String className, int firstLineNumber, int lastLineNumber, String methodReturnType, String methodName, String methodArguments, String newMethodName)
619 methodName));
  /frameworks/base/media/jni/
android_mtp_MtpDevice.cpp 93 static void checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
95 ALOGE("An exception was thrown by callback '%s'.", methodName);
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 90 String methodName = signature.substring(pos + 1);
96 methods.add(methodName);
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
DelegateClassAdapterTest.java 369 public <T> T callMethod(Object instance, String methodName, boolean makePublic) throws Exception {
370 Method m = instance.getClass().getDeclaredMethod(methodName, (Class<?>[])null);
  /external/javassist/src/main/javassist/compiler/
JvstTypeChecker.java 234 String methodname, String descriptor,
MemberCodeGen.java 659 protected String getAccessiblePrivate(String methodName, String desc,
667 return maker.getMethodAccessor(methodName, desc, newDesc,
671 throw new CompileError("Method " + methodName
    [all...]

Completed in 1037 milliseconds

1 2 3 4 5 67 8 91011>>