Home | History | Annotate | Download | only in parse-only

Lines Matching refs:ancestor

8458     var ancestor   = this.superclass && this.superclass.prototype;
8466 if (ancestor && Object.isFunction(value) &&
8470 return function() { return ancestor[m].apply(this, arguments) };
10257 descendantOf: function(element, ancestor) {
10258 element = $(element), ancestor = $(ancestor);
10261 return (element.compareDocumentPosition(ancestor) & 8) === 8;
10263 if (ancestor.contains)
10264 return ancestor.contains(element) && ancestor !== element;
10267 if (element == ancestor) return true;