Lines Matching refs:name

1573 		foreach ($this->services as $name) {
1574 if ($this->$name && $this->$name instanceof \Psr\Log\LoggerAwareInterface) {
1575 $this->$name->setLogger($logger);
1844 * name: file name (not necessarily the same as the file on FS)
1853 * 'name' => 'public_name.xml',
2766 $this->layers[$id] = ['name' => 'Layer ' . ($id)];
2805 $ohname = (isset($a['ohname']) ? $a['ohname'] : (isset($a['odd-header-name']) ? $a['odd-header-name'] : ''));
2806 $ehname = (isset($a['ehname']) ? $a['ehname'] : (isset($a['even-header-name']) ? $a['even-header-name'] : ''));
2807 $ofname = (isset($a['ofname']) ? $a['ofname'] : (isset($a['odd-footer-name']) ? $a['odd-footer-name'] : ''));
2808 $efname = (isset($a['efname']) ? $a['efname'] : (isset($a['even-footer-name']) ? $a['even-footer-name'] : ''));
3337 list($name, $c, $m, $y, $k) = preg_split("/\t/", $sc);
3342 $this->AddSpotColor($name, $c, $m, $y, $k);
3346 function AddSpotColor($name, $c, $m, $y, $k)
3348 $name = strtoupper(trim($name));
3349 if (!isset($this->spotColors[$name])) {
3351 $this->spotColors[$name] = ['i' => $i, 'c' => $c, 'm' => $m, 'y' => $y, 'k' => $k];
3352 $this->spotColorIDs[$i] = $name;
3859 'name' => '',
3916 if (empty($font['name']) || $font['originalsize'] != $ttfstat['size'] || $regenerate) {
3964 'name' => $font['name'],
4249 $this->fonts[$fontkey] = ['i' => $i, 'type' => 'core', 'name' => $this->CoreFonts[$fontkey], 'desc' => $desc, 'up' => $up, 'ut' => $ut, 'cw' => $cw];
9478 function Output($name = '', $dest = '')
9536 if (empty($name)) {
9537 $name = 'mpdf.pdf';
9567 header('Content-disposition: inline; filename="' . $name . '"');
9599 header('Content-Disposition: attachment; filename="' . $name . '"');
9606 $f = fopen($name, 'wb');
9609 throw new \Mpdf\MpdfException(sprintf('Unable to create output file %s', $name));
10311 $name = $n[1];
10313 $name = $ohname;
10315 if (isset($this->pageHTMLheaders[$name])) {
10316 $this->HTMLHeader = $this->pageHTMLheaders[$name];
10328 $name = $n[1];
10330 $name = $ehname;
10332 if (isset($this->pageHTMLheaders[$name])) {
10333 $this->HTMLHeaderE = $this->pageHTMLheaders[$name];
10345 $name = $n[1];
10347 $name = $ofname;
10349 if (isset($this->pageHTMLfooters[$name])) {
10350 $this->HTMLFooter = $this->pageHTMLfooters[$name];
10362 $name = $n[1];
10364 $name = $efname;
10366 if (isset($this->pageHTMLfooters[$name])) {
10367 $this->HTMLFooterE = $this->pageHTMLfooters[$name];
10769 function AddCIDFont($family, $style, $name, &$cw, $CMap, $registry, $desc)
10776 $name = str_replace(' ', '', $name);
10783 $this->fonts[$fontkey] = ['i' => $i, 'type' => 'Type0', 'name' => $name, 'up' => $up, 'ut' => 40, 'cw' => $cw, 'CMap' => $CMap, 'registry' => $registry, 'MissingWidth' => 1000, 'desc' => $desc];
10807 $name = 'MSungStd-Light-Acro';
10820 $this->AddCIDFont($family, '', $name, $cw, $CMap, $registry, $desc);
10821 $this->AddCIDFont($family, 'B', $name . ',Bold', $cw, $CMap, $registry, $desc);
10822 $this->AddCIDFont($family, 'I', $name . ',Italic', $cw, $CMap, $registry, $desc);
10823 $this->AddCIDFont($family, 'BI', $name . ',BoldItalic', $cw, $CMap, $registry, $desc);
10830 $name = 'STSongStd-Light-Acro';
10844 $this->AddCIDFont($family, '', $name, $cw, $CMap, $registry, $desc);
10845 $this->AddCIDFont($family, 'B', $name . ',Bold', $cw, $CMap, $registry, $desc);
10846 $this->AddCIDFont($family, 'I', $name . ',Italic', $cw, $CMap, $registry, $desc);
10847 $this->AddCIDFont($family, 'BI', $name . ',BoldItalic', $cw, $CMap, $registry, $desc);
10854 $name = 'KozMinPro-Regular-Acro';
10868 $this->AddCIDFont($family, '', $name, $cw, $CMap, $registry, $desc);
10869 $this->AddCIDFont($family, 'B', $name . ',Bold', $cw, $CMap, $registry, $desc);
10870 $this->AddCIDFont($family, 'I', $name . ',Italic', $cw, $CMap, $registry, $desc);
10871 $this->AddCIDFont($family, 'BI', $name . ',BoldItalic', $cw, $CMap, $registry, $desc);
10878 $name = 'HYSMyeongJoStd-Medium-Acro';
10892 $this->AddCIDFont($family, '', $name, $cw, $CMap, $registry, $desc);
10893 $this->AddCIDFont($family, 'B', $name . ',Bold', $cw, $CMap, $registry, $desc);
10894 $this->AddCIDFont($family, 'I', $name . ',Italic', $cw, $CMap, $registry, $desc);
10895 $this->AddCIDFont($family, 'BI', $name . ',BoldItalic', $cw, $CMap, $registry, $desc);
12636 function DefHeaderByName($name, $arr)
12638 if (!$name) {
12639 $name = '_nonhtmldefault';
12643 $this->pageHTMLheaders[$name]['html'] = $html;
12644 $this->pageHTMLheaders[$name]['h'] = $this->_getHtmlHeight($html);
12647 function DefFooterByName($name, $arr)
12649 if (!$name) {
12650 $name = '_nonhtmldefault';
12654 $this->pageHTMLfooters[$name]['html'] = $html;
12655 $this->pageHTMLfooters[$name]['h'] = $this->_getHtmlHeight($html);
12658 function SetHeaderByName($name, $side = 'O', $write = false)
12660 if (!$name) {
12661 $name = '_nonhtmldefault';
12663 $this->SetHTMLHeader($this->pageHTMLheaders[$name], $side, $write);
12666 function SetFooterByName($name, $side = 'O')
12668 if (!$name) {
12669 $name = '_nonhtmldefault';
12671 $this->SetHTMLFooter($this->pageHTMLfooters[$name], $side);
12674 function DefHTMLHeaderByName($name, $html)
12676 if (!$name) {
12677 $name = '_default';
12680 $this->pageHTMLheaders[$name]['html'] = $html;
12681 $this->pageHTMLheaders[$name]['h'] = $this->_getHtmlHeight($html);
12684 function DefHTMLFooterByName($name, $html)
12686 if (!$name) {
12687 $name = '_default';
12690 $this->pageHTMLfooters[$name]['html'] = $html;
12691 $this->pageHTMLfooters[$name]['h'] = $this->_getHtmlHeight($html);
12694 function SetHTMLHeaderByName($name, $side = 'O', $write = false)
12696 if (!$name) {
12697 $name = '_default';
12699 $this->SetHTMLHeader($this->pageHTMLheaders[$name], $side, $write);
12702 function SetHTMLFooterByName($name, $side = 'O')
12704 if (!$name) {
12705 $name = '_default';
12707 $this->SetHTMLFooter($this->pageHTMLfooters[$name], $side);
13336 if (preg_match('/name=[\'|\"](.*?)[\'|\"]/', $h[1][$i], $n)) {
13343 if (preg_match('/name=[\'|\"](.*?)[\'|\"]/', $f[1][$i], $n)) {
13400 // ? more accurate regexp that allows e.g. <a name="Silly <name>">
13786 // Increase allowed attribute name to 32 - cutting off "toc-even-header-name" etc.
14908 function SetPagedMediaCSS($name, $first, $oddEven)
14923 $name = strtoupper($name);
15032 if ($name) {
15033 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name])) {
15034 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name];
15060 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>RIGHT']) && $side == 'R') {
15061 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>RIGHT'];
15083 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>LEFT']) && $side == 'L') {
15084 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>LEFT'];
15106 if (isset($this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>FIRST']) && $first) {
15107 $zp = $this->cssManager->CSS['@PAGE>>NAMED>>' . $name . '>>PSEUDO>>FIRST'];
16095 if (isset($vetor[7]) and $vetor[7] != '') { // internal target: <a name="anyvalue">
18085 preg_match_all('/<meta [^>]*?(name|content)="([^>]*?)" [^>]*?(name|content)="([^>]*?)".*?>/si', $html, $aux);
18089 $name = ( strtoupper($firstattr[$i]) == "NAME" ) ? strtoupper($aux[2][$i]) : strtoupper($aux[4][$i]);
18091 switch ($name) {
23406 $toc_ohname = (isset($a['toc_ohname']) ? $a['toc_ohname'] : (isset($a['toc-odd-header-name']) ? $a['toc-odd-header-name'] : ''));
23407 $toc_ehname = (isset($a['toc_ehname']) ? $a['toc_ehname'] : (isset($a['toc-even-header-name']) ? $a['toc-even-header-name'] : ''));
23408 $toc_ofname = (isset($a['toc_ofname']) ? $a['toc_ofname'] : (isset($a['toc-odd-footer-name']) ? $a['toc-odd-footer-name'] : ''));
23409 $toc_efname = (isset($a['toc_efname']) ? $a['toc_efname'] : (isset($a['toc-even-footer-name']) ? $a['toc-even-footer-name'] : ''));
23427 $ohname = (isset($a['ohname']) ? $a['ohname'] : (isset($a['odd-header-name']) ? $a['odd-header-name'] : ''));
23428 $ehname = (isset($a['ehname']) ? $a['ehname'] : (isset($a['even-header-name']) ? $a['even-header-name'] : ''));
23429 $ofname = (isset($a['ofname']) ? $a['ofname'] : (isset($a['odd-footer-name']) ? $a['odd-footer-name'] : ''));
23430 $efname = (isset($a['efname']) ? $a['efname'] : (isset($a['even-footer-name']) ? $a['even-footer-name'] : ''));
23435 $toc_id = (isset($a['toc_id']) ? $a['toc_id'] : (isset($a['name']) ? $a['name'] : 0));
27073 // Fix self-closing tags that don't include a space between the tag name and the closing slash