HomeSort by relevance Sort by last modified time
    Searched refs:methodName (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /external/webkit/WebKit/chromium/public/
WebDevToolsMessageData.h 42 WebString methodName;
  /libcore/luni/src/main/java/java/lang/
StackTraceElement.java 39 String methodName;
68 methodName = method;
111 if ((methodName == null) || (castObj.methodName == null)) {
178 return (methodName == null) ? "<unknown method>" : methodName;
184 * Either both methodName and declaringClass are null, or neither are
187 if (methodName == null) {
191 // declaringClass never null if methodName is non-null
192 return methodName.hashCode() ^ declaringClass.hashCode()
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingProcessor.java 68 * @param methodName the original external method name.
76 String methodName,
MultiMappingProcessor.java 81 String methodName,
91 methodName,
MappingKeeper.java 142 String methodName,
152 Method method = clazz.findMethod(methodName, descriptor);
166 ": method '" + methodReturnType + " " + methodName + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_OPEN + methodArguments + ClassConstants.EXTERNAL_METHOD_ARGUMENTS_CLOSE +
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestTarget.java 36 String methodName() default "";
40 * {@code methodName} is not accurate enough. E.g. for
41 * {@link java.util.regex.Pattern#compile(String)} {@code methodName} is not
  /frameworks/base/core/java/android/widget/
RemoteViews.java 290 String methodName;
294 ReflectionAction(int viewId, String methodName, int type, Object value) {
296 this.methodName = methodName;
303 this.methodName = in.readString();
308 + " methodName=" + this.methodName + " type=" + this.type);
358 out.writeString(this.methodName);
363 + " methodName=" + this.methodName + " type=" + this.type)
    [all...]
  /cts/tools/host/src/com/android/cts/
TestController.java 30 final String className, final String methodName) {
34 mMethodName = methodName;
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
MethodRef.java 27 String methodName) {
31 mMethodName = methodName;
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasMethodAnnotationTest.java 39 String methodName,
42 Method method = aClass.getMethod(methodName);
HasAnnotationTest.java 44 private boolean hasExampleAnnotation(Class<? extends TestCase> aClass, String methodName)
46 Method method = aClass.getMethod(methodName);
  /dalvik/vm/oo/
Object.c 208 static inline int compareMethodHelper(Method* method, const char* methodName,
214 if (strcmp(methodName, method->name) != 0) {
469 const char* methodName, const char* descriptor)
472 methodName, descriptor);
490 const char* methodName)
497 if (strcmp(methods[i].name, methodName) == 0)
511 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
514 return findMethodInListByProto(clazz, METHOD_VIRTUAL, false, methodName,
525 const char* methodName, const char* descriptor)
528 methodName, descriptor)
    [all...]
Object.h 606 const char* methodName, const char* signature);
608 const char* methodName, const char* signature);
610 const char* methodName);
611 Method* dvmFindDirectMethod(const ClassObject* clazz, const char* methodName,
613 Method* dvmFindVirtualMethod(const ClassObject* clazz, const char* methodName,
621 const char* methodName, const char* descriptor);
623 const char* methodName, const char* signature);
625 const char* methodName, const DexProto* proto);
627 const char* methodName, const DexProto* proto);
628 Method* dvmFindMethodHier(const ClassObject* clazz, const char* methodName,
    [all...]
  /external/webkit/WebCore/inspector/front-end/
InjectedScriptAccess.js 48 InjectedScriptAccess._installHandler = function(methodName, async)
50 InjectedScriptAccess.prototype[methodName] = function()
61 WebInspector.console.addMessage(new WebInspector.ConsoleTextMessage("Error dispatching: " + methodName));
65 InspectorBackend.dispatchOnInjectedScript(callId, this._injectedScriptId, methodName, argsString, !!async);
  /external/easymock/src/org/easymock/internal/
MethodSerializationWrapper.java 43 private String methodName;
49 methodName = m.getName();
77 Method m = clazz.getMethod(methodName, parameterTypes);
  /external/emma/core/java12/com/vladium/jcd/lib/
Types.java 363 public static String fullMethodDescriptorToUserName (final String classJavaName, String methodName, final String methoddescriptor)
365 if ("<init>".equals (methodName))
366 methodName = simpleClassName (classJavaName);
367 if ("<clinit>".equals (methodName))
368 methodName = "<static class initializer>";
370 return methodName + ' ' + methodDescriptorToUserName (methoddescriptor);
374 public static String fullMethodDescriptorToFullUserName (final String classJavaName, String methodName, final String methoddescriptor)
376 if ("<init>".equals (methodName))
377 methodName = simpleClassName (classJavaName);
378 if ("<clinit>".equals (methodName))
    [all...]
  /external/webkit/WebCore/bridge/jni/v8/
JavaNPObjectV8.h 50 bool JavaNPObjectInvoke(NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result);
  /external/webkit/WebCore/inspector/
InjectedScript.h 51 void dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException);
InjectedScript.cpp 47 void InjectedScript::dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException)
51 function.appendArgument(methodName);
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerProxy.h 56 void invokeMethod(const String& methodName);
  /external/webkit/WebKit/chromium/src/
DevToolsRPC.h 243 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
    [all...]
  /external/webkit/WebCore/bindings/v8/
npruntime_impl.h 57 bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result);
65 bool _NPN_HasMethod(NPP, NPObject*, NPIdentifier methodName);
  /cts/tools/dex-tools/test/dex/reader/
DexTestsCommon.java 129 protected DexMethod getMethod(DexClass clazz, String methodName, String... typeNames) {
131 assertNotNull(methodName);
135 if(methodName.equals(method.getName()) && paramTypeNames.equals(methodsParamTypeNames)){
139 fail("Method: " + methodName +" not present in class: " + clazz.getName());
140 throw new IllegalArgumentException("Method: " + methodName +" not present in class: " + clazz.getName());
  /frameworks/base/services/jni/
com_android_server_PowerManagerService.cpp 59 static bool checkAndClearExceptionFromCallback(JNIEnv* env, const char* methodName) {
61 LOGE("An exception was thrown by callback '%s'.", methodName);
150 #define GET_METHOD_ID(var, clazz, methodName, methodDescriptor) \
151 var = env->GetMethodID(clazz, methodName, methodDescriptor); \
152 LOG_FATAL_IF(! var, "Unable to find method " methodName);
  /external/webkit/WebKit/chromium/src/js/
InspectorControllerImpl.js 249 devtools.InspectorBackendImpl.prototype.dispatchOnInjectedScript = function(callId, injectedScriptId, methodName, argsString, async)
254 RemoteToolsAgent.dispatchOnInjectedScript(callId, injectedScriptId, methodName, argsString, async);
260 * @param {string} methodName Method to install delegating handler for.
262 devtools.InspectorBackendImpl.prototype.installInspectorControllerDelegate_ = function(methodName)
264 this[methodName] = this.callInspectorController_.bind(this, methodName);
272 devtools.InspectorBackendImpl.prototype.callInspectorController_ = function(methodName, var_arg)
275 RemoteToolsAgent.dispatchOnInspectorController(WebInspector.Callback.wrap(function(){}), methodName, JSON.stringify(args));

Completed in 315 milliseconds

1 2 3 4 5 6