Searched refs:match (Results 1 - 18 of 18) sorted by relevance

/dalvik/tools/
H A Ddeadcode.py76 match = codes.find(method, start)
78 if match is -1:
82 startOfLine = codes.rfind("\n", 0, match) + 1
87 if codes.find("invoke", startOfLine, match) is not -1:
90 start = match + len(method)
/dalvik/vm/mterp/armv5te/
H A DOP_APUT_OBJECT.S50 @ The types don't match. We need to throw an ArrayStoreException.
/dalvik/vm/compiler/template/
H A Dgen-template.py157 match = opcode_re.match(line)
158 if not match:
160 opcodes.append("TEMPLATE_" + match.group(1))
/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/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/mterp/
H A Dgen-mterp.py250 match = opcode_re.match(line)
251 if not match:
253 opcodes.append("OP_" + match.group(1))
/dalvik/opcode-gen/
H A Dopcode-gen.awk52 i = match($0, /BEGIN\([a-z-]*\)/);
378 # match. This returns the index of the matching opcode or -1 if there
/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/dx/src/com/android/dx/cf/code/
H A DBytecodeArray.java881 int match = bytes.getInt(at);
884 cases.add(match, target);
965 * Try to match the array initialization idiom. For example, if the
/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 ...
/dalvik/vm/compiler/codegen/x86/libenc/
H A Denc_base.cpp681 static bool match(const EncoderBase::OpcodeDesc& odesc,
689 // location must match exactly
694 // size must match exactly
714 // - the location must match exactly
719 // the size must match exactly
725 // must match only for def operands, and dont care about use ones
/dalvik/vm/mterp/out/
H A DInterpAsm-armv5te-vfp.S1399 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
3654 * an exact match for OP_MOVE.)
8245 @ The types don't match. We need to throw an ArrayStoreException.
16516 /* adjust locals to match self->interpSave.curFrame and updated PC */
16643 * using. We move r3 before calling the C function, but r1 happens to match.
H A DInterpAsm-armv7-a-neon.S1409 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
3651 * an exact match for OP_MOVE.)
8199 @ The types don't match. We need to throw an ArrayStoreException.
16453 /* adjust locals to match self->interpSave.curFrame and updated PC */
16580 * using. We move r3 before calling the C function, but r1 happens to match.
H A DInterpAsm-armv7-a.S1409 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
3651 * an exact match for OP_MOVE.)
8199 @ The types don't match. We need to throw an ArrayStoreException.
16453 /* adjust locals to match self->interpSave.curFrame and updated PC */
16580 * using. We move r3 before calling the C function, but r1 happens to match.
H A DInterpAsm-armv5te.S1421 * 2 or 3 cycles + branch if the high word doesn't match, 6 + branch
3680 * an exact match for OP_MOVE.)
3860 * an exact match for OP_MOVE.)
3971 * an exact match for OP_MOVE.)
8703 @ The types don't match. We need to throw an ArrayStoreException.
16974 /* adjust locals to match self->interpSave.curFrame and updated PC */
17101 * using. We move r3 before calling the C function, but r1 happens to match.

Completed in 850 milliseconds