Lines Matching refs:includeSelf
930 discardMarkup: function (includeSelf) { argument
931 var fn = includeSelf ? "nodeRemoveMarkup" : "nodeRemoveChildMarkup";
1336 getParentList: function (includeRoot, includeSelf) { argument
1338 dtn = includeSelf ? this : this.parent;
1354 getPath: function (includeSelf, part, separator) { argument
1355 includeSelf = includeSelf !== false;
1368 }, includeSelf);
2495 visit: function (fn, includeSelf) { argument
2501 if (includeSelf === true) {
2529 visitAndLoad: function (fn, includeSelf, _recursion) { argument
2536 if (fn && includeSelf === true) {
2574 visitParents: function (fn, includeSelf) { argument
2576 if (includeSelf && fn(this) === false) {
2597 visitSiblings: function (fn, includeSelf) { argument
2605 if (includeSelf || n !== this) {
3221 includeSelf: false, property
3227 includeSelf: true, property
3296 { start: node, reverse: true, includeSelf: false } property
3306 { start: node, includeSelf: false } property
3921 skipFirstNode = opts.includeSelf === false,