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.c 59 const u4* argv, const char* shorty, void* func, JValue* pReturn)
87 retType = getFfiType(*shorty);
88 while ((sigByte = *++shorty) != '\0') {
  /dalvik/vm/arch/sh/
CallSH4ABI.S 34 * @param r15[1] const char * shorty
40 * @remark r2 shorty pointer
59 mov.l @(4,r14), r2 /* shorty for argumnets */
60 mov #1, r0 /* shorty's 1st byte specify ret value type. */
93 cmp/eq #0, r0 /* if (*shorty == '\0) */
346 mov.l @(4,r14), r2 /* reload shorty */
  /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.c 32 // method->clazz->descriptor, method->name, method->shorty);
  /dalvik/vm/mterp/c/
gotoTargets.c 541 curMethod->shorty);
573 curMethod->name, curMethod->shorty);
725 curMethod->name, curMethod->shorty);
775 // methodToCall->name, methodToCall->shorty);
845 methodToCall->shorty);
    [all...]
  /dalvik/libdex/
DexSwapVerify.c 624 /* Helper for crossVerifyProtoIdItem(), which checks a shorty character
627 static bool shortyDescMatch(char shorty, const char* descriptor, bool
629 switch (shorty) {
645 if ((descriptor[0] != shorty) || (descriptor[1] != '\0')) {
646 LOGE("Shorty vs. primitive type mismatch: '%c', '%s'\n",
647 shorty, descriptor);
654 LOGE("Shorty vs. type mismatch: '%c', '%s'\n",
655 shorty, descriptor);
661 LOGE("Bogus shorty: '%c'\n", shorty);
672 const char* shorty = local
    [all...]
DexProto.c 248 const char* shorty = dexProtoGetShorty(pProto); local
252 shorty++;
255 switch (*(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/
Jni.c 1173 const char* shorty = meth->shorty +1; \/* skip return type char *\/ local
1691 const char* shorty = &method->shorty[1]; \/* skip return type *\/ local
    [all...]
Native.c 527 meth->clazz->descriptor, meth->name, meth->shorty);
837 const char* desc = &method->shorty[1];
867 char returnType = method->shorty[0];
CheckJni.c 126 return (method->shorty[0] == 'L' && !dvmCheckException(self) &&
786 if (expectedSigByte != meth->shorty[0]) {
936 const char* desc = meth->shorty;
943 { /* 'shorty' descr uses L for all refs, incl array */
    [all...]
  /dalvik/vm/reflect/
Proxy.c 804 meth->shorty =
805 gDvm.methJavaLangReflectProxy_constructorPrototype->shorty;
826 dstMeth->shorty = srcMeth->shorty;
848 const char* desc = &method->shorty[1]; // [0] is the return type.
    [all...]
  /dalvik/vm/mterp/out/
InterpC-x86.c     [all...]
InterpC-x86-atom.c     [all...]
InterpC-portdbg.c     [all...]
InterpC-allstubs.c     [all...]
InterpC-portstd.c     [all...]
  /libcore/luni/src/test/java/tests/sql/
ResultSetGetterTests.java 1223 short shorty = res.getShort(6); local
1231 short shorty = res.getShort(6); local
1257 short shorty = res.getShort("Sint"); local
1265 short shorty = res.getShort("Sint"); local
    [all...]
  /dalvik/vm/mterp/portable/
debug.c 200 strcmp(method->shorty, sg) == 0)
  /dalvik/vm/interp/
Stack.c 450 const char* desc = &(method->shorty[1]); // [0] is the return type.
490 case 'L': { /* 'shorty' descr uses L for all refs, incl array */
554 const char* desc = &(method->shorty[1]); // [0] is the return type.
1035 method->clazz->descriptor, method->name, method->shorty);
    [all...]
  /dalvik/vm/alloc/
Copying.c 1812 const char *shorty; local
    [all...]
  /dalvik/vm/analysis/
RegisterMap.c     [all...]
  /dalvik/docs/
dalvik-constraints.html 98 into the string_ids list. The referenced string must be a valid shorty descriptor.
porting-guide.html 73 (a DEX "shorty" signature, with one character for the return type and one
  /dalvik/vm/arch/arm/
CallEABI.S 358 cmp ip, #0 @ end of shorty?

Completed in 460 milliseconds

1 2