Home
last modified time | relevance | path

Searched refs:argCount (Results 1 – 6 of 6) sorted by relevance

/dalvik/vm/oo/
DObject.c159 const char* returnType, size_t argCount, const char** argTypes) in compareMethodHelper() argument
174 if (dexProtoGetParameterCount(proto) != argCount) { in compareMethodHelper()
180 for (/*argCount*/; argCount != 0; argCount--, argTypes++) { in compareMethodHelper()
193 if (argCount == 0) { in compareMethodHelper()
282 size_t argCount, const char* descriptor) in copyTypes() argument
290 for (i = 0; i < argCount; i++) { in copyTypes()
319 size_t argCount = countArgsAndFindReturnType(descriptor, &returnType); in findMethodInListByDescriptor() local
331 char buffer[argCount + (returnType - descriptor) - 2]; in findMethodInListByDescriptor()
332 const char* argTypes[argCount]; in findMethodInListByDescriptor()
334 copyTypes(buffer, argTypes, argCount, descriptor); in findMethodInListByDescriptor()
[all …]
/dalvik/dx/src/com/android/dx/cf/code/
DBaseMachine.java43 private int argCount; field in BaseMachine
101 argCount = 0; in clearArgs()
128 argCount = count; in popArgs()
207 argCount = 1; in localArg()
259 protected final int argCount() { in argCount() method in BaseMachine
260 return argCount; in argCount()
272 for (int i = 0; i < argCount; i++) { in argWidth()
286 if (n >= argCount) { in arg()
DRopperMachine.java627 int count = argCount(); in getSources()
/dalvik/vm/reflect/
DProxy.c842 int argCount; in boxMethodArgs() local
847 argCount = dexProtoGetParameterCount(&method->prototype); in boxMethodArgs()
850 argArray = dvmAllocArray(gDvm.classJavaLangObjectArray, argCount, in boxMethodArgs()
862 argCount = 0; in boxMethodArgs()
875 argObjects[argCount] = (Object*) dvmWrapPrimitive(value, in boxMethodArgs()
878 dvmReleaseTrackedAlloc(argObjects[argCount], NULL); in boxMethodArgs()
879 argCount++; in boxMethodArgs()
885 argObjects[argCount] = (Object*) dvmWrapPrimitive(value, in boxMethodArgs()
887 dvmReleaseTrackedAlloc(argObjects[argCount], NULL); in boxMethodArgs()
888 argCount++; in boxMethodArgs()
[all …]
/dalvik/libcore/text/src/main/java/java/text/
DMessageFormat.java419 int argCount = 0; in applyPattern() local
436 if (argCount >= args.length) { in applyPattern()
441 args[argCount++] = arg; in applyPattern()
454 this.formats = new Format[argCount]; in applyPattern()
455 for (int i = 0; i < argCount; i++) { in applyPattern()
458 maxOffset = argCount - 1; in applyPattern()
/dalvik/vm/analysis/
DCodeVerify.c2737 u4 argCount = pDecInsn->vA; in verifyFilledNewArrayRegs() local
2756 for (ui = 0; ui < argCount; ui++) { in verifyFilledNewArrayRegs()