Home
last modified time | relevance | path

Searched refs:mismatch (Results 1 – 9 of 9) 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.txt6 not hide the hard verification failure (on the type mismatch) to
/art/build/
DAndroid.gtest.mk375 $$(error argument mismatch $(1) and ($2))
382 $$(error argument mismatch $(1) and ($2))
417 $$(error argument mismatch $(1) and ($2))
424 $$(error argument mismatch $(1) and ($2))
/art/test/
DREADME.md23 exercise "API mismatch" situations by replacing class files created in the first
45 directory; any mismatch triggers a test failure.
/art/tools/ahat/
DREADME.txt127 Fix mismatch between overview and "roots" totals.
/art/tools/dmtracedump/
Dtracedump.cc1084 int32_t mismatch = 0; in dumpTrace() local
1090 if (lastEnter != 0 && lastEnter != methodId) mismatch = 1; in dumpTrace()
1112 mismatch ? '!' : ' ', elapsedTime, depthNote, in dumpTrace()
1117 mismatch ? '!' : ' ', elapsedTime, depthNote, in dumpTrace()
1126 mismatch = 0; in dumpTrace()
/art/tools/
Dlibcore_failures.txt277 description: "Test failures due to mismatch of conscrypt and boringssl versions on host",
/art/runtime/verifier/
Dmethod_verifier.cc2638 bool mismatch = false; in CodeFlowVerifyInstruction() local
2640 mismatch = !reg_type2.IsReferenceTypes() && !reg_type2.IsIntegralTypes(); in CodeFlowVerifyInstruction()
2642 mismatch = !reg_type2.IsReferenceTypes(); in CodeFlowVerifyInstruction()
2644 mismatch = !reg_type1.IsIntegralTypes() || !reg_type2.IsIntegralTypes(); in CodeFlowVerifyInstruction()
2646 if (mismatch) { in CodeFlowVerifyInstruction()