| /plugin/asciidocjs/node_modules/async/internal/ |
| D | DoublyLinkedList.js | 12 this.head = this.tail = null; 17 if (node.prev) node.prev.next = node.next;else this.head = node.next; 26 while (this.head) this.shift(); 41 if (node.prev) node.prev.next = newNode;else this.head = newNode; 47 if (this.head) this.insertBefore(this.head, node);else setInitial(this, node); 55 return this.head && this.removeLink(this.head); 67 var cur = this.head; 75 var curr = this.head; 90 dll.head = dll.tail = node;
|
| /plugin/statdisplay/helper/ |
| D | table.php | 152 $this->head($title, 11); 156 $this->head($this->getLang($by)); 157 $this->head($this->getLang('hits'), 2); 158 $this->head($this->getLang('media'), 2); 159 $this->head($this->getLang('pages'), 2); 160 $this->head($this->getLang('visitors'), 2); 161 $this->head($this->getLang('traffic'), 2); 204 $this->head(sprintf($this->getLang('t_statisticMonth'), $date), 3); 233 $this->head(''); 234 $this->head($this->getLang('avg')); [all …]
|
| /plugin/html2pdf/html2pdf/html2ps/ |
| D | font.class.php | 79 $head = $font->getTable('head'); 95 … $widths[$code] = floor($hmtx->_hMetrics[$glyphIndex]['advanceWidth']*1000/$head->_unitsPerEm); 108 $this->ascender = floor($hhea->_ascender*1000/$head->_unitsPerEm); 109 $this->descender = floor($hhea->_descender*1000/$head->_unitsPerEm); 110 $this->bbox = array($head->_xMin*1000/$head->_unitsPerEm, 111 $head->_yMin*1000/$head->_unitsPerEm, 112 $head->_xMax*1000/$head->_unitsPerEm, 113 $head->_yMax*1000/$head->_unitsPerEm); 114 $this->underline_position = floor($post->_underlinePosition*1000/$head->_unitsPerEm); 115 $this->underline_thickness = floor($post->_underlineThickness*1000/$head->_unitsPerEm);
|
| D | pdf.fpdf.makefont.php | 17 $head =& $font->getTable('head'); 48 $widths[] = floor($hmtx->_hMetrics[$realIndex]['advanceWidth']*1000/$head->_unitsPerEm); 83 $font_info['Ascender'] = floor($hhea->_ascender*1000/$head->_unitsPerEm); 84 $font_info['Descender'] = floor($hhea->_descender*1000/$head->_unitsPerEm); 85 $font_info['UnderlineThickness'] = floor($post->_underlineThickness*1000/$head->_unitsPerEm); 86 $font_info['UnderlinePosition'] = floor($post->_underlinePosition*1000/$head->_unitsPerEm); 87 $font_info['FontBBox'] = array($head->_xMin*1000/$head->_unitsPerEm, 88 $head->_yMin*1000/$head->_unitsPerEm, 89 $head->_xMax*1000/$head->_unitsPerEm, 90 $head->_yMax*1000/$head->_unitsPerEm);
|
| /plugin/asciidocjs/node_modules/core-js/modules/ |
| D | _microtask.js | 9 var head, last, notify; 14 while (head) { 15 fn = head.fn; 16 head = head.next; 20 if (head) notify(); 64 if (!head) { 65 head = task;
|
| /plugin/asciidocjs/node_modules/core-js/library/modules/ |
| D | _microtask.js | 9 var head, last, notify; 14 while (head) { 15 fn = head.fn; 16 head = head.next; 20 if (head) notify(); 64 if (!head) { 65 head = task;
|
| /plugin/findologicxmlexport/vendor/hoa/consistency/ |
| D | Xcallable.php | 183 $head = null; 186 $head = &$arguments[0]; 191 if (null !== $head && 194 if ($head instanceof Event\Bucket) { 195 $head = $head->getData(); 198 switch ($type = gettype($head)) { 200 if (1 === strlen($head)) { 222 $head = $head . "\n";
|
| /plugin/fckg/fckeditor/editor/js/ |
| D | fckadobeair.js | 34 var head ; 38 head = heads[0] ; 41 head = doc.createElement( 'head' ) ; 42 doc.documentElement.insertBefore( head, doc.documentElement.firstChild ) ; 45 return head ; 96 var head = getDocumentHead( doc ) ; 99 head.appendChild( doc.createElement('base') ).href = baseLocation ; 122 var head = getDocumentHead( doc ) ; 124 head.appendChild( doc.createElement('base') ).href = window.document.location ;
|
| /plugin/podcast/ |
| D | helper.php | 58 $head = "GET ".@$url_info['path']."?".@$url_info['query']." HTTP/1.0\r\n"; 60 $head .= "Host: ".@$url_info['host'].":".$url_info['port']."\r\n"; } 62 $head .= "Host: ".@$url_info['host']."\r\n"; } 63 $head .= "Connection: Close\r\n"; 64 $head .= "Accept: */*\r\n"; 65 $head .= $refererline; 66 $head .= $authline; 67 $head .= "\r\n"; 68 fputs($fp, $head);
|
| /plugin/findologicxmlexport/vendor/hoa/protocol/Node/ |
| D | Library.php | 63 $head = $queue; 66 $head = substr($head, 0, $pos); 75 $out[] = "\r" . $part . strtolower($head) . $queue; 87 $head = substr($part, 0, $pos); 89 $out[] = $head . strtolower($tail);
|
| /plugin/metaheaders/ |
| D | action.php | 55 $head =& $event->data; 65 foreach( $head as $outerType => $list ) { 81 $headerVal = trim($head[$outerType][$i][$type] ?? ''); 84 $headerVal = trim($head[$outerType][$i][$type] ?? ''); 94 unset($head[$outerType][$i]); 136 if (!$skip) $head[$type][] = $header;
|
| /plugin/mdpage/vendor/cebe/markdown/block/ |
| D | TableTrait.php | 102 $head = ''; 114 $head .= "<tr>$tds</tr>\n"; 120 return $this->composeTable($head, $body); 133 * @param string $head table head HTML. 138 protected function composeTable($head, $body) argument 140 return "<table>\n<thead>\n$head</thead>\n<tbody>\n$body</tbody>\n</table>\n";
|
| /plugin/codemirror/dist/keymaps/ |
| D | sublime.min.js | 1 …head,b);else return b<0?c.from():c.to()})}b.goSubwordLeft=function(a){e(a,-1)};b.goSubwordRight=fu… property
|
| /plugin/combo/resources/snippet/js/ |
| H A D | combo-loader.js | 12 let head = document.querySelector("head"); 13 head.appendChild(script); 22 let head = document.querySelector("head"); 23 head.appendChild(link);
|
| /plugin/popupviewer/ |
| D | action.php | 55 $head = array( 73 Event::createAndTrigger('POPUPVIEWER_DOKUWIKI_STARTED',$head,null,true); 90 $head['popupscript'][] = array( 'type'=>'text/popupscript', '_data'=> $script ); 109 if ( !empty($head['popupscript']) ) { 110 Event::createAndTrigger('TPL_METAHEADER_OUTPUT',$head,'_tpl_metaheaders_action',true);
|
| /plugin/miniblog/helper/ |
| D | entry.php | 45 $head = false; 49 if ($head === false) { 50 $head = $ins[$i][1][0]; 71 return array($head, $html);
|
| /plugin/combo/resources/theme/default/pages/templates/ |
| H A D | index.hbs | 3 <head> 5 {{> head-partial }} 6 {{> page-side-md-collapsable-head }} 7 </head>
|
| H A D | app-login.hbs | 3 <head> 5 {{> head-partial }} 6 </head>
|
| H A D | blank.hbs | 3 <head> 5 {{> head-partial }} 6 </head>
|
| H A D | app-resendpwd.hbs | 3 <head> 5 {{> head-partial }} 6 </head>
|
| H A D | app-register.hbs | 3 <head> 5 {{> head-partial }} 6 </head>
|
| /plugin/datatables/assets/datatables.net/css/ |
| D | dataTables.semanticui.min.css | 1 …head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTa…
|
| D | dataTables.foundation.css | 201 table.dataTable thead th.dt-head-left, 202 table.dataTable thead td.dt-head-left, 203 table.dataTable tfoot th.dt-head-left, 204 table.dataTable tfoot td.dt-head-left { 207 table.dataTable thead th.dt-head-center, 208 table.dataTable thead td.dt-head-center, 209 table.dataTable tfoot th.dt-head-center, 210 table.dataTable tfoot td.dt-head-center { 213 table.dataTable thead th.dt-head-right, 214 table.dataTable thead td.dt-head-right, [all …]
|
| D | dataTables.semanticui.css | 201 table.dataTable thead th.dt-head-left, 202 table.dataTable thead td.dt-head-left, 203 table.dataTable tfoot th.dt-head-left, 204 table.dataTable tfoot td.dt-head-left { 207 table.dataTable thead th.dt-head-center, 208 table.dataTable thead td.dt-head-center, 209 table.dataTable tfoot th.dt-head-center, 210 table.dataTable tfoot td.dt-head-center { 213 table.dataTable thead th.dt-head-right, 214 table.dataTable thead td.dt-head-right, [all …]
|
| D | dataTables.foundation.min.css | 1 …head-left,table.dataTable thead td.dt-head-left,table.dataTable tfoot th.dt-head-left,table.dataTa…
|