Home | History | Annotate | Download | only in harmony

Lines Matching refs:found

77   var found = a.find(function(val, key, obj) {
90 assertEquals(undefined, found);
100 var found = a.find(function() {
106 assertEquals(undefined, found);
119 var found = Array.prototype.find.call(a, function(val, key, obj) {
132 assertEquals(undefined, found);
134 found = Array.prototype.find.apply(a, [function(val, key, obj) {
147 assertEquals("a", found);
168 var found = Array.prototype.find.call(a, function(val, key, obj) {
181 assertEquals(undefined, found);
190 var found = a.find(function(val) { a.push(val); return false; });
193 assertEquals(undefined, found);
196 found = a.find(function(val, key) { a[key] = ++val; return false; });
199 assertEquals(undefined, found);
223 var found = [1, 2, 3].find(function(val, key) {
226 assertEquals(2, found);
236 found = ["a", "b", "c"].find(function(val, key) {
239 assertEquals("b", found);