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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
Breakpoint.java 33 public String methodName;
41 methodName = new String();
54 methodName = method;
  /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/content/shell/tools/plugin/Tests/
NPRuntimeObjectFromDestroyedPlugin.cpp 48 bool hasMethod(NPIdentifier methodName)
50 return identifierIs(methodName, "evaluate");
53 bool invoke(NPIdentifier methodName, const NPVariant* args, uint32_t argCount, NPVariant* result)
55 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);
  /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/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
lbximage.h 39 char *methodName;
74 char *methodName;
  /frameworks/base/core/java/android/hardware/camera2/dispatch/
MethodNameInvoker.java 54 * @param methodName
59 * The same kind of value that would normally be returned by calling {@code methodName}
62 * @throws IllegalArgumentException if {@code methodName} does not exist on the target class
66 public <K> K invoke(String methodName, Object... params) {
67 checkNotNull(methodName, "methodName must not be null");
69 Method targetMethod = mMethods.get(methodName);
73 if (method.getName().equals(methodName) &&
76 mMethods.put(methodName, targetMethod);
83 "Method " + methodName + " does not exist on class " + mTargetClass)
    [all...]
  /packages/apps/OMA-DM/engine/javaplugin/nativelib/src/
DmtJavaMethod.h 26 DmtJavaMethod(JNIEnv*& env, jobject object, const char* methodName, const char* methodParam)
29 if (mEnv == NULL || object == NULL || methodName == NULL || methodParam == NULL)
37 mMethodID = mEnv->GetMethodID(mClass, methodName, methodParam);
41 DmtJavaMethod(JNIEnv*& env, const char* classPath, const char* methodName, const char* methodParam)
44 if (mEnv == NULL || classPath == NULL || methodName == NULL || methodParam == NULL)
52 mMethodID = mEnv->GetMethodID(mClass, methodName, methodParam);
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/heap_snapshot_worker/
HeapSnapshotWorkerDispatcher.js 67 var constructorFunction = this._findFunction(data.methodName);
77 var result = object[data.methodName];
83 var result = object[data.methodName].apply(object, data.methodArguments);
91 response.result = object[data.methodName].apply(object, data.methodArguments);
106 if (data.methodName)
107 response.errorMethodName = data.methodName;
  /external/chromium_org/tools/telemetry/telemetry/unittest/
gtest_unittest_results_unittest.py 12 def __init__(self, methodName, mock_timer):
13 super(TestFoo, self).__init__(methodName)
25 def __init__(self, methodName, mock_timer):
26 super(TestBar, self).__init__(methodName)
65 test = TestFoo(methodName='runTezt', mock_timer=self._mock_timer)
77 test = TestBar(methodName='runTezt', mock_timer=self._mock_timer)
94 test.addTest(TestFoo(methodName='runTezt', mock_timer=self._mock_timer))
95 test.addTest(TestBar(methodName='runTezt', mock_timer=self._mock_timer))
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
FramesTest.java 85 String methodName, classSignature;
89 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
93 + methodName
139 String methodName, classSignature;
143 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
147 + methodName
194 String methodName, classSignature;
198 methodName = getMethodName(frame.loc.classID, frame.loc.methodID);
202 + methodName
254 String methodName, classSignature
    [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...]
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
PropertyValuesHolder_Delegate.java 39 /*package*/ static long nGetIntMethod(Class<?> targetClass, String methodName) {
45 /*package*/ static long nGetFloatMethod(Class<?> targetClass, String methodName) {
51 /*package*/ static long nGetMultipleIntMethod(Class<?> targetClass, String methodName,
58 /*package*/ static long nGetMultipleFloatMethod(Class<?> targetClass, String methodName,
  /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
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTestCase.java 53 void printMethodLineTable(long classID, String className /* may be null */, String methodName) {
54 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
58 + classID + "; Method name = " + methodName);
72 logWriter.println("=== Line Table for method: " + methodName + " ===");
74 logWriter.println("=== Line Table for method: " + methodName + " of class: "
89 logWriter.println("=== End of Line Table " + methodName + " ===");
92 long getMethodStartCodeIndex(long classID, String methodName) {
93 long methodID = debuggeeWrapper.vmMirror.getMethodID(classID, methodName);
97 + classID + "; Method name = " + methodName);
116 long getMethodEndCodeIndex(long classID, String methodName) {
    [all...]
  /frameworks/base/core/java/android/os/
Trace.java 200 * @param methodName The method name to appear in the trace.
204 public static void traceBegin(long traceTag, String methodName) {
206 nativeTraceBegin(traceTag, methodName);
232 * @param methodName The method name to appear in the trace.
237 public static void asyncTraceBegin(long traceTag, String methodName, int cookie) {
239 nativeAsyncTraceBegin(traceTag, methodName, cookie);
249 * @param methodName The method name to appear in the trace.
254 public static void asyncTraceEnd(long traceTag, String methodName, int cookie) {
256 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);
  /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);
50 static jlong getMultiparameterMethod(JNIEnv* env, jclass targetClass, jstring methodName,
53 const char *nativeString = env->GetStringUTFChars(methodName, 0);
60 env->ReleaseStringUTFChars(methodName, nativeString);
65 JNIEnv* env, jclass pvhClass, jclass targetClass, jstring methodName, jint parameterCount
    [all...]

Completed in 853 milliseconds

1 2 3 4 5 6 7 8 91011>>