Home
last modified time | relevance | path

Searched refs:outcome (Results 1 – 2 of 2) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier.cc578 /*out*/bool* outcome) { in TypeCheckHasKnownOutcome() argument
594 *outcome = true; in TypeCheckHasKnownOutcome()
598 *outcome = false; in TypeCheckHasKnownOutcome()
604 *outcome = false; in TypeCheckHasKnownOutcome()
630 bool outcome = false; in VisitCheckCast() local
631 if (TypeCheckHasKnownOutcome(check_cast->GetTargetClassRTI(), object, &outcome)) { in VisitCheckCast()
632 if (outcome) { in VisitCheckCast()
676 bool outcome = false; in VisitInstanceOf() local
677 if (TypeCheckHasKnownOutcome(instruction->GetTargetClassRTI(), object, &outcome)) { in VisitInstanceOf()
679 if (outcome && can_be_null) { in VisitInstanceOf()
[all …]
/art/test/
DAndroid.bp891 // JNI-id use can change the outcome of this test on device.