Home
last modified time | relevance | path

Searched refs:self (Results 776 – 800 of 2449) sorted by relevance

1...<<31323334353637383940>>...98

/plugin/struct/syntax/
H A Doutput.php105 if (!preg_match(self::WHITELIST_ACTIONS, act_clean($ACT))) return true;
117 if ($format == 'xhtml') $renderer->doc .= self::XHTML_OPEN;
142 if ($format == 'xhtml') $renderer->doc .= self::XHTML_CLOSE;
146 $renderer->doc = substr($renderer->doc, 0, -1 * strlen(self::XHTML_OPEN . self::XHTML_CLOSE));
/plugin/const/
H A Dclass.evalmath.php179 …if ( 1 === preg_match( '/^\s*(' . self::$name_pattern . ')\s*=\s*(.+)$/', $expression, $matches ) …
195 …lseif ( 1 === preg_match( '/^\s*(' . self::$name_pattern . ')\s*\(\s*(' . self::$name_pattern . '(…
336 …if ( 1 === preg_match( '/^(' . self::$name_pattern . ')\($/', (string) $stack->last( 2 ), $matches…
386 …if ( 0 === preg_match( '/^(' . self::$name_pattern . ')\($/', (string) $stack->last( 2 ), $matches…
405 if ( 1 === preg_match( '/^(' . self::$name_pattern . ')\($/', $value, $matches ) ) {
429 …if ( 1 === preg_match( '/^(' . self::$name_pattern . ')\($/', (string) $stack->last( 3 ), $matches…
1114 self::$random_seed = $random_seed;
1125 if ( is_null( self::$random_seed ) ) {
1128 return self::$random_seed;
1149 $md5string = md5( self::_get_random_seed() );
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-file-iterator/src/
H A DIterator.php119 return $this->acceptSubString($filename, $this->prefixes, self::PREFIX);
129 return $this->acceptSubString($filename, $this->suffixes, self::SUFFIX);
148 if (($type == self::PREFIX && strpos($filename, $string) === 0) ||
149 ($type == self::SUFFIX &&
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DBitStringType.php20 protected $tagNumber = self::TAG_TYPE_BIT_STRING;
94 return new self($bitstring);
120 return new self($bitstring);
132 $type = new self($value);
/plugin/commonmark/vendor/league/commonmark/src/Extension/SmartPunct/
H A DQuoteParser.php32 return InlineParserMatch::oneOf(...\array_merge(self::DOUBLE_QUOTES, self::SINGLE_QUOTES));
72 if (\in_array($character, self::DOUBLE_QUOTES, true)) {
76 if (\in_array($character, self::SINGLE_QUOTES, true)) {
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/RSA/Formats/Keys/
H A DOpenSSH.php108 if (isset($options['binary']) ? $options['binary'] : self::$binary) {
112 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
134 $publicKey = self::savePublicKey($n, $e, ['binary' => true]);
137 return self::wrapPrivateKey($publicKey, $privateKey, $password, $options);
/plugin/combo/action/
H A Dsnippets.php84 ->setRuntimeBoolean(self::HEAD_EVENT_WAS_CALLED, true);
125 LogUtility::error("We couldn't get the attributes of the snippet ($snippet). It has been skipped. Error: {$e->getMessage()}", self::CANONICAL);
178 $headEventWasCalled = $executionContext->getRuntimeBoolean(self::HEAD_EVENT_WAS_CALLED);
216 $class = self::CLASS_SNIPPET_IN_CONTENT;
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Serializer/
H A DGraphNavigatorTest.php55 $self = $this;
61 …returnCallback(static function ($passedMetadata, $passedContext) use ($metadata, $context, $self) {
62 $self->assertSame($metadata, $passedMetadata);
63 $self->assertSame($context, $passedContext);
68 …turnCallback(static function ($propertyMetadata, $passedContext) use ($context, $metadata, $self) {
69 $self->assertSame($metadata->propertyMetadata['foo'], $propertyMetadata);
70 $self->assertSame($context, $passedContext);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DSearchRequest.php96 protected $scope = self::SCOPE_WHOLE_SUBTREE;
101 protected $derefAliases = self::DEREF_NEVER;
167 $this->scope = self::SCOPE_WHOLE_SUBTREE;
179 $this->scope = self::SCOPE_BASE_OBJECT;
191 $this->scope = self::SCOPE_SINGLE_LEVEL;
379 * @return self
421 $search = new self($filter, ...$attrList);
441 return Asn1::application(self::APP_TAG, Asn1::sequence(
/plugin/findologicxmlexport/vendor/hoa/stream/Filter/
H A DLateComputed.php83 $return = self::FEED_ME;
92 $return = self::PASS_ON;
106 $return = self::PASS_ON;
/plugin/combo/ComboStrap/
H A DIndex.php30 if (self::$index === null) {
31 self::$index = new Index();
33 return self::$index;
H A DLdJson.php88 LogUtility::internalError("The page image should come from a wiki path", self::CANONICAL, $e);
95 LogUtility::internalError("The page image mime could not be determined. Error:" . $e->getMessage(), self::CANONICAL, $e);
130 return self::PROPERTY_NAME;
195 $metadata = $store->getFromName(self::OLD_ORGANIZATION_PROPERTY);
223 LogUtility::error("The string value is not a valid Json. Value: $value", self::CANONICAL);
315 case self::NEWSARTICLE_SCHEMA_ORG_LOWERCASE:
316 case self::BLOGPOSTING_SCHEMA_ORG_LOWERCASE:
322 case self::NEWSARTICLE_SCHEMA_ORG_LOWERCASE:
326 case self::BLOGPOSTING_SCHEMA_ORG_LOWERCASE:
359 $ldJson[self
[all...]
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php163 self::warning(
180 self::warning(
216 if ($test instanceof self &&
259 if ($testClass instanceof self) {
281 $this->addTest(new self($testClass));
434 return self::warning(
526 $data = self::warning(
726 $test instanceof self) {
848 self::warning(
860 $test = self::createTest($class, $name);
[all …]
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/Common/Formats/Keys/
H A DPuTTY.php61 self::$comment = str_replace(["\r", "\n"], '', $comment);
75 self::$version = $version;
243 extract(self::generateV3Key($password, $flavour, $memory, $passes, $salt));
247 $symkey = self::generateV2Key($password, 32);
301 $comment = isset($options['comment']) ? $options['comment'] : self::$comment;
302 $version = isset($options['version']) ? $options['version'] : self::$version;
340 extract(self::generateV3Key($password, 'Argon2id', 8192, 13, $salt));
347 $symkey = self::generateV2Key($password, 32);
384 'Comment: "' . str_replace(['\\', '"'], ['\\\\', '\"'], self::$comment) . "\"\r\n" .
/plugin/odt/ODT/
H A DODTTable.php382 self::tableOpenUseProperties($params, $properties, $maxcols, $numrows);
421 self::tableOpen($params, $maxcols, $numrows, $style_name);
431 self::tableAddColumn ($params, $styleName, $styleNameGet);
456 self::tableHeaderOpenUseProperties($params, $properties, $colspan, $rowspan);
466 self::tableCellOpenUsePropertiesInternal ($params, $properties, true, $colspan, $rowspan);
493 self::tableRowOpenUseProperties($params, $properties);
506 self::tableRowOpen($params, $style_name);
534 self::tableCellOpenUseProperties($params, $properties, $colspan, $rowspan);
541 self::tableCellOpenUsePropertiesInternal ($params, $properties, false, $colspan, $rowspan);
581 self::adjustColumnStyle($params, $properties);
[all …]
/plugin/infomail/
H A Dadmin.php21 if (!page_exists(self::TPL)) {
22 saveWikiText(self::TPL, io_readFile(__DIR__ . '/template.txt'), 'autocreated');
24 send_redirect(wl(self::TPL, '', true, '&'));
/plugin/findologicxmlexport/vendor/hoa/exception/Test/Unit/
H A DException.php74 $self = $this;
79 function (Event\Bucket $bucket) use ($self, &$called) {
82 $self
/plugin/findologicxmlexport/vendor/hoa/compiler/Visitor/
H A DDump.php73 ++self::$_i;
75 $out = str_repeat('> ', self::$_i) . $element->getId();
99 --self::$_i;
/plugin/elasticsearch/vendor/ruflin/elastica/src/Query/
H A DTermsSet.php43 public function setTerms(array $terms): self
48 public function setMinimumShouldMatchField(string $minimumShouldMatchField): self
53 public function setMinimumShouldMatchScript(AbstractScript $script): self
/plugin/findologicxmlexport/vendor/hoa/protocol/
H A DProtocol.php182 if (isset(self::$_cache[$path])) {
183 $handle = self::$_cache[$path];
204 self::$_cache[$path] = $handle;
243 self::$_cache = [];
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DSerializationContext.php28 public static function create(): self
30 return new self();
44 public function setSerializeNull(bool $bool): self
143 public function setInitialType(string $type): self
/plugin/xfortune/
H A Dhelper.php20 $cookie = self::getSmallCookie($cookieID, $maxlines, $maxchars);
22 $cookie = self::getCookie($cookieID);
44 $cookie = self::getCookie($cookieID);
88 $file = self::id2file($cookieID);
/plugin/structsection/
H A Dsyntax.php114 $R->doc .= self::XHTML_OPEN;
151 $R->doc .= self::XHTML_CLOSE;
156 $R->doc = substr($R->doc, 0, -1 * strlen(self::XHTML_OPEN . self::XHTML_CLOSE));
/plugin/elasticsearch/vendor/ruflin/elastica/src/
H A DClientConfiguration.php51 public static function fromArray(array $config): self
69 public static function fromDsn(string $dsnString): self
80 $clientConfiguration = self::fromArray(self::parseDsn($dsn));
86 $connections[] = self::parseDsn($arg);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DSubstringFilter.php164 return Asn1::context(self::CHOICE_TAG, Asn1::sequence(
175 $filter = self::PAREN_LEFT . $this->attribute . self::FILTER_EQUAL;
193 return $filter . $value . self::PAREN_RIGHT;
214 [$startsWith, $endsWith, $contains] = self::parseSubstrings($substrings);
216 return new self($attrType->getValue(), $startsWith, $endsWith, ...$contains);

1...<<31323334353637383940>>...98