Home
last modified time | relevance | path

Searched refs:handle (Results 1 – 25 of 160) sorted by relevance

1234567

/template/strap/vendor/bin/
H A Dyaml-lint25 private $handle;
35 $this->handle = fopen($this->realpath, $mode);
38 return (bool) $this->handle;
43 $data = fread($this->handle, $count);
56 return $this->handle;
61 fclose($this->handle);
66 return $operation ? flock($this->handle, $operation) : true;
71 if (0 === fseek($this->handle, $offset, $whence)) {
72 $this->position = ftell($this->handle);
86 return feof($this->handle);
/template/a_new_day/js/
Dslider.js18 initialize: function(handle, track, options) { argument
21 if(handle instanceof Array) {
22 this.handles = handle.collect( function(e) { return $(e) });
24 this.handles = [$(handle)];
210 var handle = Event.element(event);
212 var track = handle;
224 while((this.handles.indexOf(handle) == -1) && handle.parentNode)
225 handle = handle.parentNode;
227 if(this.handles.indexOf(handle)!=-1) {
228 this.activeHandle = handle;
Ddragdrop.js230 handle: false, property
268 if(options.handle && (typeof options.handle == 'string'))
269 this.handle = this.element.down('.'+options.handle, 0);
271 if(!this.handle) this.handle = $(options.handle);
272 if(!this.handle) this.handle = this.element;
286 Event.observe(this.handle, "mousedown", this.eventMouseDown);
292 Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
612 handle: false, // or a CSS class property
637 handle: options.handle }; property
686 var handle = options.handle ?
[all …]
/template/battlehorse/js/
Dslider.js18 initialize: function(handle, track, options) { argument
21 if(handle instanceof Array) {
22 this.handles = handle.collect( function(e) { return $(e) });
24 this.handles = [$(handle)];
210 var handle = Event.element(event);
212 var track = handle;
224 while((this.handles.indexOf(handle) == -1) && handle.parentNode)
225 handle = handle.parentNode;
227 if(this.handles.indexOf(handle)!=-1) {
228 this.activeHandle = handle;
Ddragdrop.js230 handle: false, property
268 if(options.handle && (typeof options.handle == 'string'))
269 this.handle = this.element.down('.'+options.handle, 0);
271 if(!this.handle) this.handle = $(options.handle);
272 if(!this.handle) this.handle = this.element;
286 Event.observe(this.handle, "mousedown", this.eventMouseDown);
292 Event.stopObserving(this.handle, "mousedown", this.eventMouseDown);
612 handle: false, // or a CSS class property
637 handle: options.handle }; property
686 var handle = options.handle ?
[all …]
/template/writers/images/cabecera/
Drotator.php171 $handle = opendir($folder); variable
172 while ( false !== ( $file = readdir($handle) ) ) {
180 closedir($handle);
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/
H A DRemoteTargetLocator.php91 * @param string $handle The handle of the window to be focused on.
94 public function window($handle) argument
97 $params = ['handle' => (string) $handle];
99 $params = ['name' => (string) $handle];
/template/my_little_forum/custom/
Dcustom_functions.php16 if ($handle = opendir($dir)) {
17 while (false !== ($lfile = readdir($handle))) {
45 closedir($handle);
/template/strap/vendor/php-webdriver/webdriver/lib/
H A DWebDriverTargetLocator.php46 * @param string $handle The handle of the window to be focused on.
50 public function window($handle); argument
/template/dynamic_template/custom_code/
Dcustom_functions.php46 if ($handle = opendir($dir)) {
47 while (false !== ($lfile = readdir($handle))) {
75 closedir($handle);
/template/strap/ComboStrap/Api/
H A DApiRouter.php31 public static function handle(Event $event) function in ComboStrap\\Api\\ApiRouter
37 QualityMessageHandler::handle($event);
41 MetaManagerHandler::handle($event);
H A DAjaxHandler.php10 public static function handle(Event $event) function in Api\\AjaxHandler
H A DQualityMessageHandler.php34 public static function handle(Event $event) function in ComboStrap\\Api\\QualityMessageHandler
/template/strap/ComboStrap/
H A DBrandButton.php75 private $handle; variable in ComboStrap\\BrandButton
194 string $handle = null, argument
200 ->setHandle($handle)
256 if ($this->handle === null) {
259 $templateData[Tag\FollowTag::HANDLE_ATTRIBUTE] = $this->handle;
628 public function setHandle(string $handle): BrandButton argument
630 $this->handle = $handle;
H A DBrandTag.php216 $handle = $brandAttributes->getValueAndRemoveIfPresent(Tag\FollowTag::HANDLE_ATTRIBUTE);
217 if ($handle !== null) {
218 $brandButton->setHandle($handle);
/template/strap/vendor/symfony/process/Pipes/
H A DWindowsPipes.php196 foreach ($this->fileHandles as $type => $handle) {
197 ftruncate($handle, 0);
198 fclose($handle);
/template/strap/action/
H A Dajax.php36 ApiRouter::handle($event);
/template/gtopia/
Dsystem.css366 .draggable a.tabledrag-handle {
374 a.tabledrag-handle:hover {
377 a.tabledrag-handle .handle {
383 a.tabledrag-handle-hover .handle {
/template/graphy/css/
Dgraphy-print.css18 #infinite-handle,
/template/strap/syntax/
H A Danalytics.php85 function handle($match, $state, $pos, Doku_Handler $handler) function in syntax_plugin_combo_analytics
H A Dxmlinlineemptytag.php64 function handle($match, $state, $pos, Doku_Handler $handler): array function in syntax_plugin_combo_xmlinlineemptytag
H A Dxmlblockemptytag.php71 function handle($match, $state, $pos, Doku_Handler $handler): array function in syntax_plugin_combo_xmlblockemptytag
H A Dxmlblocktag.php143 function handle($match, $state, $pos, Doku_Handler $handler): array function in syntax_plugin_combo_xmlblocktag
H A Dmath.php93 public function handle($match, $state, $pos, Doku_Handler $handler) function in syntax_plugin_combo_math
H A Dedit.php100 function handle($match, $state, $pos, Doku_Handler $handler): array function in syntax_plugin_combo_edit

1234567