HomeSort by relevance Sort by last modified time
    Searched refs:methodName (Results 1 - 25 of 315) 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/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 44 bool hasMethod(NPIdentifier methodName)
46 return identifierIs(methodName, "evaluate");
49 bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
51 if (!identifierIs(methodName, "evaluate"))
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/utils/
SysTrace.java 99 * @param methodName The method name to appear in the trace.
102 public static void beginSectionAsync(String methodName, int cookie) {
104 Log.v(TAG, "beginSectionAsync " + methodName + " " + cookie);
113 * @param methodName The method name to appear in the trace.
116 public static void endSectionAsync(String methodName, int cookie) {
118 Log.v(TAG, "endSectionAsync " + methodName + " " + cookie);
  /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;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
HeapSnapshotWorkerDispatcher.js 58 var constructorFunction = this._findFunction(data.methodName);
68 var result = object[data.methodName];
74 var result = object[data.methodName].apply(object, data.methodArguments);
82 response.result = object[data.methodName].apply(object, data.methodArguments);
89 if (data.methodName)
90 response.errorMethodName = data.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,
  /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 + "(" +
289 private String methodName;
296 public InvocationPlan(Class clazz, String methodName, Object instance, String... paramTypes) {
299 this.methodName = methodName;
    [all...]
  /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 194 * @param methodName The method name to appear in the trace.
198 public static void traceBegin(long traceTag, String methodName) {
200 nativeTraceBegin(traceTag, methodName);
226 * @param methodName The method name to appear in the trace.
231 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) {
233 nativeAsyncTraceBegin(traceTag, methodName, cookie);
243 * @param methodName The method name to appear in the trace.
248 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) {
250 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/chromium_org/chrome/test/functional/chromoting/
chromoting_base.py 33 def __init__(self, methodName):
34 pyauto.PyUITest.__init__(self, methodName)

Completed in 2396 milliseconds

1 2 3 4 5 6 7 8 91011>>