Definition at line 135 of file XmlDoc.h. Referenced by Impala::Core::VideoSet::Mpeg7DocAudio::AddSegment(), Impala::Core::VideoSet::Mpeg7Doc::GetTemporalDecomposition(), Impala::Application::MediaTable::TableDataSourceFlickrPhotoList::loadXML(), Impala::Core::VideoSet::Mpeg7DocAudio::ReadData(), Impala::Core::VideoSet::Mpeg7Doc::ReadData(), Impala::Core::IDash::XmlVideoList::ReadData(), Impala::Core::IDash::XmlAnnotationSet::ReadData(), Impala::Application::TagsLife::Tag::readGeo(), Impala::Application::TagsLife::Tag::readRelated(), Impala::Application::TagsLife::Tag::readTag(), and Impala::Core::Trec::TrecTopic::ReadTopics(). 00136 { 00137 DOMNodeList* children = node->getChildNodes(); 00138 XMLCh* xTagName = XMLString::transcode(tagName); 00139 std::vector<DOMNode*> result; 00140 for (XMLSize_t i=0 ; i<children->getLength() ; i++) 00141 { 00142 DOMNode* child = children->item(i); 00143 const XMLCh *xChildName = child->getNodeName(); 00144 if (XMLString::equals(child->getNodeName(), xTagName)) 00145 result.push_back(child); 00146 } 00147 XMLString::release(&xTagName); 00148 return result; 00149 }
|