Home | History | Annotate | Download | only in performance

Lines Matching refs:BranchResult

122 	enum BranchResult
140 ConditionalCase (Context& context, const char* name, const char* description, DecisionType decisionType, BranchResult branchType, WorkloadDivision workloadDivision, bool isVertex);
149 BranchResult m_branchType;
156 ConditionalCase::ConditionalCase (Context& context, const char* name, const char* description, DecisionType decisionType, BranchResult branchType, WorkloadDivision workloadDivision, bool isVertex)
887 for (int branchResult = (int)ConditionalCase::BRANCH_TRUE; branchResult < (int)ConditionalCase::BRANCH_LAST; branchResult++)
889 if (decisionType != (int)DECISION_ATTRIBUTE && branchResult == (int)ConditionalCase::BRANCH_MIXED)
892 const char* branchResultName = branchResult == (int)ConditionalCase::BRANCH_TRUE ? "true" :
893 branchResult == (int)ConditionalCase::BRANCH_FALSE ? "false" :
894 branchResult == (int)ConditionalCase::BRANCH_MIXED ? "mixed" :
901 (DecisionType)decisionType, (ConditionalCase::BranchResult)branchResult,