Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dinstruction_simplifier.cc584 /*out*/bool* outcome) { in TypeCheckHasKnownOutcome() argument
600 *outcome = true; in TypeCheckHasKnownOutcome()
604 *outcome = false; in TypeCheckHasKnownOutcome()
610 *outcome = false; in TypeCheckHasKnownOutcome()
636 bool outcome = false; in VisitCheckCast() local
637 if (TypeCheckHasKnownOutcome(check_cast->GetTargetClassRTI(), object, &outcome)) { in VisitCheckCast()
638 if (outcome) { in VisitCheckCast()
682 bool outcome = false; in VisitInstanceOf() local
683 if (TypeCheckHasKnownOutcome(instruction->GetTargetClassRTI(), object, &outcome)) { in VisitInstanceOf()
685 if (outcome && can_be_null) { in VisitInstanceOf()
[all …]
/art/test/
DAndroid.bp933 // JNI-id use can change the outcome of this test on device.