Home
last modified time | relevance | path

Searched refs:prefix (Results 26 – 50 of 458) sorted by relevance

12345678910>>...19

/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/Constraint/
H A DStringStartsWith.php20 protected $prefix; variable in PHPUnit_Framework_Constraint_StringStartsWith
23 * @param string $prefix
25 public function __construct($prefix) argument
28 $this->prefix = $prefix;
41 return strpos($other, $this->prefix) === 0;
51 return 'starts with "' . $this->prefix . '"';
/plugin/quickstats/scripts/php-inet6_1.0.2/
H A Dinet6.php92 * @param integer $prefix The prefix size, an integer between 1 and 127 (inclusive)
95 function inet6_prefix_to_mask($prefix) argument
98 $prefix = intval($prefix);
99 if ($prefix < 0 || $prefix > 128) return false;
101 for ($i = 0; $i < $prefix; $i++) $mask .= '1';
117 * @param integer $prefix The prefix size, an integer between 1 and 127 (inclusive)
120 function inet6_to_range($addr, $prefix) argument
122 $size = 128 - $prefix;
125 $prefix = gmp_and($addr, $mask);
126 $start = gmp_strval(gmp_add($prefix, '0x1'), 16);
[all …]
/plugin/bibtex/OSBib/create/
H A DSESSION.php70 function getArray($prefix) argument
72 $prefix .= '_';
75 if(preg_match("/^$prefix(.*)/", $key, $matches))
83 function writeArray($row, $prefix = FALSE) argument
89 if($prefix)
91 if(!$this->setVar($prefix . '_' . $key, $value))
103 function clearArray($prefix) argument
105 $prefix .= '_';
108 if(preg_match("/^$prefix/", $key))
/plugin/findologicxmlexport/vendor/jms/metadata/src/Driver/
H A DFileLocator.php24 foreach ($this->dirs as $prefix => $dir) {
25 if ('' !== $prefix && 0 !== strpos($class->getNamespaceName(), $prefix)) {
29 $len = '' === $prefix ? 0 : strlen($prefix) + 1;
45 foreach ($this->dirs as $prefix => $dir) {
51 $nsPrefix = '' !== $prefix ? $prefix . '\\' : '';
/plugin/findologicxmlexport/vendor/jms/metadata/src/Cache/
H A DDoctrineCacheAdapter.php18 private $prefix; variable in Metadata\\Cache\\DoctrineCacheAdapter
24 public function __construct(string $prefix, Cache $cache) argument
26 $this->prefix = $prefix;
35 $cache = $this->cache->fetch($this->prefix . $class);
44 $this->cache->save($this->prefix . $metadata->name, $metadata);
52 $this->cache->delete($this->prefix . $class);
H A DPsrCacheAdapter.php15 private $prefix; variable in Metadata\\Cache\\PsrCacheAdapter
27 public function __construct(string $prefix, CacheItemPoolInterface $pool) argument
29 $this->prefix = $prefix;
38 $this->lastItem = $this->pool->getItem(strtr($this->prefix . $class, '\\', '.'));
48 $key = strtr($this->prefix . $metadata->name, '\\', '.');
62 $this->pool->deleteItem(strtr($this->prefix . $class, '\\', '.'));
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DPrefix.php8 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-prefix-query.html
13 * @param array $prefix OPTIONAL Calls setRawPrefix with the given $prefix array
15 public function __construct(array $prefix = []) argument
17 $this->setRawPrefix($prefix);
22 * values for a prefix have to be set.
24 * @param array $prefix Prefix array
28 public function setRawPrefix(array $prefix): self argument
30 return $this->setParams($prefix);
34 * Adds a prefix t
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DNamePrettifier.php19 protected $prefix = 'Test'; variable in PHPUnit_Util_TestDox_NamePrettifier
47 if ($this->prefix !== null &&
48 $this->prefix == substr($name, 0, strlen($this->prefix))) {
49 $title = substr($title, strlen($this->prefix));
126 * @param string $prefix
128 public function setPrefix($prefix) argument
130 $this->prefix = $prefix;
/plugin/findologicxmlexport/vendor/hoa/consistency/Test/Unit/
H A DAutoloader.php57 $prefix = 'Foo\Bar\\',
62 $autoloader->addNamespace($prefix, $baseDirectoryA),
66 ->boolean($autoloader->hasBaseDirectory($prefix))
68 ->array($autoloader->getBaseDirectories($prefix))
80 $prefix = 'Foo\Bar\\',
85 $autoloader->addNamespace($prefix, $baseDirectoryA),
89 ->boolean($autoloader->hasBaseDirectory($prefix))
91 ->array($autoloader->getBaseDirectories($prefix))
103 $prefix = '\\\\Foo\Bar',
119 $prefix = 'Foo\Bar\\',
[all …]
/plugin/swiftmail/Swift/Cache/
H A DDisk.php30 protected $prefix; variable in Swift_Cache_Disk
42 $this->prefix = md5(uniqid(microtime(), true));
59 $handle = fopen(self::$save_path . "/" . $this->prefix . $key, "ab");
64 …self::$save_path . "/" . $this->prefix . $key . "] but failed. Check the permissions, or don't us…
74 @unlink(self::$save_path . "/" . $this->prefix . $key);
83 return file_exists(self::$save_path . "/" . $this->prefix . $key);
98 $this->open[$key] = fopen(self::$save_path . "/" . $this->prefix . $key, "rb");
124 $list = glob(self::$save_path . "/" . $this->prefix . "*");
/plugin/findologicxmlexport/vendor/twig/twig/src/Profiler/Dumper/
H A DBaseDumper.php28 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) 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);
/plugin/jplayer/vendor/kriswallsmith/assetic/src/Assetic/Util/
H A DFilesystemUtils.php56 * @param string $prefix A prefix for the directory name
60 public static function createThrowAwayDirectory($prefix) argument
62 $directory = self::getTemporaryDirectory().DIRECTORY_SEPARATOR.uniqid('assetic_'.$prefix);
71 * @param string $prefix A prefix for the file name
75 public static function createTemporaryFile($prefix) argument
77 return tempnam(self::getTemporaryDirectory(), 'assetic_'.$prefix);
/plugin/combo/vendor/symfony/yaml/
H A DDumper.php52 $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).':' : '-', '', $blockIndentationIndicator, $blockChompingIndicator);
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->getTag());
107 $output .= sprintf("\n%s%s%s", $prefix, str_repeat(' ', $this->indentation), $row);
132 $prefix,
143 private function dumpTaggedValue(TaggedValue $value, int $inline, int $indent, int $flags, string $prefix): string argument
145 $output = sprintf('%s!%s', $prefix
[all...]
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Sheets/
H A DChartCustomNumberFormatOptions.php25 public $prefix; variable in Google\\Service\\Sheets\\ChartCustomNumberFormatOptions
34 public function setPrefix($prefix) argument
36 $this->prefix = $prefix;
43 return $this->prefix;
/plugin/encryptedpasswords/script/
H A DEditorHandling.js29 const prefix = form.prefix.value;
36 !prefix.match(re) &&
53 form.prefix.value = await this.decryptSyntax(prefix, passphrase);
95 const prefix = e.target.form.prefix.value;
102 !prefix.match(re) &&
122 e.target.form.prefix.value = await this.encryptSyntax(prefix, passphras
[all...]
/plugin/jplayer/vendor/symfony/process/
H A DProcessBuilder.php33 private $prefix = []; variable in Symfony\\Component\\Process\\ProcessBuilder
75 * @param string|array $prefix A command prefix or an array of command prefixes
79 public function setPrefix($prefix) argument
81 $this->prefix = \is_array($prefix) ? $prefix : [$prefix];
261 if (0 === \count($this->prefix) && 0 === \count($this->arguments)) {
265 $arguments = array_merge($this->prefix, $this->arguments);
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Baremetalsolution/
H A DSchedule.php29 public $prefix; variable in Google\\Service\\Baremetalsolution\\Schedule
52 public function setPrefix($prefix) argument
54 $this->prefix = $prefix;
61 return $this->prefix;
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/Cache/
H A DDisk.php26 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;
58 * taking into account the cache path, optional prefix,
68 $this->prefix . $name . $this->suffix;
/plugin/findologicxmlexport/vendor/hoa/consistency/
H A DAutoloader.php61 * @param string $prefix Namespace prefix.
67 public function addNamespace($prefix, $baseDirectory, $prepend = false) argument
69 $prefix = trim($prefix, '\\') . '\\';
72 if (false === isset($this->_namespacePrefixesToBaseDirectories[$prefix])) {
73 $this->_namespacePrefixesToBaseDirectories[$prefix] = [];
78 $this->_namespacePrefixesToBaseDirectories[$prefix],
83 $this->_namespacePrefixesToBaseDirectories[$prefix],
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/Standards/PSR2/Sniffs/Methods/
H A DMethodDeclarationSniff.php80 $prefix = $stackPtr;
81 …while (($prefix = $phpcsFile->findPrevious(PHP_CodeSniffer_Tokens::$methodPrefixes, ($prefix - 1),…
82 switch ($tokens[$prefix]['code']) {
84 $static = $prefix;
87 $abstract = $prefix;
90 $final = $prefix;
93 $visibility = $prefix;
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudRun/
H A DEnvFromSource.php27 public $prefix; variable in Google\\Service\\CloudRun\\EnvFromSource
48 public function setPrefix($prefix) argument
50 $this->prefix = $prefix;
57 return $this->prefix;
/plugin/dokucrypt2/
H A DOLDER_VERSIONS.md25 - if (field.form.prefix) {
26 - // we need to look in prefix context
27 - opts.push(field.form.prefix.value);
29 + //if (field.form.prefix) { // Dokucrypt Plugin Mod
30 + if (field.form && field.form.prefix) { // Dokucrypt Plugin Mod
31 + // we need to look in prefix context
32 + opts.push(field.form.prefix.value);
46 3. Inside that section (function), find: if (field.form.prefix) {
47 4. Change it to: if (field.form && field.form.prefix) {
/plugin/prosemirror/parser/
H A DImageNode.php109 $prefix = '' argument
111 $node->attr($prefix . 'src', ml($src));
112 $node->attr($prefix . 'title', $title);
127 $node->attr($prefix . 'class', $class);
128 $node->attr($prefix . 'align', $align);
129 $node->attr($prefix . 'width', $width);
130 $node->attr($prefix . 'height', $height);
131 $node->attr($prefix . 'id', $src);
132 $node->attr($prefix . 'cache', $cache);
133 $node->attr($prefix
[all...]
/plugin/davcal/vendor/sabre/dav/tests/Sabre/DAVACL/PrincipalBackend/
H A DMock.php38 function getPrincipalsByPrefix($prefix) { argument
40 $prefix = trim($prefix, '/');
41 if ($prefix) $prefix .= '/';
46 if ($prefix && strpos($principal['uri'], $prefix) !== 0) continue;
/plugin/openid/Auth/OpenID/
H A DPredisStore.php40 protected $prefix; variable in Auth_OpenID_PredisStore
46 * @param string $prefix Prefix for all keys stored to the Redis
48 function __construct(\Predis\Client $redis, $prefix = '') argument
50 $this->prefix = $prefix;
177 return $this->prefix .
187 return $this->prefix .
197 return $this->prefix .

12345678910>>...19