findAllElementsByNameNS

findAllElementsByNameNS(namespaceURI: String;
                        localName:    String;
                        elements:     JadeXMLElementArray input);

The findAllElementsByNameNS method of the JadeXMLElement class fills the elements array with all descendant elements that have the values specified in the namespaceURI and localName parameters, respectively.

As the search uses the collection sequence, the elements may not be in the document sequence.

If you want to match all namespaces or local names, specify an asterisk character ('*') in the namespaceURI or localName parameter. Note, however, that if you specify "*" in the localName parameter, the access method uses the document sequence to locate the requested elements rather than the collection sequence that optimizes performance.