Lines Matching refs:curItem
741 ri::Item* curItem = getCurrentItem(); in handleElementEnd() local
743 if (!curItem || itemType != curItem->getType()) in handleElementEnd()
748 ri::Result* result = static_cast<ri::Result*>(curItem); in handleElementEnd()
755 ri::Number* number = static_cast<ri::Number*>(curItem); in handleElementEnd()
761 ri::SampleValue* value = static_cast<ri::SampleValue*>(curItem); in handleElementEnd()
772 ri::Item* curItem = getCurrentItem(); in handleData() local
773 ri::Type type = curItem ? curItem->getType() : ri::TYPE_LAST; in handleData()
778 m_xmlParser.appendDataStr(static_cast<ri::Result*>(curItem)->details); in handleData()
782 m_xmlParser.appendDataStr(static_cast<ri::Text*>(curItem)->text); in handleData()
786 m_xmlParser.appendDataStr(static_cast<ri::ShaderSource*>(curItem)->source); in handleData()
790 m_xmlParser.appendDataStr(static_cast<ri::SpirVSource*>(curItem)->source); in handleData()
794 m_xmlParser.appendDataStr(static_cast<ri::InfoLog*>(curItem)->log); in handleData()
798 m_xmlParser.appendDataStr(static_cast<ri::KernelSource*>(curItem)->source); in handleData()
808 ri::Image* image = static_cast<ri::Image*>(curItem); in handleData()