HomeSort by relevance Sort by last modified time
    Searched full:shorty (Results 1 - 25 of 35) sorted by null

1 2

  /dalvik/vm/arch/generic/
Call.cpp 76 const u4* argv, const char* shorty, void* func, JValue* pReturn)
103 retType = getFfiType(*shorty);
104 while ((sigByte = *++shorty) != '\0') {
  /external/smali/dexlib/src/main/java/org/jf/dexlib/
TypeIdItem.java 150 * Returns the "shorty" representation of this type, used to create the shorty prototype string for a method
151 * @return the "shorty" representation of this type, used to create the shorty prototype string for a method
TypeListItem.java 194 * @return a string consisting of the shorty form of the type descriptors in this
  /dalvik/tests/003-omnibus-opcodes/src/
IntMath.java 343 static class Shorty {
352 static Shorty truncateTest(int x) {
354 Shorty shorts = new Shorty();
361 static void truncateCheck(Shorty shorts) {
480 Shorty shorts = truncateTest(-16717277); // 0xff00ea23
  /dalvik/vm/mterp/armv5te/
debug.cpp 35 // method->clazz->descriptor, method->name, method->shorty);
  /dalvik/vm/mterp/c/
gotoTargets.cpp 543 curMethod->shorty);
576 curMethod->name, curMethod->shorty);
716 curMethod->name, curMethod->shorty);
766 // methodToCall->name, methodToCall->shorty);
836 methodToCall->shorty);
    [all...]
  /dalvik/libdex/
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 ALOGE("Shorty vs. primitive type mismatch: '%c', '%s'",
648 shorty, descriptor);
655 ALOGE("Shorty vs. type mismatch: '%c', '%s'",
656 shorty, descriptor);
662 ALOGE("Bogus shorty: '%c'", shorty);
673 const char* shorty = local
    [all...]
DexProto.cpp 227 const char* shorty = dexProtoGetShorty(pProto); local
231 shorty++;
234 switch (*(shorty++)) {
DexFile.h 296 u4 shortyIdx; /* index into stringIds for shorty descriptor */
  /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);
  /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...]
  /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...]
  /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/mterp/out/
InterpC-x86.cpp     [all...]
InterpC-mips.cpp     [all...]
InterpC-allstubs.cpp     [all...]
InterpC-portable.cpp     [all...]
  /dalvik/vm/
Jni.cpp 807 const char* cp = method->shorty;
888 const char* desc = &method->shorty[1];
919 char returnType = method->shorty[0];
1117 const char* shorty = &method->shorty[1]; \/* skip return type *\/ local
    [all...]
  /dalvik/vm/interp/
Stack.cpp 445 const char* desc = &(method->shorty[1]); // [0] is the return type.
485 case 'L': { /* 'shorty' descr uses L for all refs, incl array */
551 const char* desc = &(method->shorty[1]); // [0] is the return type.
1019 method->clazz->descriptor, method->name, method->shorty);
    [all...]
  /external/icu4c/test/perf/DateFmtPerf/
DateFmtPerf.h 376 UnicodeString shorty((UChar32)0x12345);
  /dalvik/vm/arch/arm/
CallEABI.S 138 * shorty
377 cmp ip, #0 @ end of shorty?
  /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
  /dalvik/vm/alloc/
Copying.cpp     [all...]
  /dalvik/docs/
dalvik-constraints.html 98 into the string_ids list. The referenced string must be a valid shorty descriptor.
porting-guide.html 72 (a DEX "shorty" signature, with one character for the return type and one

Completed in 2629 milliseconds

1 2