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

1 2

  /external/deqp-deps/glslang/glslang/MachineIndependent/
attribute.h 85 bool getInt(int& value, int argNum = 0) const;
89 bool getString(TString& value, int argNum = 0, bool convertToLower = true) const;
95 const TConstUnion* getConstUnion(TBasicType basicType, int argNum) const;
attribute.cpp 44 bool TAttributeArgs::getInt(int& value, int argNum) const
46 const TConstUnion* intConst = getConstUnion(EbtInt, argNum);
57 bool TAttributeArgs::getString(TString& value, int argNum, bool convertToLower) const
59 const TConstUnion* stringConst = getConstUnion(EbtString, argNum);
80 const TConstUnion* TAttributeArgs::getConstUnion(TBasicType basicType, int argNum) const
85 if (argNum >= (int)args->getSequence().size())
88 const TConstUnion* constVal = &args->getSequence()[argNum]->getAsConstantUnion()->getConstArray()[0];
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
Function2Args.java 74 * @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)
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) throws WrongNumberArgsExceptio
    [all...]
Function3Args.java 73 * @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)
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
102 if (argNum != 3)
FunctionOneArg.java 56 * @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)
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
83 if (argNum != 1)
Function.java 50 * @param argNum The argument number index.
52 * @throws WrongNumberArgsException If the argNum parameter is beyond what
55 public void setArg(Expression arg, int argNum)
68 * @param argNum The number of arguments that is being passed to the function.
72 public void checkNumberArgs(int argNum) throws WrongNumberArgsException
74 if (argNum != 0)
FunctionMultiArgs.java 57 * @param argNum The argument number index.
62 public void setArg(Expression arg, int argNum)
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{}
FuncConcat.java 71 * @param argNum The number of arguments that is being passed to the function.
75 public void checkNumberArgs(int argNum) throws WrongNumberArgsException
77 if (argNum < 2)
FuncSubstring.java 105 * @param argNum The number of arguments that is being passed to the function.
109 public void checkNumberArgs(int argNum) throws WrongNumberArgsException
111 if (argNum < 2)
FunctionDef1Arg.java 137 * @param argNum The number of arguments that is being passed to the function.
141 public void checkNumberArgs(int argNum) throws WrongNumberArgsException
143 if (argNum > 1)
FuncExtFunction.java 227 * @param argNum The argument number index.
229 * @throws WrongNumberArgsException If the argNum parameter is beyond what
232 public void setArg(Expression arg, int argNum)
243 * @param argNum The number of arguments that is being passed to the function.
247 public void checkNumberArgs(int argNum) throws WrongNumberArgsException{}
  /external/icu/icu4c/source/samples/coll/
coll.cpp 93 for (int argNum = 1; argNum < argc; argNum ++) {
94 const char *pArgName = argv[argNum];
103 argNum ++;
104 if (argNum >= argc) {
109 *(const char **)(pOpt->pVar) = argv[argNum];
112 argNum ++;
113 if (argNum >= argc) {
119 int i = strtol(argv[argNum], &endp, 0)
    [all...]
  /external/icu/icu4c/source/samples/strsrch/
strsrch.cpp 103 for (int argNum = 1; argNum < argc; argNum ++) {
104 const char *pArgName = argv[argNum];
113 argNum ++;
114 if (argNum >= argc) {
119 *(const char **)(pOpt->pVar) = argv[argNum];
122 argNum ++;
123 if (argNum >= argc) {
129 int i = strtol(argv[argNum], &endp, 0)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
FuncFormatNumb.java 169 * @param argNum Number of arguments passed in
173 public void checkNumberArgs(int argNum) throws WrongNumberArgsException
175 if ((argNum > 3) || (argNum < 2))
FuncDocument.java 434 * @param argNum Number of arguments passed in to this function
438 public void checkNumberArgs(int argNum) throws WrongNumberArgsException
440 if ((argNum < 1) || (argNum > 2))
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 237 int argNum;
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 >= argc)
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
CollationPerformanceTest.java     [all...]
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp 226 int argNum;
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 >= argc)
    [all...]
  /external/dexmaker/dexmaker-mockito-inline/src/main/jni/dexmakerjvmtiagent/
agent.cc 665 for (int argNum = 0; argNum < numParams; argNum++) {
666 const auto& type = method->decl->prototype->param_types->types[argNum];
699 addInstr(c, fi, OP_CONST, {v4, c.Alloc<Const32>(argNum)});
751 for (int argNum = 0; argNum < numParams; argNum++) {
752 const auto& type = method->decl->prototype->param_types->types[argNum];
    [all...]
  /external/dexmaker/dexmaker-mockito-inline-extended/src/main/jni/staticjvmtiagent/
agent.cc 464 for (int argNum = 0; argNum < numParams; argNum++) {
465 const auto& type = method->decl->prototype->param_types->types[argNum];
498 addInstr(c, fi, OP_CONST, {v4, c.Alloc<Const32>(argNum)});
551 for (int argNum = 0; argNum < numParams; argNum++) {
552 const auto& type = method->decl->prototype->param_types->types[argNum];
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/icu/
RegexManager.java 640 int argNum = 0;
648 argNum++;
652 xpathReplacement.append('$').append(argNum);
680 argNum = Integer.parseInt(matcher.group(1));
681 rbPattern.append(args.get(argNum - 1));
682 argsUsed.add(argNum);
  /build/make/tools/signapk/src/com/android/signapk/
SignApk.java     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.h     [all...]
  /art/dexdump/
dexdump.cc     [all...]
  /dalvik/dexdump/
DexDump.cpp     [all...]

Completed in 2182 milliseconds

1 2