HomeSort by relevance Sort by last modified time
    Searched refs:methodName (Results 1 - 25 of 279) 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...]
  /external/mockito/src/org/mockito/internal/invocation/
SerializableMethod.java 18 private String methodName;
26 methodName = method.getName();
34 return methodName;
55 return declaringClass.getDeclaredMethod(methodName, parameterTypes);
59 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
64 "Please report this as a defect with an example of how to reproduce it.", declaringClass, methodName);
88 if (methodName == null) {
89 if (other.methodName != null)
91 } else if (!methodName.equals(other.methodName))
    [all...]
  /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...]
  /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/robolectric/src/main/java/com/xtremelabs/robolectric/bytecode/
ClassHandler.java 16 Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable;
ShadowWrangler.java 87 public Object methodInvoked(Class clazz, String methodName, Object instance, String[] paramTypes, Object[] params) throws Throwable {
88 InvocationPlan invocationPlan = new InvocationPlan(clazz, methodName, instance, paramTypes);
90 reportNoShadowMethodFound(clazz, methodName, paramTypes);
95 throw new I18nException("Method " + methodName + " on class " + clazz.getName() + " is not i18n-safe.");
124 private void reportNoShadowMethodFound(Class clazz, String methodName, String[] paramTypes) {
126 System.out.println("No Shadow method found for " + clazz.getSimpleName() + "." + methodName + "(" +
281 private String methodName;
288 public InvocationPlan(Class clazz, String methodName, Object instance, String... paramTypes) {
291 this.methodName = methodName;
    [all...]
  /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...]
  /frameworks/base/core/java/android/os/
Trace.java 192 * @param methodName The method name to appear in the trace.
196 public static void traceBegin(long traceTag, String methodName) {
198 nativeTraceBegin(traceTag, methodName);
224 * @param methodName The method name to appear in the trace.
229 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) {
231 nativeAsyncTraceBegin(traceTag, methodName, cookie);
241 * @param methodName The method name to appear in the trace.
246 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) {
248 nativeAsyncTraceEnd(traceTag, methodName, cookie);
  /frameworks/testing/uiautomator/library/testrunner-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);
  /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;
  /external/smali/deodexerant/
deodexerant.c 38 const char* methodName;
77 printf("%s->%s%s\n", item->classDescriptor, item->methodName, item->methodSignature);

Completed in 2532 milliseconds

1 2 3 4 5 6 7 8 91011>>