Home
last modified time | relevance | path

Searched refs:methodName (Results 1 – 25 of 36) sorted by relevance

12

/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java363 …ing fullMethodDescriptorToUserName (final String classJavaName, String methodName, final String me… in fullMethodDescriptorToUserName() argument
365 if ("<init>".equals (methodName)) in fullMethodDescriptorToUserName()
366 methodName = simpleClassName (classJavaName); in fullMethodDescriptorToUserName()
367 if ("<clinit>".equals (methodName)) in fullMethodDescriptorToUserName()
368 methodName = "<static class initializer>"; in fullMethodDescriptorToUserName()
370 return methodName + ' ' + methodDescriptorToUserName (methoddescriptor); in fullMethodDescriptorToUserName()
374 …fullMethodDescriptorToFullUserName (final String classJavaName, String methodName, final String me… in fullMethodDescriptorToFullUserName() argument
376 if ("<init>".equals (methodName)) in fullMethodDescriptorToFullUserName()
377 methodName = simpleClassName (classJavaName); in fullMethodDescriptorToFullUserName()
378 if ("<clinit>".equals (methodName)) in fullMethodDescriptorToFullUserName()
[all …]
/external/proguard/src/proguard/obfuscate/
DMappingKeeper.java142 String methodName, in processMethodMapping() argument
152 Method method = clazz.findMethod(methodName, descriptor); in processMethodMapping()
166 …": method '" + methodReturnType + " " + methodName + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN… in processMethodMapping()
DMultiMappingProcessor.java81 String methodName, in processMethodMapping() argument
91 methodName, in processMethodMapping()
DMappingProcessor.java76 String methodName, in processMethodMapping() argument
/external/webkit/WebCore/bridge/jni/
Djni_utility.h249 T callJNIMethod(jobject obj, const char* methodName, const char* methodSignature, ...)
254 T result= callJNIMethodV<T>(obj, methodName, methodSignature, args);
262 T callJNIStaticMethod(jclass cls, const char* methodName, const char* methodSignature, ...)
273 jmethodID mid = env->GetStaticMethodID(cls, methodName, methodSignature);
277 … fprintf(stderr, "%s: Could not find method: %s for %p\n", __PRETTY_FUNCTION__, methodName, cls);
Djni_jsobject.h82 jobject call(jstring methodName, jobjectArray args) const;
117 …bjectCall(JNIEnv*, jclass, jlong nativeJSObject, jstring jurl, jstring methodName, jobjectArray ar…
Djni_jsobject.mm283 jobject JavaJSObject::call(jstring methodName, jobjectArray args) const
285 JS_LOG ("methodName = %s\n", JavaString(methodName).UTF8String());
295 Identifier identifier(exec, JavaString(methodName));
644 jobject KJS_JSObject_JSObjectCall (JNIEnv*, jclass, jlong nativeHandle, jstring, jstring methodName
649 context.string = methodName;
Djni_runtime.cpp261 … jstring methodName = (jstring)callJNIMethod<jobject>(aMethod, "getName", "()Ljava/lang/String;"); in JavaMethod() local
262 _name = JavaString (env, methodName); in JavaMethod()
263 env->DeleteLocalRef (methodName); in JavaMethod()
/external/webkit/V8Binding/jni/
Djni_utility.h236 T callJNIMethod(jobject obj, const char* methodName, const char* methodSignature, ...)
241 T result= callJNIMethodV<T>(obj, methodName, methodSignature, args);
249 T callJNIStaticMethod(jclass cls, const char* methodName, const char* methodSignature, ...)
260 jmethodID mid = env->GetStaticMethodID(cls, methodName, methodSignature);
264 … fprintf(stderr, "%s: Could not find method: %s for %p\n", __PRETTY_FUNCTION__, methodName, cls);
Djni_runtime.cpp68 … jstring methodName = (jstring)callJNIMethod<jobject>(aMethod, "getName", "()Ljava/lang/String;"); in JavaMethod() local
69 _name = JavaString (env, methodName); in JavaMethod()
70 env->DeleteLocalRef (methodName); in JavaMethod()
Djni_instance.cpp64 bool JavaInstance::invokeMethod(const char* methodName, const NPVariant* args, uint32_t count, NPVa… in invokeMethod() argument
72 MethodList methodList = getClass()->methodsNamed(methodName); in invokeMethod()
Djni_npobject.h46 bool JavaNPObject_Invoke(NPObject* obj, NPIdentifier methodName, const NPVariant* args, uint32_t ar…
/external/webkit/WebCore/bridge/
DNP_jsobject.cpp144 bool _NPN_Invoke(NPP npp, NPObject* o, NPIdentifier methodName, const NPVariant* args, uint32_t arg… in _NPN_Invoke() argument
149 IdentifierRep* i = static_cast<IdentifierRep*>(methodName); in _NPN_Invoke()
154 if (methodName == _NPN_GetStringIdentifier("eval")) { in _NPN_Invoke()
189 return o->_class->invoke(o, methodName, args, argCount, result); in _NPN_Invoke()
356 bool _NPN_HasMethod(NPP, NPObject* o, NPIdentifier methodName) in _NPN_HasMethod() argument
361 IdentifierRep* i = static_cast<IdentifierRep*>(methodName); in _NPN_HasMethod()
377 return o->_class->hasMethod(o, methodName); in _NPN_HasMethod()
Dnpruntime.h336 bool NPN_Invoke(NPP npp, NPObject *npobj, NPIdentifier methodName, const NPVariant *args, uint32_t …
343 bool NPN_HasMethod(NPP npp, NPObject *npobj, NPIdentifier methodName);
Dnpruntime_impl.h48 extern bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t ar…
/external/webkit/WebCore/bindings/v8/
DNPV8Object.cpp133 bool _NPN_Invoke(NPP npp, NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, … in _NPN_Invoke() argument
140 return npObject->_class->invoke(npObject, methodName, arguments, argumentCount, result); in _NPN_Invoke()
148 PrivateIdentifier* identifier = static_cast<PrivateIdentifier*>(methodName); in _NPN_Invoke()
160 if (methodName == _NPN_GetStringIdentifier("eval")) { in _NPN_Invoke()
390 bool _NPN_HasMethod(NPP npp, NPObject* npObject, NPIdentifier methodName) in _NPN_HasMethod() argument
405 v8::Handle<v8::Value> prop = obj->Get(npIdentifierToV8Identifier(methodName)); in _NPN_HasMethod()
410 return npObject->_class->hasMethod(npObject, methodName); in _NPN_HasMethod()
Dnpruntime_impl.h58 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argu…
66 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName);
/external/proguard/src/proguard/classfile/util/
DDynamicClassReferenceInitializer.java341 String methodName = methodrefConstant.getName(clazz); in visitMethodrefConstant() local
345 methodName.equals(ClassConstants.INTERNAL_METHOD_NAME_DOT_CLASS_JAVAC) || in visitMethodrefConstant()
346 methodName.equals(ClassConstants.INTERNAL_METHOD_NAME_DOT_CLASS_JIKES); in visitMethodrefConstant()
363 referencedClass.methodAccept(methodName, in visitMethodrefConstant()
DExternalTypeEnumeration.java102 public String methodName() in methodName() method in ExternalTypeEnumeration
/external/webkit/WebCore/bindings/scripts/
DIDLParser.pm291 my $methodName = (defined($3) ? $3 : die("Parsing error!\nSource:\n$line\n)"));
302 $newDataNode->signature->name($methodName);
306 …print " | |- Method; TYPE \"$methodType\" NAME \"$methodName\" EXCEPTION? \"$methodException\""…
DCodeGeneratorObjC.pm783 my $methodName = $functionName;
794 $methodName .= $paramPrefix;
798 $methodName .= ":";
805 my $conflict = $conflictMethod{$methodName};
807 warn "$className conflicts with $conflict method $methodName\n";
/external/webkit/V8Binding/v8/src/
Dmessages.js742 var methodName = frame.getMethodName();
750 if (methodName && (methodName != functionName)) {
751 line += " [as " + methodName + "]";
754 line += methodName || "<anonymous>";
/external/webkit/WebCore/bridge/objc/
Dobjc_class.mm90 …RetainPtr<CFStringRef> methodName(AdoptCF, CFStringCreateWithCString(NULL, buffer, kCFStringEncodi…
91 Method* method = (Method*)CFDictionaryGetValue(_methods.get(), methodName.get());
130 …if ((mappedName && [mappedName isEqual:(NSString*)methodName.get()]) || strcmp(objcMethodSelectorN…
132 CFDictionaryAddValue(_methods.get(), methodName.get(), aMethod);
/external/webkit/V8Binding/npapi/
Dnpruntime.h336 bool NPN_Invoke(NPP npp, NPObject *npobj, NPIdentifier methodName, const NPVariant *args, uint32_t …
343 bool NPN_HasMethod(NPP npp, NPObject *npobj, NPIdentifier methodName);
/external/jdiff/src/jdiff/
DHTMLReportGenerator.java609 String methodName = methodAPI.name_ + "(" + methodAPI.getSignature() + ")"; in reportAllMethods() local
610 if (trace) System.out.println("Method " + methodName + " was removed."); in reportAllMethods()
622 String methodName = methodAPI.name_ + "(" + methodAPI.getSignature() + ")"; in reportAllMethods() local
623 if (trace) System.out.println("Method " + methodName + " was added."); in reportAllMethods()
1393 String methodName = methodAPI.name_; in writeMethodTableEntry() local
1397 String commentID = fqName + "." + methodName + "_" + lt + "(" + signature + ")"; in writeMethodTableEntry()
1413 reportFile.print("&nbsp;" + methodName); in writeMethodTableEntry()
1444 reportFile.print("&nbsp;<A HREF=\"" + memberRef + ".html#" + methodName + in writeMethodTableEntry()
1445 … "(" + signature + ")\" target=\"_top\"><font size=\"+1\"><tt>" + methodName + "</tt></font></A>"); in writeMethodTableEntry()

12