Searched defs:argCount (Results 1 - 4 of 4) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/code/
H A DBaseMachine.java43 private int argCount; field in class:BaseMachine
101 argCount = 0;
128 argCount = count;
207 argCount = 1;
259 protected final int argCount() { method in class:BaseMachine
260 return argCount;
272 for (int i = 0; i < argCount; i++) {
282 * @param n &gt;= 0, &lt; argCount(); which argument
286 if (n >= argCount) {
287 throw new IllegalArgumentException("n >= argCount");
[all...]
/dalvik/vm/oo/
H A DObject.c159 const char* returnType, size_t argCount, const char** argTypes)
174 if (dexProtoGetParameterCount(proto) != argCount) {
180 for (/*argCount*/; argCount != 0; argCount--, argTypes++) {
193 if (argCount == 0) {
282 size_t argCount, const char* descriptor)
290 for (i = 0; i < argCount; i++) {
319 size_t argCount = countArgsAndFindReturnType(descriptor, &returnType); local
331 char buffer[argCount
158 compareMethodHelper(Method* method, const char* methodName, const char* returnType, size_t argCount, const char** argTypes) argument
281 copyTypes(char* buffer, const char** argTypes, size_t argCount, const char* descriptor) argument
[all...]
/dalvik/vm/reflect/
H A DProxy.c842 int argCount; local
847 argCount = dexProtoGetParameterCount(&method->prototype);
850 argArray = dvmAllocArray(gDvm.classJavaLangObjectArray, argCount,
862 argCount = 0;
875 argObjects[argCount] = (Object*) dvmWrapPrimitive(value,
878 dvmReleaseTrackedAlloc(argObjects[argCount], NULL);
879 argCount++;
885 argObjects[argCount] = (Object*) dvmWrapPrimitive(value,
887 dvmReleaseTrackedAlloc(argObjects[argCount], NULL);
888 argCount
[all...]
/dalvik/vm/analysis/
H A DCodeVerify.c2737 u4 argCount = pDecInsn->vA; local
2752 * Verify each register. If "argCount" is bad, verifyRegisterType()
2754 * for argCount to be zero.
2756 for (ui = 0; ui < argCount; ui++) {

Completed in 104 milliseconds