| /plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/ |
| H A D | RemoteTouchScreen.php | 16 private $executor; variable in Facebook\\WebDriver\\Remote\\RemoteTouchScreen 19 * @param RemoteExecuteMethod $executor 21 public function __construct(RemoteExecuteMethod $executor) argument 23 $this->executor = $executor; 33 $this->executor->execute( 48 $this->executor->execute( 64 $this->executor->execute(DriverCommand::TOUCH_DOWN, [ 80 $this->executor->execute(DriverCommand::TOUCH_FLICK, [ 98 $this->executor->execute(DriverCommand::TOUCH_FLICK, [ 115 $this->executor->execute( [all …]
|
| H A D | RemoteWebElement.php | 25 protected $executor; variable in Facebook\\WebDriver\\Remote\\RemoteWebElement 40 * @param RemoteExecuteMethod $executor 44 public function __construct(RemoteExecuteMethod $executor, $id, $isW3cCompliant = false) argument 46 $this->executor = $executor; 59 $this->executor->execute( 75 $this->executor->execute( 105 $raw_element = $this->executor->execute( 129 $raw_elements = $this->executor->execute( 159 $value = $this->executor->execute(DriverCommand::GET_ELEMENT_PROPERTY, $params); 174 return $this->executor->execute(DriverCommand::GET_ELEMENT_ATTRIBUTE, $params); [all …]
|
| H A D | RemoteMouse.php | 23 private $executor; variable in Facebook\\WebDriver\\Remote\\RemoteMouse 30 * @param RemoteExecuteMethod $executor 33 public function __construct(RemoteExecuteMethod $executor, $isW3cCompliant = false) argument 35 $this->executor = $executor; 48 $this->executor->execute(DriverCommand::ACTIONS, [ 63 $this->executor->execute(DriverCommand::CLICK, [ 79 $this->executor->execute(DriverCommand::ACTIONS, [ 103 $this->executor->execute(DriverCommand::CLICK, [ 120 $this->executor->execute(DriverCommand::ACTIONS, [ 135 $this->executor->execute(DriverCommand::DOUBLE_CLICK); [all …]
|
| H A D | RemoteKeyboard.php | 15 private $executor; variable in Facebook\\WebDriver\\Remote\\RemoteKeyboard 24 …public function __construct(RemoteExecuteMethod $executor, WebDriver $driver, $isW3cCompliant = fa… argument 26 $this->executor = $executor; 42 $this->executor->execute(DriverCommand::SEND_KEYS_TO_ACTIVE_ELEMENT, [ 60 $this->executor->execute(DriverCommand::ACTIONS, [ 70 $this->executor->execute(DriverCommand::SEND_KEYS_TO_ACTIVE_ELEMENT, [ 88 $this->executor->execute(DriverCommand::ACTIONS, [ 98 $this->executor->execute(DriverCommand::SEND_KEYS_TO_ACTIVE_ELEMENT, [
|
| H A D | RemoteTargetLocator.php | 16 protected $executor; variable in Facebook\\WebDriver\\Remote\\RemoteTargetLocator 22 …public function __construct(RemoteExecuteMethod $executor, RemoteWebDriver $driver, $isW3cComplian… argument 24 $this->executor = $executor; 35 $this->executor->execute(DriverCommand::SWITCH_TO_FRAME, $params); 73 $this->executor->execute(DriverCommand::SWITCH_TO_FRAME, $params); 85 $this->executor->execute(DriverCommand::SWITCH_TO_PARENT_FRAME, []); 102 $this->executor->execute(DriverCommand::SWITCH_TO_WINDOW, $params); 127 $response = $this->executor->execute(DriverCommand::NEW_WINDOW, ['type' => $windowType]); 136 return new WebDriverAlert($this->executor);
|
| H A D | RemoteWebDriver.php | 22 protected $executor; variable in Facebook\\WebDriver\\Remote\\RemoteWebDriver 65 $this->executor = $commandExecutor; 100 $executor = new HttpCommandExecutor($selenium_server_url, $http_proxy, $http_proxy_port); 102 $executor->setConnectionTimeout($connection_timeout_in_ms); 105 $executor->setRequestTimeout($request_timeout_in_ms); 131 $response = $executor->execute($command); 133 return static::createFromResponse($response, $executor); 499 …* @param WebDriverCommandExecutor $executor Despite the typehint, it have be an instance of HttpCo… 502 public function setCommandExecutor(WebDriverCommandExecutor $executor) argument 504 $this->executor = $executor; [all …]
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/ |
| H A D | WebDriverWindow.php | 18 protected $executor; variable in Facebook\\WebDriver\\WebDriverWindow 24 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument 26 $this->executor = $executor; 38 $position = $this->executor->execute( 57 $size = $this->executor->execute( 79 $this->executor->execute(DriverCommand::MINIMIZE_WINDOW, []); 92 $this->executor->execute(DriverCommand::MAXIMIZE_WINDOW, []); 94 $this->executor->execute( 114 $this->executor->execute(DriverCommand::FULLSCREEN_WINDOW, []); 133 $this->executor->execute(DriverCommand::SET_WINDOW_SIZE, $params); [all …]
|
| H A D | WebDriverOptions.php | 18 protected $executor; variable in Facebook\\WebDriver\\WebDriverOptions 24 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument 26 $this->executor = $executor; 46 $this->executor->execute( 61 $this->executor->execute(DriverCommand::DELETE_ALL_COOKIES); 74 $this->executor->execute( 92 $cookieArray = $this->executor->execute( 121 $cookieArrays = $this->executor->execute(DriverCommand::GET_ALL_COOKIES); 141 return new WebDriverTimeouts($this->executor, $this->isW3cCompliant); 152 return new WebDriverWindow($this->executor, $this->isW3cCompliant); [all …]
|
| H A D | WebDriverTimeouts.php | 16 protected $executor; variable in Facebook\\WebDriver\\WebDriverTimeouts 22 public function __construct(ExecuteMethod $executor, $isW3cCompliant = false) argument 24 $this->executor = $executor; 37 $this->executor->execute( 45 $this->executor->execute( 62 $this->executor->execute( 70 $this->executor->execute( 87 $this->executor->execute( 95 $this->executor->execute(DriverCommand::SET_TIMEOUT, [
|
| H A D | WebDriverNavigation.php | 10 protected $executor; variable in Facebook\\WebDriver\\WebDriverNavigation 12 public function __construct(ExecuteMethod $executor) argument 14 $this->executor = $executor; 19 $this->executor->execute(DriverCommand::GO_BACK); 26 $this->executor->execute(DriverCommand::GO_FORWARD); 33 $this->executor->execute(DriverCommand::REFRESH); 41 $this->executor->execute(DriverCommand::GET, $params);
|
| H A D | WebDriverAlert.php | 16 protected $executor; variable in Facebook\\WebDriver\\WebDriverAlert 18 public function __construct(ExecuteMethod $executor) argument 20 $this->executor = $executor; 30 $this->executor->execute(DriverCommand::ACCEPT_ALERT); 42 $this->executor->execute(DriverCommand::DISMISS_ALERT); 54 return $this->executor->execute(DriverCommand::GET_ALERT_TEXT); 65 $this->executor->execute(
|
| /plugin/bez/tpl/ |
| H A D | activity_report.php | 31 <?php $executor = 0 ?> variable 47 <?php $executor += $involvement['task_assignee_sum'] ?> 55 <td><?php echo $executor ?></td> 74 <?php $executor = 0 ?> variable 88 <?php $executor += $involvement['assignee_sum'] ?> 96 <td><?php echo $executor ?></td>
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/Chrome/ |
| H A D | ChromeDriver.php | 49 $executor = new DriverCommandExecutor($service); 59 $response = $executor->execute($newSessionCommand); 65 return static::createFromResponse($response, $executor); 84 $response = $this->executor->execute($command); 88 $this->executor->disableW3cCompliance();
|
| /plugin/combo/vendor/php-webdriver/webdriver/lib/Firefox/ |
| H A D | FirefoxDriver.php | 45 $executor = new DriverCommandExecutor($service); 54 $response = $executor->execute($newSessionCommand); 59 return new static($executor, $sessionId, $returnedCapabilities, true);
|
| /plugin/davcal/vendor/sabre/event/lib/ |
| H A D | Promise.php | 68 * @param callable $executor 70 function __construct(callable $executor = null) { argument 72 if ($executor) { 73 $executor(
|
| /plugin/webdav/vendor/sabre/event/lib/ |
| D | Promise.php | 56 * @param callable $executor 58 function __construct(callable $executor = null) { argument 60 if ($executor) { 61 $executor(
|
| /plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/ |
| H A D | LexerATNConfig.php | 25 ?LexerActionExecutor $executor = null, argument 30 $this->lexerActionExecutor = $executor ?? ($oldConfig->lexerActionExecutor ?? null);
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | es6.promise.js | 172 $Promise = function Promise(executor) { argument 174 aFunction(executor); 177 executor(ctx($resolve, this, 1), ctx($reject, this, 1)); 183 Internal = function Promise(executor) { argument
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | es6.promise.js | 172 $Promise = function Promise(executor) { argument 174 aFunction(executor); 177 executor(ctx($resolve, this, 1), ctx($reject, this, 1)); 183 Internal = function Promise(executor) { argument
|
| /plugin/diagramsnet/lib/WEB-INF/lib/ |
| D | ehcache-3.8.1.jar | ... INF/org.ehcache.impl.internal.executor.DefaultExecutionServiceFactory.xml
OSGI-INF/org. ... |
| /plugin/asciidocjs/node_modules/promise/ |
| D | index.d.ts | 59 …new <T>(executor: (resolve: (value?: T | Thenable<T>) => void, reject: (reason?: any) => void) => …
|
| /plugin/dirtylittlehelper/mermaid/editor/docs/ |
| D | 12.12.js.map | 1 …uential?',\n 'set',\n 'set-agent-send-executor!',\n 'set-agent-send-off-execu…
|
| /plugin/codemirror/dist/modes/ |
| D | clojure.min.js.map | 1 …,\n \"sequential?\", \"set\", \"set-agent-send-executor!\",\n \"set-agent-send-off-execu…
|
| /plugin/asciidocjs/node_modules/core-js/client/ |
| D | library.js | 5956 $Promise = function Promise(executor) { 5958 aFunction(executor); 5961 executor(ctx($resolve, this, 1), ctx($reject, this, 1)); 5967 Internal = function Promise(executor) {
|
| /plugin/yuriigantt/3rd/dhtmlxgantt/sources/ |
| D | dhtmlxgantt.js | 1041 Promise.prototype._execute = function(executor, resolve, reject) { 1043 executor(resolve, reject); 1062 function cancellationExecute(executor, resolve, reject) { 1065 executor(resolve, reject, function(onCancel) { 2761 function check(self, executor) { 2765 if (typeof executor !== "function") { 2766 throw new TypeError("expecting a function but got " + util.classString(executor)); 2771 function Promise(executor) { 2772 if (executor !== INTERNAL) { 2773 check(this, executor); [all …]
|