Lines Matching refs:XmlElement
66346 function XmlElement(tag) {
66366 XmlElement.prototype._addChild = function (child) {
66377 XmlElement.prototype._opentag = function (tag) {
66378 var child = new XmlElement(tag);
66385 XmlElement.prototype._closetag = function () {
66389 XmlElement.prototype._text = function (text) {
66397 XmlElement.prototype._cdata = function (cdata) {
66403 XmlElement.prototype._comment = function (comment) {
66409 XmlElement.prototype._error = function (err) {
66415 XmlElement.prototype.eachChild = function (iterator, context) {
66424 XmlElement.prototype.childNamed = function (name) {
66432 XmlElement.prototype.childrenNamed = function (name) {
66441 XmlElement.prototype.childWithAttribute = function (name, value) {
66453 XmlElement.prototype.descendantsNamed = function (name) {
66467 XmlElement.prototype.descendantWithPath = function (path) {
66479 XmlElement.prototype.valueWithPath = function (path) {
66491 XmlElement.prototype.toString = function (options) {
66495 XmlElement.prototype.toStringWithIndent = function (indent, options) {
66586 XmlElement.prototype.type = "element";
66620 extend(XmlDocument.prototype, XmlElement.prototype);
66625 XmlElement.call(this, tag);
66627 else XmlElement.prototype._opentag.apply(this, arguments);
66713 module.exports.XmlElement = XmlElement;
66719 this.XmlElement = XmlElement;