Lines Matching refs:debounce
4187 QUnit.module('lodash.debounce');
4190 QUnit.test('should debounce a function', function(assert) {
4197 var debounced = _.debounce(function(value) {
4225 var debounced = _.debounce(identity, 32);
4244 debounced = _.debounce(function() { ++callCount; }, 0);
4262 debounced = _.debounce(function() { callCount++; }, 32, {});
4280 var withLeading = _.debounce(function() {
4284 var withLeadingAndTrailing = _.debounce(function() {
4310 var debounced = _.debounce(identity, 32, { 'leading': true, 'trailing': false }),
4330 var withTrailing = _.debounce(function() {
4334 var withoutTrailing = _.debounce(function() {
4358 var debounced = _.debounce(function(value) {
4389 var withMaxWait = _.debounce(function() {
4393 var withoutMaxWait = _.debounce(function() {
4416 var debounced = _.debounce(function() {
4439 var debounced = _.debounce(function() {
4465 var debounced = _.debounce(function(value) {
22973 QUnit.module('lodash.debounce and lodash.throttle');
22975 lodashStable.each(['debounce', 'throttle'], function(methodName) {
22977 isDebounce = methodName == 'debounce';
26748 'debounce',