Searched defs:match (Results 1 - 7 of 7) sorted by relevance

/dalvik/dexopt/
H A DOptMain.cpp222 const char* match = strstr(bcp, zipName); local
223 if (match != NULL) {
225 * TODO: we have a partial string match, but that doesn't mean
228 * should re-do the strstr starting at (match+1).
235 int matchOffset = match - bcp;
445 ALOGE("DexOpt: build rev does not match VM: %d vs %d",
/dalvik/vm/compiler/codegen/
H A DRallocUtil.cpp705 bool match = true; local
706 match = match && (infoLo != NULL);
707 match = match && (infoHi != NULL);
709 match = match && (FPREG(infoLo->reg) == FPREG(infoHi->reg));
711 if (match && FPREG(infoLo->reg)) {
712 match &= ((infoLo->reg & 0x1) == 0);
713 match
[all...]
/dalvik/vm/compiler/codegen/mips/
H A DRallocUtil.cpp777 bool match = true; local
778 match = match && (infoLo != NULL);
779 match = match && (infoHi != NULL);
781 match = match && (FPREG(infoLo->reg) == FPREG(infoHi->reg));
783 if (match && FPREG(infoLo->reg)) {
784 match &= ((infoLo->reg & 0x1) == 0);
785 match
[all...]
/dalvik/vm/
H A DInit.cpp1662 int match; local
1670 while ((match = fscanf(fp, "%255s %255s %*s %*s %*d %*d\n", mount_dev, mount_dir)) != EOF) {
1673 if (match == 2 && (strcmp(arg, mount_dir) == 0)) {
/dalvik/tools/dmtracedump/
H A DTraceDump.c1114 if (id == methodId) /* match */
2404 "Exit from method %s.%s %s does not match stack:\n",
2409 "Exit from method %s does not match stack:\n",
2652 int match = findMatch(methods2, d2->numMethods, methods1[i]); local
2653 if (match >= 0) {
2655 ptr->method2 = methods2[match];
2674 methods2[match] = NULL;
/dalvik/vm/oo/
H A DClass.cpp975 * Scan the list for a match. The list is expected to be short.
984 //ALOGI("+++ found initiating match %p in %s",
1072 bool match; local
1074 match = (strcmp(clazz->descriptor, pCrit->descriptor) == 0 &&
1078 //if (match)
1082 return !match;
1093 bool match; local
1095 match = (strcmp(clazz->descriptor, addClazz->descriptor) == 0 &&
1099 return !match;
1160 * The class is considered "new" if it doesn't match o
[all...]
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 5059 milliseconds