Lines Matching refs:delay

182     _.delay(function(){ delayed = true; }, 100);
192 _.delay(function(){ assert.ok(deferred, 'deferred the function'); done(); }, 50);
204 _.delay(function(){ assert.equal(counter, 2, 'incr was throttled'); done(); }, 64);
214 _.delay(function(){ throttledUpdate(3); }, 64);
216 _.delay(function(){ assert.equal(value, 3, 'updated to latest value'); done(); }, 96);
226 _.delay(function(){
239 _.delay(function(){ assert.equal(counter, 2, 'incr was called twice'); done(); }, 64);
250 _.delay(function(){
267 _.delay(saveResult, 50);
268 _.delay(saveResult, 150);
269 _.delay(saveResult, 160);
270 _.delay(saveResult, 230);
271 _.delay(function() {
297 _.delay(function() {
313 _.delay(function() {
327 _.delay(throttledIncr, 50);
328 _.delay(throttledIncr, 60);
329 _.delay(throttledIncr, 200);
332 _.delay(function() {
336 _.delay(function() {
353 _.delay(function() {
369 _.delay(function() {
375 _.delay(function() {
396 _.delay(function() {
423 _.delay(function(){
440 _.delay(function(){ assert.equal(counter, 3, 'incr was throttled'); done(); }, 64);
452 _.delay(function(){ assert.equal(counter, 0, 'incr was throttled'); done(); }, 64);
462 _.delay(debouncedIncr, 16);
463 _.delay(function(){ assert.equal(counter, 1, 'incr was debounced'); done(); }, 96);
474 _.delay(function(){ assert.equal(counter, 0, 'incr was not called'); done(); }, 96);
489 _.delay(debouncedIncr, 16);
490 _.delay(debouncedIncr, 32);
491 _.delay(debouncedIncr, 48);
492 _.delay(function(){
514 _.delay(debouncedIncr, 16);
515 _.delay(debouncedIncr, 32);
516 _.delay(debouncedIncr, 48);
517 _.delay(function(){ assert.equal(counter, 2, 'incr was debounced'); done(); }, 128);
530 _.delay(function(){ assert.equal(counter, 1, 'incr was debounced'); done(); }, 96);
549 _.delay(function() {
575 _.delay(function(){