Searched defs:methodName (Results 1 - 8 of 8) sorted by relevance

/libcore/support/src/test/java/tests/io/
H A DMockOs.java86 * {@code methodName}. If empty, calls will be handled by the delegate.
88 public Deque<InvocationHandler> getHandlers(String methodName) { argument
90 Deque<InvocationHandler> result = threadFaults.get(methodName);
93 threadFaults.put(methodName, result);
102 public void enqueueNormal(String methodName, int count) { argument
103 Deque<InvocationHandler> handlers = getHandlers(methodName);
109 public void enqueueFault(String methodName) { argument
110 enqueueFault(methodName, OsConstants.EIO);
113 public void enqueueFault(String methodName, final int errno) { argument
114 getHandlers(methodName)
[all...]
/libcore/luni/src/main/java/java/lang/
H A DStackTraceElement.java37 String methodName; field in class:StackTraceElement
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
[all...]
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignatureSpiTest.java303 boolean wasMethodCalled(String methodName) { argument
304 return calledMethods.contains(methodName);
307 void methodCalled(String methodName) { argument
308 calledMethods.add(methodName);
/libcore/luni/src/test/java/dalvik/system/
H A DDexClassLoaderTest.java134 Configuration config, String className, String methodName)
139 Method m = c.getMethod(methodName, (Class[]) null);
133 createInstanceAndCallStaticMethod( Configuration config, String className, String methodName) argument
/libcore/luni/src/main/java/java/io/
H A DObjectStreamClass.java1096 * <code>methodName</code> . Return null otherwise.
1104 static Method findMethod(Class<?> cl, String methodName) { argument
1109 method = search.getDeclaredMethod(methodName, (Class[]) null);
1124 * private <code>methodName</code> . Return null otherwise.
1132 static Method findPrivateMethod(Class<?> cl, String methodName, argument
1135 Method method = cl.getDeclaredMethod(methodName, param);
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DDatagramChannelTest.java2058 String methodName) throws IOException {
2056 readWriteReadData(DatagramChannel sender, byte[] sourceArray, DatagramChannel receiver, byte[] targetArray, int dataSize, String methodName) argument
/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 1615 milliseconds