Searched refs:argNum (Results 1 - 12 of 12) sorted by relevance

/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xpath/internal/functions/
H A DFunction2Args.java75 * @param argNum The argument number index.
77 * @throws WrongNumberArgsException If the argNum parameter is greater than 1.
79 public void setArg(Expression arg, int argNum) argument
83 // System.out.println("argNum: "+argNum);
84 if (argNum == 0)
85 super.setArg(arg, argNum);
86 else if (1 == argNum)
99 * @param argNum The number of arguments that is being passed to the function.
103 public void checkNumberArgs(int argNum) throw argument
[all...]
H A DFunction3Args.java74 * @param argNum The argument number index.
76 * @throws WrongNumberArgsException If the argNum parameter is greater than 2.
78 public void setArg(Expression arg, int argNum) argument
82 if (argNum < 2)
83 super.setArg(arg, argNum);
84 else if (2 == argNum)
97 * @param argNum The number of arguments that is being passed to the function.
101 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
103 if (argNum != 3)
H A DFunctionOneArg.java57 * @param argNum The argument number index.
59 * @throws WrongNumberArgsException If the argNum parameter is greater than 0.
61 public void setArg(Expression arg, int argNum) argument
65 if (0 == argNum)
78 * @param argNum The number of arguments that is being passed to the function.
82 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
84 if (argNum != 1)
H A DFunction.java51 * @param argNum The argument number index.
53 * @throws WrongNumberArgsException If the argNum parameter is beyond what
56 public void setArg(Expression arg, int argNum) argument
69 * @param argNum The number of arguments that is being passed to the function.
73 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
75 if (argNum != 0)
H A DFunctionMultiArgs.java58 * @param argNum The argument number index.
63 public void setArg(Expression arg, int argNum) argument
67 if (argNum < 3)
68 super.setArg(arg, argNum);
117 * @param argNum The number of arguments that is being passed to the function.
121 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{} argument
H A DFuncConcat.java72 * @param argNum The number of arguments that is being passed to the function.
76 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
78 if (argNum < 2)
H A DFunctionDef1Arg.java138 * @param argNum The number of arguments that is being passed to the function.
142 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
144 if (argNum > 1)
H A DFuncSubstring.java106 * @param argNum The number of arguments that is being passed to the function.
110 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
112 if (argNum < 2)
H A DFuncExtFunction.java228 * @param argNum The argument number index.
230 * @throws WrongNumberArgsException If the argNum parameter is beyond what
233 public void setArg(Expression arg, int argNum) argument
244 * @param argNum The number of arguments that is being passed to the function.
248 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{} argument
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/beans/
H A DOverloadedMethod.java131 final int argNum = callSiteType.parameterCount();
135 if(argNum == asFixed.type().parameterCount()) {
147 final MethodHandle collecting = SingleDynamicMethod.collectArguments(bound, argNum).asType(
/openjdk10/hotspot/test/testlibrary/jittester/src/jdk/test/lib/jittester/
H A DTypesParser.java101 int argNum = 0;
103 argNum++;
105 paramList.add(new VariableInfo("arg" + argNum, typeKlass, paramType,
/openjdk10/corba/src/jdk.rmic/share/classes/sun/rmi/rmic/iiop/
H A DCompoundType.java2346 private String makeArgName (int argNum, Type type) { argument
2347 return "arg" + argNum;

Completed in 187 milliseconds