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
105 argCount = 0;
133 argCount = count;
212 argCount = 1;
269 protected final int argCount() { method in class:BaseMachine
270 return argCount;
282 for (int i = 0; i < argCount; i++) {
292 * @param n {@code >= 0, < argCount();} which argument
296 if (n >= argCount) {
297 throw new IllegalArgumentException("n >= argCount");
[all...]
/dalvik/vm/oo/
H A DObject.cpp209 const char* returnType, size_t argCount, const char** argTypes)
224 if (dexProtoGetParameterCount(proto) != argCount) {
230 for (/*argCount*/; argCount != 0; argCount--, argTypes++) {
243 if (argCount == 0) {
332 size_t argCount, const char* descriptor)
340 for (i = 0; i < argCount; i++) {
369 size_t argCount = countArgsAndFindReturnType(descriptor, &returnType); local
381 char buffer[argCount
208 compareMethodHelper(Method* method, const char* methodName, const char* returnType, size_t argCount, const char** argTypes) argument
331 copyTypes(char* buffer, const char** argTypes, size_t argCount, const char* descriptor) argument
[all...]
/dalvik/vm/reflect/
H A DProxy.cpp796 size_t argCount = dexProtoGetParameterCount(&method->prototype); local
800 argCount, ALLOC_DEFAULT);
/dalvik/vm/analysis/
H A DCodeVerify.cpp3185 u4 argCount = pDecInsn->vA; local
3200 * Verify each register. If "argCount" is bad, verifyRegisterType()
3202 * for argCount to be zero.
3204 for (ui = 0; ui < argCount; ui++) {

Completed in 138 milliseconds