Home
last modified time | relevance | path

Searched refs:DIRECTORY_SEPARATOR (Results 1 – 16 of 16) sorted by relevance

/template/strap/vendor/symfony/process/
H A DExecutableFinder.php72 if ('\\' === \DIRECTORY_SEPARATOR) {
78 …if (@is_file($file = $dir.\DIRECTORY_SEPARATOR.$name.$suffix) && ('\\' === \DIRECTORY_SEPARATOR ||…
H A DPhpExecutableFinder.php38 $command = '\\' === \DIRECTORY_SEPARATOR ? 'where' : 'command -v --';
77 …if (@is_executable($php = \PHP_BINDIR.('\\' === \DIRECTORY_SEPARATOR ? '\\php.exe' : '/php')) && !…
82 if ('\\' === \DIRECTORY_SEPARATOR) {
H A DProcess.php157 … if (null === $this->cwd && (\defined('ZEND_THREAD_SAFE') || '\\' === \DIRECTORY_SEPARATOR)) {
166 $this->useFileHandles = '\\' === \DIRECTORY_SEPARATOR;
311 …$env += '\\' === \DIRECTORY_SEPARATOR ? array_diff_ukey($this->env, $env, 'strcasecmp') : $this->e…
314 …$env += '\\' === \DIRECTORY_SEPARATOR ? array_diff_ukey($this->getDefaultEnv(), $env, 'strcasecmp'…
319 if ('\\' !== \DIRECTORY_SEPARATOR) {
327 if ('\\' === \DIRECTORY_SEPARATOR) {
432 …$running = $this->isRunning() && ('\\' === \DIRECTORY_SEPARATOR || $this->processPipes->areOpen());
433 $this->readPipes($running, '\\' !== \DIRECTORY_SEPARATOR || !$running);
473 … $running = '\\' === \DIRECTORY_SEPARATOR ? $this->isRunning() : $this->processPipes->areOpen();
474 … $output = $this->processPipes->readAndWrite($running, '\\' !== \DIRECTORY_SEPARATOR || !$running);
[all …]
/template/twigstarter/vendor/composer/
DClassLoader.php496 $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
505 $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
517 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
526 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
529 $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
536 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
546 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/template/strap/vendor/composer/
H A DClassLoader.php495 $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext;
504 $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1);
516 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) {
525 . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR);
528 $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext;
535 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
545 if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) {
/template/strap/vendor/php-webdriver/webdriver/lib/Firefox/
H A DFirefoxProfile.php120 copy($this->rdf_file, $temp_dir . DIRECTORY_SEPARATOR . 'mimeTypes.rdf');
128 mkdir($temp_dir . DIRECTORY_SEPARATOR . $dirname);
134 $target_dir = $temp_dir . DIRECTORY_SEPARATOR . $dirname . DIRECTORY_SEPARATOR
163 $temp_dir . DIRECTORY_SEPARATOR
/template/codowik/
Dbootstrap.php10 $filepath = DOKU_TPL . 'js' . DIRECTORY_SEPARATOR . $filename;
Dmain.php16 require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR .'bootstrap.php');
Ddetail.php16 require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR .'bootstrap.php');
/template/twigstarter/vendor/symfony/polyfill-php72/
DPhp72.php72 if ('\\' === \DIRECTORY_SEPARATOR) {
142 if ('\\' === \DIRECTORY_SEPARATOR) {
Dbootstrap.php34 if ('\\' === \DIRECTORY_SEPARATOR && !function_exists('sapi_windows_vt100_support')) {
/template/strap/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DDisk.php67 return $this->path . DIRECTORY_SEPARATOR .
/template/twigstarter/vendor/twig/twig/src/Loader/
DFilesystemLoader.php39 $this->rootPath = (null === $rootPath ? getcwd() : $rootPath).\DIRECTORY_SEPARATOR;
41 $this->rootPath = $realPath.\DIRECTORY_SEPARATOR;
/template/strap/vendor/php-webdriver/webdriver/lib/Remote/Service/
H A DDriverService.php202 if (is_executable($path . DIRECTORY_SEPARATOR . $filename)) {
/template/strap/ComboStrap/
H A DLocalPath.php79 private $sep = DIRECTORY_SEPARATOR;
H A DWikiPath.php45 public const DIRECTORY_SEPARATOR = "/"; define in ComboStrap\\WikiPath