| /template/ad-hominem/ |
| H A D | my_template.php | 280 * @param string $prefix inserted before each line 284 function my_breadcrumbs($prefix = '') { argument 294 echo $prefix . '<nav id="navBreadCrumbs">'.NL; 295 echo $prefix . DOKU_TAB . '<h4>' . $lang['breadcrumb'] . '</h4>'.NL; 296 echo $prefix . DOKU_TAB . '<ol reversed>'.NL; 302 …echo $prefix . DOKU_TAB . DOKU_TAB . '<li' . ($i == $last ? ' class="current"' : '') . '><bdi>' . … 304 echo $prefix . DOKU_TAB . '</ol>'.NL; 305 echo $prefix . '</nav>'.NL; 319 * @param string $prefix to be added before each line 322 function my_youarehere($prefix = '') { argument [all …]
|
| /template/twigstarter/vendor/composer/ |
| D | ClassLoader.php | 178 * @param string $prefix The prefix 184 public function add($prefix, $paths, $prepend = false) argument 186 if (!$prefix) { 202 $first = $prefix[0]; 203 if (!isset($this->prefixesPsr0[$first][$prefix])) { 204 $this->prefixesPsr0[$first][$prefix] = (array) $paths; 209 $this->prefixesPsr0[$first][$prefix] = array_merge( 211 $this->prefixesPsr0[$first][$prefix] 214 $this->prefixesPsr0[$first][$prefix] = array_merge( 215 $this->prefixesPsr0[$first][$prefix], [all …]
|
| /template/strap/vendor/composer/ |
| H A D | ClassLoader.php | 174 * @param string $prefix The prefix 180 public function add($prefix, $paths, $prepend = false) argument 183 if (!$prefix) { 199 $first = $prefix[0]; 200 if (!isset($this->prefixesPsr0[$first][$prefix])) { 201 $this->prefixesPsr0[$first][$prefix] = $paths; 206 $this->prefixesPsr0[$first][$prefix] = array_merge( 208 $this->prefixesPsr0[$first][$prefix] 211 $this->prefixesPsr0[$first][$prefix] = array_merge( 212 $this->prefixesPsr0[$first][$prefix], [all …]
|
| /template/twigstarter/vendor/twig/twig/src/Profiler/Dumper/ |
| D | BaseDumper.php | 28 abstract protected function formatTemplate(Profile $profile, $prefix); argument 30 abstract protected function formatNonTemplate(Profile $profile, $prefix); argument 34 private function dumpProfile(Profile $profile, $prefix = '', $sibling = false): string argument 41 $start = $this->formatTemplate($profile, $prefix); 43 $start = $this->formatNonTemplate($profile, $prefix); 45 $prefix .= $sibling ? '│ ' : ' '; 58 $str .= $this->dumpProfile($p, $prefix, $i + 1 !== $nCount);
|
| D | TextDumper.php | 21 protected function formatTemplate(Profile $profile, $prefix) argument 23 return sprintf('%s└ %s', $prefix, $profile->getTemplate()); 26 protected function formatNonTemplate(Profile $profile, $prefix) argument 28 …return sprintf('%s└ %s::%s(%s)', $prefix, $profile->getTemplate(), $profile->getType(), $profile->…
|
| D | HtmlDumper.php | 33 protected function formatTemplate(Profile $profile, $prefix) argument 35 …return sprintf('%s└ <span style="background-color: %s">%s</span>', $prefix, self::$colors['templat… 38 protected function formatNonTemplate(Profile $profile, $prefix) argument 40 …return sprintf('%s└ %s::%s(<span style="background-color: %s">%s</span>)', $prefix, $profile->getT…
|
| /template/strap/vendor/symfony/yaml/ |
| H A D | Dumper.php | 52 $prefix = $indent ? str_repeat(' ', $indent) : ''; 60 $output .= $prefix.Inline::dump($input, $flags); 62 $output .= $this->dumpTaggedValue($input, $inline, $indent, $flags, $prefix); 84 …$output .= sprintf('%s%s%s |%s%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', '',… 90 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row); 98 …$output .= sprintf('%s%s !%s', $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $value-… 107 … $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row); 132 $prefix, 143 …n dumpTaggedValue(TaggedValue $value, int $inline, int $indent, int $flags, string $prefix): string argument 145 $output = sprintf('%s!%s', $prefix ? $prefix.' ' : '', $value->getTag()); [all …]
|
| /template/strap/vendor/salesforce/handlebars-php/src/Handlebars/Cache/ |
| H A D | Disk.php | 26 private $prefix = ''; variable in Handlebars\\Cache\\Disk 33 * @param string $prefix optional file prefix, defaults to empty string 39 public function __construct($path, $prefix = '', $suffix = '') argument 52 $this->prefix = $prefix; 68 $this->prefix . $name . $this->suffix;
|
| /template/strap/vendor/php-webdriver/webdriver/lib/Firefox/ |
| H A D | FirefoxProfile.php | 200 $prefix = ''; 205 $prefix = $key . ':'; // Separate the namespace from the name. 213 preg_match('#<' . $prefix . 'id>([^<]+)</' . $prefix . 'id>#', $xml->asXML(), $matches); 230 * @param string $prefix Prefix of the temp directory. 235 private function createTempDirectory($prefix = '') argument 237 $temp_dir = tempnam(sys_get_temp_dir(), $prefix);
|
| /template/bootstrap3/assets/iconify/ |
| D | iconify.min.js | 13 …prefix]?(this._resolved[t.prefix]=Object.create(null),this._icons[t.prefix]=Object.create(null),th…
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Visitor/ |
| H A D | Overload.php | 25 * @param string $prefix 28 protected function getMethodByClass(Ast\Node $object, string $prefix = 'visit'): ?callable { argument 29 $method = $prefix.substr(str_replace('\\', '', get_class($object)), 9);
|
| /template/mikio/ |
| H A D | mikio.php | 968 * @param string $prefix Sidebar prefix to use when searching. 971 public function sidebarExists(string $prefix = ''): bool argument 975 if (strcasecmp($prefix, 'left') === 0) { 976 $prefix = ''; 979 return $this->pageExists($conf['sidebar' . $prefix]); 986 * @param string $prefix Sidebar prefix to use when searching. 991 …public function includeSidebar(string $prefix = '', bool $print = true, bool $parse = true): string argument 996 $confPrefix = preg_replace('/[^a-zA-Z0-9]/', '', ucwords($prefix)); 997 $prefix = preg_replace('/[^a-zA-Z0-9]/', '', strtolower($prefix)); 1002 if (strcasecmp($prefix, 'left') === 0) { [all …]
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Ast/Selector/Simple/ |
| H A D | Universal.php | 11 public function __construct(string $prefix) { argument 12 $this->namespacePrefix = $prefix;
|
| H A D | Type.php | 12 public function __construct(string $name, string $prefix = '') { argument 13 $this->namespacePrefix = $prefix;
|
| /template/strap/vendor/carica/phpcss/src/PhpCss/Parser/ |
| H A D | Sequence.php | 100 [$prefix, $name] = explode('|', $token->content); 102 $prefix = ''; 106 return new Ast\Selector\Simple\Universal($prefix); 108 return new Ast\Selector\Simple\Type($name, $prefix);
|
| H A D | PseudoClass.php | 172 [$prefix, $name] = explode('|', $token->content); 174 $prefix = ''; 178 return new Ast\Selector\Simple\Universal($prefix); 180 return new Ast\Selector\Simple\Type($name, $prefix);
|
| /template/strap/ComboStrap/ |
| H A D | Outline.php | 546 $prefix = SiteConfig::getConfValue(self::CONF_OUTLINE_NUMBERING_PREFIX, ""); 587 $mainContainerSelector h2.$outlineClass::before { content: "$prefix" counter(h2, $level2CounterStyl… 588 $mainContainerSelector h3.$outlineClass::before { content: "$prefix" counter(h2, $level2CounterStyl… 589 $mainContainerSelector h4.$outlineClass::before { content: "$prefix" counter(h2, $level2CounterStyl… 590 $mainContainerSelector h5.$outlineClass::before { content: "$prefix" counter(h2, $level2CounterStyl… 591 $mainContainerSelector h6.$outlineClass::before { content: "$prefix" counter(h2, $level2CounterStyl… 613 $tocSelector li a::before { content: "$prefix" counter(toc2, $level2CounterStyle) "$suffix\A"; } 614 $tocSelector li li a::before { content: "$prefix" counter(toc2, $level2CounterStyle) "$counterSepar… 615 $tocSelector li li li a::before { content: "$prefix" counter(toc2, $level2CounterStyle) "$counterSe… 616 $tocSelector li li li li a::before { content: "$prefix" counter(toc2, $level2CounterStyle) "$counte… [all …]
|
| H A D | LogUtility.php | 140 $prefix = PluginUtility::$PLUGIN_NAME; 142 $prefix .= ' - ' . $canonical; 144 $msg = $prefix . ' - ' . $msg;
|
| H A D | StringUtility.php | 243 public static function startWiths($string, $prefix) argument 245 return strrpos($string, $prefix) === 0;
|
| /template/bootstrap3/assets/iconify/plugins/ |
| D | fa.js | 68 function finder(selector, prefix) { argument 84 return prefix + ':' + item.slice(3);
|
| /template/strap/ComboStrap/Xml/ |
| H A D | XmlDocument.php | 458 $localName = $node->prefix; 491 foreach ($this->getNamespaces() as $prefix => $namespaceUri) { 496 if (!empty($prefix)) { 497 $result = $this->domXpath->registerNamespace($prefix, $namespaceUri); 499 …LogUtility::msg("Not able to register the prefix ($prefix) for the namespace uri ($namespaceUri)");
|
| /template/headstrong/ |
| D | Makefile | 31 $(GIT) checkout-index -a -f --prefix=$(STAGE)/ ; \
|
| /template/weltis/ |
| D | style.ini | 31 ; (with surrounding underscores removed, and the prefix @ini_ added)
|
| /template/sprintdoc/css/ |
| H A D | base_mixins.less | 150 .prefix { 188 .btn-prefix(@margin-top:.3rem) {
|
| /template/bootie/ |
| D | style.ini | 37 ; (with surrounding underscores removed, and the prefix @ini_ added)
|