Searched defs:nodeList (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/media/libdrm/mobile2/include/util/domcore/
H A DNodeListImpl.h23 vector<const NodeImpl*> nodeList; member in class:NodeListImpl
/frameworks/base/media/libdrm/mobile2/src/util/domcore/
H A DElementImpl.cpp55 void ElementImpl::getElementsByTagName(const DOMString* name, NodeListImpl* nodeList) const
59 if (node == NULL || name == NULL || nodeList == NULL)
67 /* if current is element node and tag name is equal to <code>name</code>,put it into nodeList */
68 nodeList->append(node);
73 elementNode->getElementsByTagName(name, nodeList);
84 NodeListImpl* nodeList = new NodeListImpl(); local
86 if (nodeList == NULL || name == NULL)
89 getElementsByTagName(name,nodeList);
91 return nodeList;
/frameworks/base/media/libdrm/mobile2/src/util/xml/
H A DXMLElementImpl.cpp95 NodeListImpl *nodeList = NULL; local
99 nodeList = getElementsByTagName(&token);
101 if (nodeList->getLength() > 0)
103 childNode = nodeList->item(0);
/frameworks/base/media/libdrm/mobile2/src/rights/
H A DRo.cpp366 NodeListImpl *nodeList = NULL; local

Completed in 83 milliseconds