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

12 3 4 5 6

  /dalvik/tools/dmtracedump/
TraceDump.c 175 const char* methodName;
345 const char *className, const char *methodName,
351 method->methodName = methodName;
391 if (methodA->methodName == NULL || methodB->methodName == NULL) {
400 result = strcmp(methodA->methodName, methodB->methodName);
430 if (methodA->methodName == NULL || methodB->methodName == NULL)
    [all...]
CreateTestTrace.c 69 char *methodName;
228 records[nextRecord].methodName = NULL;
241 records[nextRecord].methodName = strndup(save_cp, len);
401 if (pRecord->className == NULL || pRecord->methodName == NULL) {
407 pRecord->methodName);
411 pRecord->methodName, pRecord->signature);
  /external/proguard/src/proguard/classfile/util/
ExternalTypeEnumeration.java 102 public String methodName()
DynamicClassReferenceInitializer.java 341 String methodName = methodrefConstant.getName(clazz);
345 methodName.equals(ClassConstants.INTERNAL_METHOD_NAME_DOT_CLASS_JAVAC) ||
346 methodName.equals(ClassConstants.INTERNAL_METHOD_NAME_DOT_CLASS_JIKES);
363 referencedClass.methodAccept(methodName,
  /dalvik/vm/native/
dalvik_system_VMDebug.c 758 char* methodName = strchr(classAndMethodDesc, '.');
759 if (methodName == NULL) {
764 *methodName++ = '\0';
766 char* methodDescr = strchr(methodName, ':');
774 //LOGD("GOT: %s %s %s\n", classAndMethodDesc, methodName, methodDescr);
791 if (methodName[0] == '<') {
796 method = dvmFindDirectMethodByDescriptor(clazz, methodName,
802 method = dvmFindVirtualMethodHierByDescriptor(clazz, methodName,
805 method = dvmFindDirectMethodHierByDescriptor(clazz, methodName,
818 classAndMethodDesc, methodName, methodDescr)
    [all...]
  /cts/tools/test-progress-new/src/testprogress2/
TestTargetNew.java 205 String methodName = null;
209 methodName = (String)kval.value().value();
266 // String refSig = methodName + "(" + args + ")";
267 // both methodName and methodArgs != null because of Annotation
271 this.readMethodName = methodName;
309 String methodName = mdoc.name();
310 int lastDot = methodName.lastIndexOf('.');
314 methodName = methodName.substring(lastDot + 1);
317 String testSig = methodName + "(" + targs + ")"
    [all...]
  /external/webkit/WebCore/bridge/jni/
JNIUtility.h 229 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);
JNIBridge.cpp 71 jstring methodName = static_cast<jstring>(callJNIMethod<jobject>(aMethod, "getName", "()Ljava/lang/String;"));
74 m_name = JavaString(env, methodName);
75 env->DeleteLocalRef(methodName);
jni_jsobject.h 82 jobject call(jstring methodName, jobjectArray args) const;
117 jobject KJS_JSObject_JSObjectCall(JNIEnv*, jclass, jlong nativeJSObject, jstring jurl, jstring methodName, jobjectArray args, jboolean ctx);
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestPackageXmlParser.java 103 String methodName = attributes.getValue("name");
108 } else if (methodName == null) {
121 methodName);
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 102 #define GET_METHOD_ID(var, clazz, methodName, fieldDescriptor) \
103 var = env->GetMethodID(clazz, methodName, fieldDescriptor); \
104 LOG_FATAL_IF(! var, "Unable to find method" methodName);
android_view_MotionEvent.cpp 248 #define GET_STATIC_METHOD_ID(var, clazz, methodName, fieldDescriptor) \
249 var = env->GetStaticMethodID(clazz, methodName, fieldDescriptor); \
250 LOG_FATAL_IF(! var, "Unable to find static method" methodName);
252 #define GET_METHOD_ID(var, clazz, methodName, fieldDescriptor) \
253 var = env->GetMethodID(clazz, methodName, fieldDescriptor); \
254 LOG_FATAL_IF(! var, "Unable to find method" methodName);
  /external/webkit/WebCore/platform/graphics/wince/
MediaPlayerProxy.cpp 123 void WebMediaPlayerProxy::invokeMethod(const String& methodName)
136 Identifier iden(exec, methodName);
  /external/webkit/WebKit/chromium/public/
WebBindings.h 76 WEBKIT_API static bool hasMethod(NPP, NPObject*, NPIdentifier methodName);
91 WEBKIT_API static bool invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t count, NPVariant* result);
  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestMethod.java 40 public TestMethod(String methodName, Class<? extends TestCase> enclosingClass) {
43 this.testMethodName = methodName;
  /dalvik/dexlist/
DexList.c 97 const char* methodName;
105 methodName = dexStringById(pDexFile, pMethodId->nameIdx);
134 strcmp(gParms.methodToFind, methodName) != 0))
141 className, methodName, desc,
  /dalvik/vm/
InlineNative.h 47 const char* methodName;
  /external/webkit/WebCore/bridge/
npruntime_impl.h 48 extern bool _NPN_Invoke(NPP, NPObject*, NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result);
  /frameworks/base/include/android_runtime/
AndroidRuntime.h 49 status_t callStatic(const char* className, const char* methodName);
  /dalvik/vm/oo/
Resolve.c 333 const char* methodName =
340 methodName, methodSig, resClass->descriptor);
341 resMethod = dvmFindVirtualMethod(resClass, methodName, &proto);
346 methodName, &proto);
352 dvmThrowException("Ljava/lang/NoSuchMethodError;", methodName);
  /build/tools/
java-event-log-tags.py 133 methodName = javaName("write_" + t.tagname)
140 buffer.write("\n public static void %s(%s) {" % (methodName, argTypesNames))
  /external/webkit/WebCore/bridge/jni/v8/
JavaInstanceV8.cpp 70 bool JavaInstance::invokeMethod(const char* methodName, const NPVariant* args, int count, NPVariant* resultValue)
74 MethodList methodList = getClass()->methodsNamed(methodName);
  /external/webkit/WebCore/bridge/objc/
objc_class.mm 90 RetainPtr<CFStringRef> methodName(AdoptCF, CFStringCreateWithCString(NULL, buffer, kCFStringEncodingASCII));
91 Method* method = (Method*)CFDictionaryGetValue(_methods.get(), methodName.get());
130 if ((mappedName && [mappedName isEqual:(NSString*)methodName.get()]) || strcmp(objcMethodSelectorName, buffer) == 0) {
132 CFDictionaryAddValue(_methods.get(), methodName.get(), aMethod);
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
NativeAllocationInfo.java 267 * @param methodName the method name to test.
269 private boolean isRelevant(String methodName) {
271 if (methodName.contains(filter)) {
  /external/webkit/WebKit/chromium/src/
WebBindings.cpp 110 bool WebBindings::hasMethod(NPP npp, NPObject* npObject, NPIdentifier methodName)
112 return _NPN_HasMethod(npp, npObject, methodName);
139 bool WebBindings::invoke(NPP npp, NPObject* npObject, NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
141 return _NPN_Invoke(npp, npObject, methodName, arguments, argumentCount, result);

Completed in 614 milliseconds

12 3 4 5 6