Home | History | Annotate | Download | only in scan-build

Lines Matching refs:forEach

34     forEach(document.getElementsByTagName('table'), function(table) {
123 forEach(theadrow.childNodes, function(cell) {
440 // Dean's forEach: http://dean.edwards.name/base/forEach.js
442 forEach, version 1.0
448 if (!Array.forEach) { // mozilla already supports this
449 Array.forEach = function(array, block, context) {
457 Function.prototype.forEach = function(object, block, context) {
466 String.forEach = function(string, block, context) {
467 Array.forEach(string.split(""), function(chr, index) {
472 // globally resolve forEach enumeration
473 var forEach = function(object, block, context) {
479 } else if (object.forEach instanceof Function) {
480 // the object implements a custom forEach method so use that
481 object.forEach(block, context);
490 resolve.forEach(object, block, context);