Home
last modified time | relevance | path

Searched refs:prefix (Results 126 – 150 of 458) sorted by relevance

12345678910>>...19

/plugin/findologicxmlexport/vendor/sebastian/global-state/src/
H A DBlacklist.php123 foreach ($this->classNamePrefixes as $prefix) {
124 if (strpos($className, $prefix) === 0) {
/plugin/codeprettify/syntax/
H A Dcode.php124 $prefix = ($option == 0) ? 'no' : '';
130 return ($prefix or $suffix) ? $prefix.'linenums'.$suffix : '';
/plugin/upgrade/vendor/splitbrain/php-cli/src/
H A DBase.php24 /** @var array PSR-3 compatible loglevels and their prefix, color, output channel */
228 /** @var string $prefix */
231 list($prefix, $color, $channel) = $this->loglevel[$level];
232 if (!$this->colors->isEnabled()) $prefix = '';
235 $this->colors->ptln($prefix . $message, $color, $channel);
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DRemoteContentFetcher.php101 $prefix = '';
104 $prefix = 'ssl://';
113 if (!($fh = @fsockopen($prefix . $p['host'], $port, $errno, $errstr, $timeout))) {
/plugin/scrape/HTMLPurifier/ConfigSchema/schema/
H A DAttr.IDPrefixLocal.txt
/plugin/combo/vendor/carica/phpcss/src/PhpCss/Parser/
H A DPseudoClass.php172 [$prefix, $name] = explode('|', $token->content);
174 $prefix = '';
178 return new Ast\Selector\Simple\Universal($prefix);
180 return new Ast\Selector\Simple\Type($name, $prefix);
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dmodule.archive.tar.php74 $prefix = (isset($attr['prefix'] ) ? trim($attr['prefix'] ) : '');
79 if ($prefix) {
80 $name = $prefix.'/'.$name;
/plugin/struct/meta/
H A DQueryBuilder.php194 * @param string $prefix the prefix for the alias, helps with readability of the SQL
197 public function generateTableAlias($prefix = 'T') argument
201 return $prefix . $count;
/plugin/html2pdf/html2pdf/html2ps/
H A Dxhtml.autoclose.inc.php35 $prefix = substr($html,0,$offset);
42 $html = $prefix . $suffix;
/plugin/swiftmail/Swift/Message/
H A DAttachment.php50 public static function generateFileName($prefix="file") argument
52 return $prefix . (self::$fileId++);
/plugin/scrape/HTMLPurifier/ConfigSchema/
H A DValidator.php
/plugin/remotescript/lib/JsHttpRequest/debug/
H A DJsHttpRequest-script.js233 t._hash2query = function(content, prefix, queryText, queryElem) { argument
234 if (prefix == null) prefix = "";
243 var curPrefix = prefix? prefix + '[' + this.escape(k) + ']' : this.escape(k);
H A DJsHttpRequest-xml.js233 t._hash2query = function(content, prefix, queryText, queryElem) { argument
234 if (prefix == null) prefix = "";
243 var curPrefix = prefix? prefix + '[' + this.escape(k) + ']' : this.escape(k);
/plugin/accscounter/syntax/
H A Dcounter.php76 $prefix = '/^' . $checking . '$/';
77 if (preg_match($prefix, $clientIP)) $excluded = TRUE;
78 if (preg_match($prefix, $remotehost)) $excluded = TRUE;
135 $prefix = '/^' . $checking . '$/';
136 if (preg_match($prefix, $clientIP)) $excluded = FALSE;
/plugin/evesso/
H A Dhelper.php142 foreach ($names as $name => $prefix) {
144 $validGroups[] = $prefix.$group;
/plugin/javadoc/
H A Dsyntax.php137 $prefix = $sites[$data];
138 $renderer->doc .= '<a class="javadoc'.$icon.'" target="_blank" href="'.$prefix;
/plugin/vcard/
H A Dvcard.php93 function setName($family="", $first="", $additional="", $prefix="", $suffix="") { argument
94 $this->properties["N"] = "$family;$first;$additional;$prefix;$suffix";
96 …if ($this->properties["FN"]=="") $this->setFormattedName(trim("$prefix $first $additional $family …
/plugin/openid/Auth/
H A DOpenID.php235 * @param string $prefix
238 static function addPrefix($values, $prefix) argument
242 $new_values[] = $prefix . $s;
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DXmlDriver.php117 if (isset($xmlNamespace->attributes()->prefix)) {
118 $prefix = (string) $xmlNamespace->attributes()->prefix;
120 $prefix = null;
123 $metadata->registerNamespace((string) $xmlNamespace->attributes()->uri, $prefix);
/plugin/combo/ComboStrap/Xml/
H A DXmlDocument.php232 // namespace error : Namespace prefix dc on format is not defined
458 $localName = $node->prefix;
468 * with the defined prefix
491 foreach ($this->getNamespaces() as $prefix => $namespaceUri) {
493 * You can't register an empty prefix
494 * Default namespace (without a prefix) can only be accessed by the local-name() and namespace-uri() attributes.
496 if (!empty($prefix)) {
497 $result = $this->domXpath->registerNamespace($prefix, $namespaceUri);
499 LogUtility::msg("Not able to register the prefix ($prefix) fo
[all...]
/plugin/dwcommits/
H A Dsyntax.php214 function dwc_element($prefix, $suffix, $ar) { argument
215 $inx = $prefix . $suffix;
/plugin/semanticdata/
H A Dhelper.php79 if (isset($type['prefix'])) $pre = $type['prefix'];
/plugin/elasticsearch/vendor/ruflin/elastica/src/QueryBuilder/DSL/
H A DQuery.php282 * match phrase prefix query.
284 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-match-query-phrase-prefix.html
322 * prefix query.
324 * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-prefix-query.html
326 * @param array $prefix Prefix array
328 public function prefix(array $prefix = []): Prefix argument
330 return new Prefix($prefix);
/plugin/findologicxmlexport/vendor/jms/serializer/src/Annotation/
H A DXmlNamespace.php22 public $prefix = ''; variable in JMS\\Serializer\\Annotation\\XmlNamespace
H A DXmlRoot.php27 public $prefix; variable in JMS\\Serializer\\Annotation\\XmlRoot

12345678910>>...19