Home
last modified time | relevance | path

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

123

/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/webkit/WebKit/chromium/src/
DDevToolsRPC.h243 if (methodName == #Method) { \
249 if (methodName == #Method) { \
255 if (methodName == #Method) { \
264 if (methodName == #Method) { \
274 if (methodName == #Method) { \
285 if (methodName == #Method) { \
347 String methodName = data.methodName; \
379 const String& methodName,
386 data.methodName = methodName;
DWebBindings.cpp110 bool WebBindings::hasMethod(NPP npp, NPObject* npObject, NPIdentifier methodName) in hasMethod() argument
112 return _NPN_HasMethod(npp, npObject, methodName); in hasMethod()
139 bool WebBindings::invoke(NPP npp, NPObject* npObject, NPIdentifier methodName, const NPVariant* arg… in invoke() argument
141 return _NPN_Invoke(npp, npObject, methodName, arguments, argumentCount, result); in invoke()
/external/webkit/WebKit/chromium/src/js/
DInspectorControllerImpl.js249 …rototype.dispatchOnInjectedScript = function(callId, injectedScriptId, methodName, argsString, asy… argument
254 …RemoteToolsAgent.dispatchOnInjectedScript(callId, injectedScriptId, methodName, argsString, async);
262 devtools.InspectorBackendImpl.prototype.installInspectorControllerDelegate_ = function(methodName) argument
264 this[methodName] = this.callInspectorController_.bind(this, methodName);
272 devtools.InspectorBackendImpl.prototype.callInspectorController_ = function(methodName, var_arg) argument
275 …ispatchOnInspectorController(WebInspector.Callback.wrap(function(){}), methodName, JSON.stringify(…
DDevTools.js44 devtools$$dispatch = function(remoteName, methodName, param1, param2, param3) argument
52 var method = agent[methodName];
54 debugPrint("No method '" + remoteName + "." + methodName + "' found.");
137 var methodName = args[0];
139 WebInspector[methodName].apply(WebInspector, parameters);
/external/webkit/WebCore/inspector/front-end/
DInjectedScriptAccess.js48 InjectedScriptAccess._installHandler = function(methodName, async) argument
50 InjectedScriptAccess.prototype[methodName] = function()
61 …pector.console.addMessage(new WebInspector.ConsoleTextMessage("Error dispatching: " + methodName));
65 …InspectorBackend.dispatchOnInjectedScript(callId, this._injectedScriptId, methodName, argsString, …
/external/chromium/net/data/proxy_resolver_v8_unittest/
Dpac_library_unittest.js247 function createProxyMethod(methodName) { argument
249 return this.wrappedDate_[methodName]
255 var methodName = MockDate.methodNames_[i];
258 MockDate.prototype[methodName] = createProxyMethod(methodName);
/external/easymock/src/org/easymock/internal/
DMethodSerializationWrapper.java43 private String methodName; field in MethodSerializationWrapper
49 methodName = m.getName(); in MethodSerializationWrapper()
77 Method m = clazz.getMethod(methodName, parameterTypes); in getMethod()
DInvocation.java148 String methodName = method.getName(); in getMockAndMethodName() local
150 return mockName + "." + methodName; in getMockAndMethodName()
152 return methodName; in getMockAndMethodName()
/external/webkit/WebCore/bridge/jni/
DJNIUtility.h229 T callJNIMethod(jobject obj, const char* methodName, const char* methodSignature, ...)
234 T result = callJNIMethodV<T>(obj, methodName, methodSignature, args);
242 T callJNIStaticMethod(jclass cls, const char* methodName, const char* methodSignature, ...)
253 jmethodID mid = env->GetStaticMethodID(cls, methodName, methodSignature);
257 … fprintf(stderr, "%s: Could not find method: %s for %p\n", __PRETTY_FUNCTION__, methodName, cls);
DJNIBridge.cpp71 …jstring methodName = static_cast<jstring>(callJNIMethod<jobject>(aMethod, "getName", "()Ljava/lang… in JavaMethod() local
74 m_name = JavaString(env, methodName); in JavaMethod()
75 env->DeleteLocalRef(methodName); in JavaMethod()
Djni_jsobject.h82 jobject call(jstring methodName, jobjectArray args) const;
117 …bjectCall(JNIEnv*, jclass, jlong nativeJSObject, jstring jurl, jstring methodName, jobjectArray ar…
/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()
/external/webkit/WebCore/bridge/
DNP_jsobject.cpp143 bool _NPN_Invoke(NPP npp, NPObject* o, NPIdentifier methodName, const NPVariant* args, uint32_t arg… in _NPN_Invoke() argument
148 IdentifierRep* i = static_cast<IdentifierRep*>(methodName); in _NPN_Invoke()
153 if (methodName == _NPN_GetStringIdentifier("eval")) { in _NPN_Invoke()
188 return o->_class->invoke(o, methodName, args, argCount, result); in _NPN_Invoke()
359 bool _NPN_HasMethod(NPP, NPObject* o, NPIdentifier methodName) in _NPN_HasMethod() argument
364 IdentifierRep* i = static_cast<IdentifierRep*>(methodName); in _NPN_HasMethod()
380 return o->_class->hasMethod(o, methodName); in _NPN_HasMethod()
/external/webkit/WebCore/bindings/v8/
DNPV8Object.cpp136 bool _NPN_Invoke(NPP npp, NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, … in _NPN_Invoke() argument
143 return npObject->_class->invoke(npObject, methodName, arguments, argumentCount, result); in _NPN_Invoke()
151 PrivateIdentifier* identifier = static_cast<PrivateIdentifier*>(methodName); in _NPN_Invoke()
163 if (methodName == _NPN_GetStringIdentifier("eval")) { in _NPN_Invoke()
387 bool _NPN_HasMethod(NPP npp, NPObject* npObject, NPIdentifier methodName) in _NPN_HasMethod() argument
402 v8::Handle<v8::Value> prop = obj->Get(npIdentifierToV8Identifier(methodName)); in _NPN_HasMethod()
407 return npObject->_class->hasMethod(npObject, methodName); in _NPN_HasMethod()
Dnpruntime_impl.h57 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argu…
65 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName);
/external/webkit/WebCore/inspector/
DInjectedScript.cpp47 void InjectedScript::dispatch(long callId, const String& methodName, const String& arguments, bool … in dispatch() argument
51 function.appendArgument(methodName); in dispatch()
/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()
/external/webkit/WebKit/chromium/public/
DWebBindings.h76 WEBKIT_API static bool hasMethod(NPP, NPObject*, NPIdentifier methodName);
91 …WEBKIT_API static bool invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* args, uint…
/external/webkit/WebCore/platform/graphics/wince/
DMediaPlayerProxy.cpp123 void WebMediaPlayerProxy::invokeMethod(const String& methodName) in invokeMethod() argument
136 Identifier iden(exec, methodName); in invokeMethod()
/external/webkit/WebCore/bindings/scripts/
DIDLParser.pm290 my $methodName = (defined($3) ? $3 : die("Parsing error!\nSource:\n$line\n)"));
301 $newDataNode->signature->name($methodName);
305 …print " | |- Method; TYPE \"$methodType\" NAME \"$methodName\" EXCEPTION? \"$methodException\""…
/external/webkit/WebCore/bridge/jni/v8/
DJavaInstanceV8.cpp70 bool JavaInstance::invokeMethod(const char* methodName, const NPVariant* args, int count, NPVariant… in invokeMethod() argument
74 MethodList methodList = getClass()->methodsNamed(methodName); in invokeMethod()
/external/v8/src/
Dmessages.js794 var methodName = frame.getMethodName();
802 if (methodName && (methodName != functionName)) {
803 line += " [as " + methodName + "]";
806 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);

123