Home | History | Annotate | Download | only in front-end

Lines Matching refs:prototype

54 Function.prototype.bind = function(thisObject)
57 var args = Array.prototype.slice.call(arguments, 1);
58 return function() { return func.apply(thisObject, args.concat(Array.prototype.slice.call(arguments, 0))) };
61 Node.prototype.rangeOfWord = function(offset, stopCharacters, stayWithinNode, direction)
148 Node.prototype.traverseNextTextNode = function(stayWithin)
160 Node.prototype.rangeBoundaryForOffset = function(offset)
172 Element.prototype.removeStyleClass = function(className)
188 Element.prototype.removeMatchingStyleClasses = function(classNameRegex)
195 Element.prototype.addStyleClass = function(className)
201 Element.prototype.hasStyleClass = function(className)
216 Element.prototype.positionAt = function(x, y)
222 Node.prototype.enclosingNodeOrSelfWithNodeNameInArray = function(nameArray)
231 Node.prototype.enclosingNodeOrSelfWithNodeName = function(nodeName)
236 Node.prototype.enclosingNodeOrSelfWithClass = function(className)
244 Node.prototype.enclosingNodeWithClass = function(className)
251 Element.prototype.query = function(query)
256 Element.prototype.removeChildren = function()
261 Element.prototype.isInsertionCaretInside = function()
270 Element.prototype.__defineGetter__("totalOffsetLeft", function()
278 Element.prototype.__defineGetter__("totalOffsetTop", function()
286 Element.prototype.offsetRelativeToWindow = function(targetWindow)
304 Node.prototype.isWhitespace = isNodeWhitespace;
305 Node.prototype.displayName = nodeDisplayName;
306 Node.prototype.isAncestor = function(node)
310 Node.prototype.isDescendant = isDescendantNode;
311 Node.prototype.traverseNextNode = traverseNextNode;
312 Node.prototype.traversePreviousNode = traversePreviousNode;
313 Node.prototype.onlyTextChild = onlyTextChild;
315 String.prototype.hasSubstring = function(string, caseInsensitive)
322 String.prototype.escapeCharacters = function(chars)
345 String.prototype.escapeForRegExp = function()
350 String.prototype.escapeHTML = function()
355 String.prototype.collapseWhitespace = function()
360 String.prototype.trimURL = function(baseURLDomain)
618 HTMLTextAreaElement.prototype.moveCursorToEnd = function()
624 Array.prototype.remove = function(value, onlyFirst)
640 Array.prototype.keySet = function()
685 return String.vsprintf(format, Array.prototype.slice.call(arguments, 1));