• Home
  • Raw
  • Download

Lines Matching refs:xe

43 void writeSampleList (const char* casePath, int listNdx, const xe::ri::SampleList& sampleList)  in writeSampleList()
56 out << static_cast<const xe::ri::ValueInfo&>(sampleList.sampleInfo.valueInfos.getItem(ndx)).name; in writeSampleList()
63 …const xe::ri::Sample& sample = static_cast<const xe::ri::Sample&>(sampleList.samples.getItem(sampl… in writeSampleList()
67 …const xe::ri::SampleValue& value = static_cast<const xe::ri::SampleValue&>(sample.values.getItem(v… in writeSampleList()
78 void extractSampleLists (const char* casePath, int* listNdx, const xe::ri::List& items) in extractSampleLists()
82 const xe::ri::Item& child = items.getItem(itemNdx); in extractSampleLists()
84 if (child.getType() == xe::ri::TYPE_SECTION) in extractSampleLists()
85 extractSampleLists(casePath, listNdx, static_cast<const xe::ri::Section&>(child).items); in extractSampleLists()
86 else if (child.getType() == xe::ri::TYPE_SAMPLELIST) in extractSampleLists()
88 writeSampleList(casePath, *listNdx, static_cast<const xe::ri::SampleList&>(child)); in extractSampleLists()
94 void extractSampleLists (const xe::TestCaseResult& result) in extractSampleLists()
100 class SampleListParser : public xe::TestLogHandler
107 void setSessionInfo (const xe::SessionInfo&) in setSessionInfo()
112 xe::TestCaseResultPtr startTestCaseResult (const char* casePath) in startTestCaseResult()
114 return xe::TestCaseResultPtr(new xe::TestCaseResultData(casePath)); in startTestCaseResult()
117 void testCaseResultUpdated (const xe::TestCaseResultPtr&) in testCaseResultUpdated()
122 void testCaseResultComplete (const xe::TestCaseResultPtr& caseData) in testCaseResultComplete()
124 xe::TestCaseResult result; in testCaseResultComplete()
125 xe::parseTestCaseResultFromData(&m_testResultParser, &result, *caseData.get()); in testCaseResultComplete()
130 xe::TestResultParser m_testResultParser;
137 xe::TestLogParser parser (&resultHandler); in processLogFile()