Lines Matching refs:command

26545 	    return fn.call(that || null, event.context, event.command, event);
28790 … var command = type === UPDATE_WAYPOINTS$1 ? 'connection.updateWaypoints' : 'connection.reconnect';
28792 var allowed = rules.allowed(command, {
28799 allowed = rules.allowed(command, {
28844 … var command = type === UPDATE_WAYPOINTS$1 ? 'connection.updateWaypoints' : 'connection.reconnect';
28846 allowed = context.allowed = rules.allowed(command, {
28860 allowed = context.allowed = rules.allowed(command, {
45722 CommandStack.prototype.execute = function(command, context) { argument
45723 if (!command) {
45729 var action = { command: command, context: context }; property in AnonymousFunctionf8d14cd14b400.action
45757 CommandStack.prototype.canExecute = function(command, context) { argument
45759 var action = { command: command, context: context }; property in AnonymousFunctionf8d14cd14b500.action
45761 var handler = this._getHandler(command);
45763 var result = this._fire(command, 'canExecute', action);
45856 CommandStack.prototype.register = function(command, handler) { argument
45857 this._setHandler(command, handler);
45868 CommandStack.prototype.registerHandler = function(command, handlerCls) { argument
45870 if (!command || !handlerCls) {
45875 this.register(command, handler);
45903 var command = action.command,
45906 var handler = this._getHandler(command);
45910 self._fire(command, 'revert', action);
45918 self._fire(command, 'reverted', action);
45923 CommandStack.prototype._fire = function(command, qualifier, event) { argument
45929 var names = qualifier ? [ command + '.' + qualifier, qualifier ] : [ command ],
45965 var command = action.command,
45968 var handler = this._getHandler(command);
45971 throw new Error('no command handler registered for <' + command + '>');
45977 this._fire(command, 'preExecute', action);
45983 this._fire(command, 'preExecuted', action);
45989 self._fire(command, 'execute', action);
46000 self._fire(command, 'executed', action);
46004 this._fire(command, 'postExecute', action);
46010 this._fire(command, 'postExecuted', action);
46025 …throw new Error('illegal invocation in <execute> or <revert> phase (action: ' + action.command + '…
46083 CommandStack.prototype._getHandler = function(command) { argument
46084 return this._handlerMap[command];
46087 CommandStack.prototype._setHandler = function(command, handler) { argument
46088 if (!command || !handler) {
46092 if (this._handlerMap[command]) {
46093 throw new Error('overriding handler for command <' + command + '>');
46096 this._handlerMap[command] = handler;