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

1 2 3 4 5 6 7 8 91011

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
MethodIdItem.java 39 private StringIdItem methodName;
54 * @param methodName the name of the method
56 private MethodIdItem(DexFile dexFile, TypeIdItem classType, ProtoIdItem methodPrototype, StringIdItem methodName) {
60 this.methodName = methodName;
69 * @param methodName the name of the method
74 ProtoIdItem methodPrototype, StringIdItem methodName) {
75 MethodIdItem methodIdItem = new MethodIdItem(dexFile, classType, methodPrototype, methodName);
85 * @param methodName the name of the method
90 ProtoIdItem methodPrototype, StringIdItem methodName) {
    [all...]
  /tools/motodev/src/plugins/preflighting.core/src/com/motorolamobility/preflighting/core/source/model/
Invoke.java 32 private String methodName;
86 return methodName;
91 * @param methodName the name of the method being invoked.
93 public void setMethodName(String methodName)
95 this.methodName = methodName;
191 return "Invoke [type=" + type + ", classCalled=" + classCalled + ", methodName="
192 + methodName + ", parameterTypes=" + parameterTypes + ", returnType=" + returnType
199 * @return string in the format <classCalled>.<methodName>
203 String methodName = getMethodName();
    [all...]
Method.java 45 private String methodName;
151 return methodName;
156 * @param methodName the method name.
158 public void setMethodName(String methodName)
160 this.methodName = methodName;
203 + ", visibility=" + visibility + ", returnType=" + returnType + ", methodName="
204 + methodName + ", parameterTypes=" + parameterTypes + ", instructions="
  /external/antlr/antlr-3.4/gunit/src/main/resources/org/antlr/gunit/
junit.stg 47 testTreeRuleMethod(methodName,testTreeRuleName,testRuleName,test,tokenType,expecting) ::= <<
48 public void <methodName>() throws Exception {
58 testTreeRuleMethod2(methodName,testTreeRuleName,testRuleName,test,returnType,expecting) ::= <<
59 public void <methodName>() throws Exception {
67 testRuleMethod(isLexicalRule,methodName,testRuleName,test,tokenType,expecting) ::= <<
68 public void <methodName>() throws Exception {
78 testRuleMethod2(methodName,testRuleName,test,returnType,expecting) ::= <<
79 public void <methodName>() throws Exception {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
Platform.java 32 static Method getMethod(Class<?> clazz, String methodName) {
34 return clazz.getMethod(methodName);
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
PropertyValuesHolder_Delegate.java 39 /*package*/ static int nGetIntMethod(Class<?> targetClass, String methodName) {
45 /*package*/ static int nGetFloatMethod(Class<?> targetClass, String methodName) {
  /libcore/luni/src/main/java/java/lang/
StackTraceElement.java 37 String methodName;
67 methodName = method;
109 if ((methodName == null) || (castObj.methodName == null)) {
176 return (methodName == null) ? "<unknown method>" : methodName;
182 * Either both methodName and declaringClass are null, or neither are
185 if (methodName == null) {
189 // declaringClass never null if methodName is non-null
190 return methodName.hashCode() ^ declaringClass.hashCode()
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /frameworks/base/core/jni/
android_animation_PropertyValuesHolder.cpp 33 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName)
35 const char *nativeString = env->GetStringUTFChars(methodName, 0);
37 env->ReleaseStringUTFChars(methodName, nativeString);
42 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName)
44 const char *nativeString = env->GetStringUTFChars(methodName, 0);
46 env->ReleaseStringUTFChars(methodName, nativeString);
  /external/javassist/src/main/javassist/convert/
TransformAccessArrayField.java 128 String methodName = getMethodName(opcode);
129 if (methodName != null) {
149 int methodref = cp.addMethodrefInfo(mi, methodName, signature);
166 String methodName = null;
169 methodName = names.objectRead();
172 methodName = names.byteOrBooleanRead();
175 methodName = names.charRead();
178 methodName = names.doubleRead();
181 methodName = names.floatRead();
184 methodName = names.intRead()
    [all...]
  /libcore/support/src/test/java/tests/io/
MockOs.java 86 * {@code methodName}. If empty, calls will be handled by the delegate.
88 public Deque<InvocationHandler> getHandlers(String methodName) {
90 Deque<InvocationHandler> result = threadFaults.get(methodName);
93 threadFaults.put(methodName, result);
102 public void enqueueNormal(String methodName, int count) {
103 Deque<InvocationHandler> handlers = getHandlers(methodName);
109 public void enqueueFault(String methodName) {
110 enqueueFault(methodName, OsConstants.EIO);
113 public void enqueueFault(String methodName, final int errno) {
114 getHandlers(methodName).add(new InvocationHandler()
    [all...]
  /frameworks/testing/uiautomator/library/src/com/android/uiautomator/testrunner/
TestCaseCollector.java 67 String methodName = null;
69 methodName = className.substring(hashPos + 1);
72 addTestClass(className, methodName);
79 * @param methodName may be null, in which case all "public void testNNN(void)" functions
83 public void addTestClass(String className, String methodName) throws ClassNotFoundException {
85 if (methodName != null) {
86 addSingleTestMethod(clazz, methodName);
  /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,
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/Tests/
NPRuntimeRemoveProperty.cpp 41 bool hasMethod(NPIdentifier methodName)
43 return methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty");
46 bool invoke(NPIdentifier methodName, const NPVariant* arguments, uint32_t argumentCount, NPVariant* result)
48 assert(methodName == pluginTest()->NPN_GetStringIdentifier("testRemoveProperty"));
  /libcore/dalvik/src/main/java/dalvik/annotation/
TestTarget.java 39 String methodName() default "";
43 * {@code methodName} is not accurate enough. E.g. for
44 * {@link java.util.regex.Pattern#compile(String)} {@code methodName} is not
  /packages/apps/Bluetooth/jni/
com_android_bluetooth.h 28 const char* methodName);
  /dalvik/vm/oo/
Object.cpp 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...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
MethodRef.java 27 String methodName) {
31 mMethodName = methodName;
  /external/javassist/src/main/javassist/
CtPrimitiveType.java 32 String methodName, String mDesc, int opcode, int atype,
37 getMethodName = methodName;
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/annotation/
HasMethodAnnotationTest.java 39 String methodName,
42 Method method = aClass.getMethod(methodName);
  /external/javassist/src/main/javassist/bytecode/
EnclosingMethodAttribute.java 42 * @param methodName the name of the enclosing method.
46 String methodName, String methodDesc) {
49 int ni = cp.addNameAndTypeInfo(methodName, methodDesc);
101 public String methodName() {
131 methodName(), methodDescriptor());
  /external/javassist/src/test/test/javassist/bytecode/analysis/
ErrorFinder.java 51 String methodName = clazz.getName() + "." + method.getName() + method.getSignature();
52 System.out.println("START: " + methodName);
58 System.out.println("SUCCESS: " + methodName + " - " + (System.currentTimeMillis() - time));
60 System.out.println("FAIL: " + methodName + " - " + (e.getMessage() == null ? e.getClass().getName() : e.getMessage()));

Completed in 643 milliseconds

1 2 3 4 5 6 7 8 91011