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

1234

/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DInfo.java29 final String methodName; field in class:Info
32 Info(int counter, String className, String methodName, int location) { argument
35 this.methodName = methodName;
H A DInjector.java27 byte[] bytecodes(String className, String methodName, int location); argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DExpression.java58 * The {@code target} and the {@code methodName} values should not be {@code null}.
65 * @param methodName the name of the method to invoke on the specified target
70 @ConstructorProperties({"target", "methodName", "arguments"})
71 public Expression(Object target, String methodName, Object[] arguments) { argument
72 super(target, methodName, arguments);
83 * The {@code target} and the {@code methodName} values should not be {@code null}.
91 * @param methodName the name of the method to invoke on the specified target
96 public Expression(Object value, Object target, String methodName, Object[] arguments) { argument
97 this(target, methodName, arguments);
110 * {@code methodName} propert
[all...]
H A DDefaultPersistenceDelegate.java216 static void invokeStatement(Object instance, String methodName, Object[] args, Encoder out) { argument
217 out.writeStatement(new Statement(instance, methodName, args));
H A DStatement.java72 private final String methodName; field in class:Statement
81 * The {@code target} and the {@code methodName} values should not be {@code null}.
88 * @param methodName the name of the method to invoke on the specified target
91 @ConstructorProperties({"target", "methodName", "arguments"})
92 public Statement(Object target, String methodName, Object[] arguments) { argument
94 this.methodName = methodName;
119 return methodName;
136 * as the {@code methodName} property, and invokes the method on
164 * {@code methodName} propert
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DClassesByName2Test.java120 void breakpointAtMethod(ReferenceType ref, String methodName) argument
122 List meths = ref.methodsByName(methodName);
125 methodName);
H A DLocationTest.java72 Location getLocation(String refName, String methodName) { argument
80 List meths = refType.methodsByName(methodName);
83 " methods named: " + methodName);
H A DPopAndInvokeTest.java96 StackFrame frameFor(String methodName) throws Exception { argument
101 if (frame.location().method().name().equals(methodName)) {
105 failure("FAIL: " + methodName + " not on stack");
H A DLocalVariableEqual.java127 Method getMethod(String className, String methodName) { argument
135 List meths = refType.methodsByName(methodName);
138 " methods named: " + methodName);
192 void compareAllVariables(String className, String methodName) throws Exception { argument
193 println("compareAllVariables for method: " + className + "." + methodName);
194 Method method = getMethod(className, methodName);
198 println("\n Success: got a list of all method variables: " + methodName);
H A DNoLocInfoTest.java106 Method getMethod(String className, String methodName) { argument
114 List meths = refType.methodsByName(methodName);
117 " methods named: " + methodName);
123 void checkLineNumberTable(String className, String methodName) { argument
124 println("GetLineNumberTable for method: " + className + "." + methodName);
125 Method method = getMethod(className, methodName);
138 void checkEmptyLineNumberTable(String className, String methodName) { argument
140 className + "." + methodName);
141 Method method = getMethod(className, methodName);
H A DPopAndStepTest.java60 StackFrame frameFor(String methodName) throws Exception { argument
65 if (frame.location().method().name().equals(methodName)) {
69 failure("FAIL: " + methodName + " not on stack");
H A DCountFilterTest.java112 BreakpointRequest breakpointAtMethod(String methodName) argument
114 List meths = targetClass.methodsByName(methodName);
117 methodName);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingLazyValue.java44 private String methodName; field in class:SwingLazyValue
58 methodName = m;
68 if (methodName != null) {
70 Method m = c.getMethod(methodName, types);
/openjdk7/jdk/test/javax/xml/jaxp/PrecisionDecimalDV/
H A DXPrecisionDecimalToString.java41 private static final String methodName = "canonicalToStringForHashCode"; field in class:XPrecisionDecimalToString
58 method = type.getDeclaredMethod(methodName, signature);
62 throw new Error("Impossible to find '"+className+"."+methodName+"': "+ x, x);
67 throw new Error("Failed to invoke "+className+"."+methodName+"(\""+
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/protocol/
H A DClientRequestDispatcher.java48 * @param methodName - the remote method name
58 String methodName,
57 beginRequest(Object self, String methodName, boolean isOneWay, ContactInfo contactInfo) argument
/openjdk7/jdk/src/share/classes/java/lang/
H A DStackTraceElement.java45 private String methodName; field in class:StackTraceElement
55 * @param methodName the name of the method containing the execution point
66 * {@code methodName} is null
69 public StackTraceElement(String declaringClass, String methodName, argument
72 this.methodName = Objects.requireNonNull(methodName, "Method name is null");
131 return methodName;
172 return getClassName() + "." + methodName +
206 Objects.equals(methodName, e.methodName)
[all...]
/openjdk7/jdk/test/java/lang/Throwable/
H A DChainedExceptions.java71 private static void check(Throwable t, StackTraceElement e, String methodName, int n) { argument
74 if (!e.getMethodName().equals(methodName))
H A DStackTraceSerialization.java165 private static void check(StackTraceElement e, String methodName, int n) { argument
168 if (!e.getMethodName().equals(methodName))
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/
H A DAbstractBuilder.java137 * @param methodName the name of the method that we would like to invoke.
141 protected void invokeMethod(String methodName, Class<?>[] paramClasses, argument
145 configuration.root.printError("DEBUG: " + this.getClass().getName() + "." + methodName);
147 Method method = this.getClass().getMethod(methodName, paramClasses);
/openjdk7/langtools/test/tools/apt/lib/
H A DTester.java120 protected MethodDeclaration getMethod(String methodName) { argument
122 if (methodName.equals(m.getSimpleName())) {
148 protected AnnotationMirror getAnno(String methodName, String annoType) { argument
149 MethodDeclaration m = getMethod(methodName);
/openjdk7/jdk/test/javax/swing/MultiUIDefaults/
H A DTest6860438.java73 void check(boolean condition, String methodName) { argument
75 throw new RuntimeException(methodName + " failed");
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DAttributeSetMethodGenerator.java56 public AttributeSetMethodGenerator(String methodName, ClassGenerator classGen) { argument
59 argTypes, argNames, methodName,
/openjdk7/corba/src/share/classes/com/sun/corba/se/pept/transport/
H A DContactInfo.java170 String methodName,
167 createMessageMediator(Broker broker, ContactInfo contactInfo, Connection connection, String methodName, boolean isOneWay) argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DStackFrame.java55 private String methodName; field in class:StackFrame
61 public StackFrame(String methodName, String methodSignature, argument
63 this.methodName = methodName;
74 return methodName;
/openjdk7/jdk/make/tools/src/build/tools/generatecharacter/
H A DPrintCharacterRanges.java48 private static List/*<BooleanRange>*/ recoverBooleanRanges(String methodName) throws Exception { argument
51 Method method = Character.class.getDeclaredMethod(methodName, new Class[] { Character.TYPE });
53 throw new RuntimeException("No method \"" + methodName + "\"(C) found");
94 private static void printBooleanRanges(List/*<BooleanRange>*/ ranges, String methodName) { argument
95 System.out.print(methodName + ":");
103 private static void recoverAndPrintBooleanRanges(String methodName) throws Exception { argument
104 List ranges = recoverBooleanRanges(methodName);
105 printBooleanRanges(ranges, methodName);
124 private static List/*<ShiftRange>*/ recoverShiftRanges(String methodName) throws Exception { argument
128 Method method = Character.class.getDeclaredMethod(methodName, ne
158 printShiftRanges(List ranges, String methodName) argument
175 recoverAndPrintShiftRanges(String methodName) argument
[all...]

Completed in 157 milliseconds

1234