/dalvik/vm/arch/generic/ |
Call.cpp | 68 const u4* argv, const char* shorty, void* func, JValue* pReturn) 95 retType = getFfiType(*shorty); 96 while ((sigByte = *++shorty) != '\0') {
|
/dalvik/libdex/ |
DexProto.cpp | 227 const char* shorty = dexProtoGetShorty(pProto); local 231 shorty++; 234 switch (*(shorty++)) {
|
DexSwapVerify.cpp | 625 /* Helper for crossVerifyProtoIdItem(), which checks a shorty character 628 static bool shortyDescMatch(char shorty, const char* descriptor, bool 630 switch (shorty) { 646 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) { 647 LOGE("Shorty vs. primitive type mismatch: '%c', '%s'", 648 shorty, descriptor); 655 LOGE("Shorty vs. type mismatch: '%c', '%s'", 656 shorty, descriptor); 662 LOGE("Bogus shorty: '%c'", shorty); 673 const char* shorty = local [all...] |
/dalvik/vm/mterp/c/ |
gotoTargets.cpp | 606 curMethod->shorty); 639 curMethod->name, curMethod->shorty); 779 curMethod->name, curMethod->shorty); 829 // methodToCall->name, methodToCall->shorty); [all...] |
/dalvik/vm/analysis/ |
VfyBasicBlock.cpp | 232 meth->clazz->descriptor, meth->name, meth->shorty); 249 vdata->method->name, vdata->method->shorty); 313 meth->clazz->descriptor, meth->name, meth->shorty);
|
Liveness.cpp | 72 meth->clazz->descriptor, meth->name, meth->shorty);
|
/external/oprofile/libpopt/ |
popt.c | 123 /*@null@*/ const void * myData, int shorty) 139 invokeCallbacksOPTION(con, opt->arg, myOpt, myData, shorty); 145 ((myOpt->shortName && opt->shortName && shorty && 719 int shorty = 0; local 816 shorty = 0; 842 shorty = 1; 976 invokeCallbacksOPTION(con, con->options, opt, cbData, shorty); [all...] |
/dalvik/vm/reflect/ |
Proxy.cpp | 738 * The constructor signatures (->prototype and ->shorty) need to 749 meth->shorty = 750 gDvm.methJavaLangReflectProxy_constructorPrototype->shorty; 771 dstMeth->shorty = srcMeth->shorty; 793 const char* desc = &method->shorty[1]; // [0] is the return type. [all...] |
Annotation.cpp | [all...] |
/libcore/luni/src/test/java/libcore/java/sql/ |
OldResultSetGetterTests.java | 806 short shorty = res.getShort(6); local 807 assertEquals(3,shorty); 810 shorty = res.getShort(6); 811 assertEquals(0,shorty); 822 short shorty = res.getShort("Sint"); local 823 assertEquals(3,shorty); 826 shorty = res.getShort("Sint"); 827 assertEquals(0,shorty); [all...] |
/dalvik/vm/oo/ |
Object.h | 528 const char* shorty; member in struct:Method 560 * bridge avoid scanning the shorty for direct pointers that need to be
|
Class.cpp | [all...] |
/external/icu4c/test/perf/DateFmtPerf/ |
DateFmtPerf.h | 375 UnicodeString shorty((UChar32)0x12345);
|
/dalvik/vm/interp/ |
Stack.cpp | 441 const char* desc = &(method->shorty[1]); // [0] is the return type. 482 case 'L': { /* 'shorty' descr uses L for all refs, incl array */ 548 const char* desc = &(method->shorty[1]); // [0] is the return type. 1017 method->clazz->descriptor, method->name, method->shorty); [all...] |
Interp.cpp | [all...] |
/dalvik/vm/mterp/out/ |
InterpC-x86-atom.cpp | [all...] |
InterpC-x86.cpp | [all...] |
InterpC-allstubs.cpp | [all...] |
InterpC-portable.cpp | [all...] |
/dalvik/vm/ |
Jni.cpp | 839 const char* cp = method->shorty; 920 const char* desc = &method->shorty[1]; 1161 const char* shorty = &method->shorty[1]; \/* skip return type *\/ local [all...] |
Native.cpp | 530 meth->clazz->descriptor, meth->name, meth->shorty);
|
CheckJni.cpp | 136 return (method->shorty[0] == 'L' && !dvmCheckException(self) && pResult->l != NULL); 388 if (*expectedType != method->shorty[0]) { [all...] |
/dalvik/vm/alloc/ |
Copying.cpp | [all...] |