Lines Matching refs:casePath
50 TestCaseResultData::TestCaseResultData (const char* casePath) in TestCaseResultData() argument
51 : m_casePath (casePath) in TestCaseResultData()
84 bool BatchResult::hasTestCaseResult (const char* casePath) const in hasTestCaseResult()
86 return m_resultMap.find(casePath) != m_resultMap.end(); in hasTestCaseResult()
89 ConstTestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath) const in getTestCaseResult()
91 map<string, int>::const_iterator pos = m_resultMap.find(casePath); in getTestCaseResult()
96 TestCaseResultPtr BatchResult::getTestCaseResult (const char* casePath) in getTestCaseResult() argument
98 map<string, int>::const_iterator pos = m_resultMap.find(casePath); in getTestCaseResult()
103 TestCaseResultPtr BatchResult::createTestCaseResult (const char* casePath) in createTestCaseResult() argument
105 DE_ASSERT(!hasTestCaseResult(casePath)); in createTestCaseResult()
108 m_resultMap[casePath] = (int)m_testCaseResults.size(); in createTestCaseResult()
110 TestCaseResultPtr caseResult(new TestCaseResultData(casePath)); in createTestCaseResult()