Home
last modified time | relevance | path

Searched refs:mismatch (Results 1 – 8 of 8) sorted by relevance

/art/test/800-smali/smali/
Db_25494456.smali5 # Ensure that a type mismatch (integral/float vs reference) overrides a soft failure (because of
Db_20224106.smali11 # 1) There is a parameter type mismatch. The formal type is integral (int), but the actual
/art/test/600-verifier-fails/
Dinfo.txt4 verification fail (on the type mismatch) to avoid a crash later on.
/art/test/
DREADME.txt11 directory; this can be used to exercise "API mismatch" situations by
/art/tools/ahat/
DREADME.txt86 Fix mismatch between overview and "roots" totals.
/art/tools/dmtracedump/
Dtracedump.cc1080 int32_t mismatch = 0; in dumpTrace() local
1086 if (lastEnter != 0 && lastEnter != methodId) mismatch = 1; in dumpTrace()
1108 mismatch ? '!' : ' ', elapsedTime, depthNote, in dumpTrace()
1113 mismatch ? '!' : ' ', elapsedTime, depthNote, in dumpTrace()
1122 mismatch = 0; in dumpTrace()
/art/build/
DAndroid.gtest.mk675 $$(error argument mismatch $(1) and ($2))
682 $$(error argument mismatch $(1) and ($2))
/art/runtime/verifier/
Dmethod_verifier.cc2541 bool mismatch = false; in CodeFlowVerifyInstruction() local
2543 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes(); in CodeFlowVerifyInstruction()
2545 mismatch = !reg_type2.IsReferenceTypes(); in CodeFlowVerifyInstruction()
2547 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes(); in CodeFlowVerifyInstruction()
2549 if (mismatch) { in CodeFlowVerifyInstruction()