Home
last modified time | relevance | path

Searched refs:driver (Results 26 – 50 of 91) sorted by relevance

1234

/plugin/combo/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteKeyboard.php17 private $driver; variable in Facebook\\WebDriver\\Remote\\RemoteKeyboard
24 public function __construct(RemoteExecuteMethod $executor, WebDriver $driver, $isW3cCompliant = false) argument
27 $this->driver = $driver;
39 $activeElement = $this->driver->switchTo()->activeElement();
/plugin/findologicxmlexport/vendor/jms/metadata/src/
H A DMetadataFactory.php16 private $driver; variable in Metadata\\MetadataFactory
48 …public function __construct(DriverInterface $driver, ?string $hierarchyMetadataClass = 'Metadata\C… argument
50 $this->driver = $driver;
107 if (null !== $classMetadata = $this->driver->loadMetadataForClass($class)) {
135 if (!$this->driver instanceof AdvancedDriverInterface) {
137 … sprintf('Driver "%s" must be an instance of "AdvancedDriverInterface".', get_class($this->driver))
141 return $this->driver->getAllClassNames();
/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto21.php67 $driver = $pdo->getAttribute(PDO::ATTR_DRIVER_NAME); variable
69 switch($driver) {
78 echo "Error: unsupported driver: " . $driver . "\n";
106 switch($driver) {
143 switch($driver) {
H A Dmigrateto30.php66 $driver = $pdo->getAttribute(PDO::ATTR_DRIVER_NAME); variable
68 switch($driver) {
77 echo "Error: unsupported driver: " . $driver . "\n";
92 switch($driver) {
138 switch($driver) {
/plugin/html2pdf/html2pdf/html2ps/
H A Dbox.generic.php92 function show_postponed(&$driver) { argument
93 $this->show($driver);
205 function show(&$driver) { argument
210 $driver->setlinewidth(0.1);
211 $driver->setrgbcolor(0,0,0);
212 $driver->rect($this->get_left(), $this->get_top(), $this->get_width(), -$this->get_height());
213 $driver->stroke();
220 $color->apply($driver);
227 function show_fixed(&$driver) { argument
228 return $this->show($driver);
[all …]
H A Dbox.field.pageno.php51 function show_fixed(&$driver) { argument
54 $this->words[0] = sprintf('%d', $driver->current_page);
60 $value_width = $driver->stringwidth($this->words[0],
61 $this->_get_font_name($driver, 0),
71 if (is_null(TextBoxString::show_fixed($driver))) {
H A Dbox.input.password.php29 function show(&$driver) { argument
43 $status = GenericFormattedBox::show($driver);
50 $driver->field_password($this->get_left_padding(),
60 $status = GenericContainerBox::show($driver);
H A Dbox.input.img.php27 function show(&$driver) { argument
28 $status = parent::show($driver);
32 $driver->field_pushbuttonimage($this->get_left_padding(),
69 function show(&$driver) { argument
70 $status = parent::show($driver);
74 $driver->field_pushbuttonimage($this->get_left_padding(),
H A Dbox.input.text.php51 function show(&$driver) { argument
66 $status = GenericFormattedBox::show($driver);
73 $driver->field_text($this->get_left_padding(),
83 $status = GenericContainerBox::show($driver);
H A Dbox.input.textarea.php52 function show(&$driver) { argument
58 $status = GenericFormattedBox::show($driver);
60 $driver->field_multiline_text($this->get_left_padding(),
67 $status = GenericContainerBox::show($driver);
H A Dbox.inline.simple.php41 function show(&$driver) { argument
42 parent::show($driver);
45 $strategy->apply($this, $driver);
H A Dbox.container.php83 function show(&$driver) { argument
96 $driver->save();
97 $this->_setupClip($driver);
140 $driver->restore();
163 function show_fixed(&$driver) { argument
177 $driver->save();
178 $this->_setupClip($driver);
212 $driver->restore();
1076 function _setupClip(&$driver) { argument
1087 $driver->closepath();
[all …]
H A Dbox.form.php10 function show(&$driver) { argument
13 $driver->new_form($this->_name);
15 return parent::show($driver);
H A Dbox.page.php43 function show(&$driver) { argument
44 $this->offset(0, $driver->offset);
45 parent::show($driver);
H A Dbox.button.submit.php78 * @param OutputDriver $driver reference to current output driver object
80 function _render_field(&$driver) { argument
81 $driver->field_pushbuttonsubmit($this->get_left_padding() - $this->get_margin_left(),
H A Dbox.button.reset.php28 function _render_field(&$driver) { argument
29 $driver->field_pushbuttonreset($this->get_left_padding(),
H A Dfilter.post.postponed.class.php6 function PostTreeFilterPostponed(&$driver) { argument
7 $this->_driver =& $driver;
H A Dbox.inline.php244 function show(&$driver) { argument
250 return $this->_show($driver);
253 function show_postponed(&$driver) { argument
254 return $this->_show($driver);
257 function _show(&$driver) { argument
267 $background->show($driver, $fake_box);
268 $border->show($driver, $fake_box);
274 if (is_null($this->content[$i]->show($driver))) {
H A Dlayout.default.class.php6 function process(&$box, &$media, &$driver, &$context) { argument
8 if (is_null($box->reflow_text($driver))) {
66 $driver->set_expected_pages($pages);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Builder/
H A DCallbackDriverFactory.php25 $driver = \call_user_func($this->callback, $metadataDirs, $reader);
26 if (!$driver instanceof DriverInterface) {
30 return $driver;
/plugin/combo/vendor/php-webdriver/webdriver/lib/Interactions/
H A DWebDriverActions.php23 protected $driver; variable in Facebook\\WebDriver\\Interactions\\WebDriverActions
29 * @param WebDriverHasInputDevices $driver
31 public function __construct(WebDriverHasInputDevices $driver) argument
33 $this->driver = $driver;
34 $this->keyboard = $driver->getKeyboard();
35 $this->mouse = $driver->getMouse();
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DNullDriverTest.php15 $driver = new NullDriver();
17 $metadata = $driver->loadMetadataForClass(new \ReflectionClass('stdClass'));
H A DXmlDriverTest.php20 $driver = $this->getDriver();
22 $ref = new \ReflectionMethod($driver, 'loadMetadataFromFile');
24 $ref->invoke($driver, new \ReflectionClass('stdClass'), __DIR__ . '/xml/invalid.xml');
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
H A DCodeCoverage.php30 private $driver; variable in SebastianBergmann\\CodeCoverage\\CodeCoverage
133 * @param Driver $driver
138 public function __construct(Driver $driver = null, Filter $filter = null) argument
140 if ($driver === null) {
141 $driver = $this->selectDriver();
148 $this->driver = $driver;
261 $this->driver->start($this->shouldCheckForDeadAndUnused);
291 $data = $this->driver->stop();
1079 $this->driver->start(true);
1088 $coverage = $this->driver->stop();
/plugin/memcache/
H A Dhelper.php106 function driver(){ function in helper_plugin_memcache
107 return memcache::driver();

1234