Searched defs:argNum (Results 1 - 16 of 16) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DFuncFormatNumb.java169 * @param argNum Number of arguments passed in
173 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
175 if ((argNum > 3) || (argNum < 2))
H A DFuncDocument.java434 * @param argNum Number of arguments passed in to this function
438 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
440 if ((argNum < 1) || (argNum > 2))
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncConcat.java71 * @param argNum The number of arguments that is being passed to the function.
75 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
77 if (argNum < 2)
H A DFuncSubstring.java105 * @param argNum The number of arguments that is being passed to the function.
109 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
111 if (argNum < 2)
H A DFunctionDef1Arg.java137 * @param argNum The number of arguments that is being passed to the function.
141 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
143 if (argNum > 1)
H A DFunction.java50 * @param argNum The argument number index.
52 * @throws WrongNumberArgsException If the argNum parameter is beyond what
55 public void setArg(Expression arg, int argNum) argument
68 * @param argNum The number of arguments that is being passed to the function.
72 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
74 if (argNum != 0)
H A DFunction2Args.java74 * @param argNum The argument number index.
76 * @throws WrongNumberArgsException If the argNum parameter is greater than 1.
78 public void setArg(Expression arg, int argNum) argument
82 // System.out.println("argNum: "+argNum);
83 if (argNum == 0)
84 super.setArg(arg, argNum);
85 else if (1 == argNum)
98 * @param argNum The number of arguments that is being passed to the function.
102 public void checkNumberArgs(int argNum) throw argument
[all...]
H A DFunction3Args.java73 * @param argNum The argument number index.
75 * @throws WrongNumberArgsException If the argNum parameter is greater than 2.
77 public void setArg(Expression arg, int argNum) argument
81 if (argNum < 2)
82 super.setArg(arg, argNum);
83 else if (2 == argNum)
96 * @param argNum The number of arguments that is being passed to the function.
100 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
102 if (argNum != 3)
H A DFunctionMultiArgs.java57 * @param argNum The argument number index.
62 public void setArg(Expression arg, int argNum) argument
66 if (argNum < 3)
67 super.setArg(arg, argNum);
116 * @param argNum The number of arguments that is being passed to the function.
120 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{} argument
H A DFunctionOneArg.java56 * @param argNum The argument number index.
58 * @throws WrongNumberArgsException If the argNum parameter is greater than 0.
60 public void setArg(Expression arg, int argNum) argument
64 if (0 == argNum)
77 * @param argNum The number of arguments that is being passed to the function.
81 public void checkNumberArgs(int argNum) throws WrongNumberArgsException argument
83 if (argNum != 1)
H A DFuncExtFunction.java227 * @param argNum The argument number index.
229 * @throws WrongNumberArgsException If the argNum parameter is beyond what
232 public void setArg(Expression arg, int argNum) argument
243 * @param argNum The number of arguments that is being passed to the function.
247 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{} argument
/external/icu/icu4c/source/test/perf/ubrkperf/
H A Dubrkperfold.cpp237 int argNum; local
241 for (argNum=1; argNum<argc; argNum++) {
242 pArgName = argv[argNum];
250 argNum ++;
251 if (argNum >= argc) {
255 *(const char **)(pOpt->pVar) = argv[argNum];
258 argNum ++;
259 if (argNum >
[all...]
/external/swiftshader/third_party/LLVM/lib/Target/CppBackend/
H A DCPPBackend.cpp405 unsigned argNum = std::distance(Arg->getParent()->arg_begin(), local
407 name = std::string("arg_") + utostr(argNum);
/external/clang/lib/CodeGen/
H A DCGBlocks.cpp1102 unsigned argNum,
1118 DI->EmitDeclareOfBlockLiteralArgVariable(*BlockInfo, arg, argNum,
1101 setBlockContextParameter(const ImplicitParamDecl *D, unsigned argNum, llvm::Value *arg) argument
/external/icu/icu4c/source/test/perf/collationperf/
H A Dcollperf.cpp226 int argNum; local
230 for (argNum=1; argNum<argc; argNum++) {
231 pArgName = argv[argNum];
239 argNum ++;
240 if (argNum >= argc) {
244 *(const char **)(pOpt->pVar) = argv[argNum];
247 argNum ++;
248 if (argNum >
[all...]
/external/annotation-tools/asmx/test/lib/
H A Dxalan-2.6.0.jarMETA-INF/ META-INF/MANIFEST.MF java_cup/ java_cup/runtime/ META-INF/services/ org/ org/apache/ ...

Completed in 488 milliseconds