Home
last modified time | relevance | path

Searched refs:context (Results 276 – 300 of 1053) sorted by relevance

1...<<11121314151617181920>>...43

/plugin/commonmark/vendor/league/commonmark/src/Block/Element/
H A DFencedCode.php
/plugin/authgooglesheets/vendor/google/apiclient-services/src/Vision/
H A DAnnotateImageResponse.php55 public function setContext(ImageAnnotationContext $context) argument
57 $this->context = $context;
64 return $this->context;
H A DGoogleCloudVisionV1p2beta1AnnotateImageResponse.php55 public function setContext(GoogleCloudVisionV1p2beta1ImageAnnotationContext $context) argument
57 $this->context = $context;
64 return $this->context;
H A DGoogleCloudVisionV1p3beta1AnnotateImageResponse.php55 public function setContext(GoogleCloudVisionV1p3beta1ImageAnnotationContext $context) argument
57 $this->context = $context;
64 return $this->context;
H A DGoogleCloudVisionV1p1beta1AnnotateImageResponse.php55 public function setContext(GoogleCloudVisionV1p1beta1ImageAnnotationContext $context) argument
57 $this->context = $context;
64 return $this->context;
H A DGoogleCloudVisionV1p4beta1AnnotateImageResponse.php55 public function setContext(GoogleCloudVisionV1p4beta1ImageAnnotationContext $context) argument
57 $this->context = $context;
64 return $this->context;
/plugin/webdav/vendor/psr/log/Psr/Log/
H A DNullLogger.php20 * @param array $context
26 public function log($level, $message, array $context = array()) argument
/plugin/authgooglesheets/vendor/psr/log/Psr/Log/
H A DNullLogger.php20 * @param array $context
26 public function log($level, $message, array $context = array()) argument
/plugin/elasticsearch/vendor/psr/log/Psr/Log/
H A DNullLogger.php20 * @param array $context
26 public function log($level, $message, array $context = array()) argument
/plugin/smtp/subtree/php-fig/log/Psr/Log/
H A DNullLogger.php20 * @param array $context
24 public function log($level, $message, array $context = array()) argument
/plugin/dw2pdf/vendor/psr/log/Psr/Log/
H A DNullLogger.php20 * @param array $context
26 public function log($level, $message, array $context = array()) argument
/plugin/dataloop/syntax/
H A Dloop.php512 function _sqlite_group_concat_step(&$context, $string, $separator = ',') { argument
513 $context['sep'] = $separator;
514 $context['data'][] = $string;
522 function _sqlite_group_concat_finalize(&$context) { argument
523 $context['data'] = array_unique($context['data']);
524 return join($context['sep'],$context['data']);
/plugin/commonmark/vendor/league/commonmark/src/Normalizer/
H A DTextNormalizerInterface.php23 * @param array<string, mixed> $context Additional context about the text being normalized (optional)
25 * $context may include (but is not required to include) the following: argument
30 * Implementations do not have to use or respect any information within that $context
32 public function normalize(string $text, array $context = []): string;
/plugin/html2pdf/html2pdf/html2ps/
H A Drender.queue.class.php14 function set_root_context(&$context) { argument
15 $this->_root_context =& $context;
H A Dbox.inline.php342 function reflow_static(&$parent, &$context) { argument
343 GenericFormattedBox::reflow($parent, $context);
371 $child->reflow($parent, $context);
391 $context->pop_collapsed_margin();
392 $context->push_collapsed_margin( 0 );
448 function get_min_width(&$context) { argument
462 $minw = $this->content[0]->get_min_width($context);
467 $minw = max($minw, $item->get_min_width($context));
480 function get_max_width_natural(&$context, $limit=10E6) { argument
481 return $this->get_max_width($context, $limit);
H A Dbox.text.php181 function get_min_width_natural(&$context) { argument
185 function get_min_width(&$context) { argument
189 function get_max_width(&$context) { argument
199 function maybe_line_break(&$parent, &$context) { argument
221 $float = $context->point_in_floats($right_x, $parent->_current_y);
261 $parent->close_line($context);
282 $this->save_wrapped($wrappable, $parent, $context);
289 function save_wrapped($wrappable, &$parent, &$context) { argument
295 function reflow(&$parent, &$context) { argument
329 $context->pop_collapsed_margin();
[all …]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DMatchingRuleFilter.php156 $matchingRule = Asn1::context(self::CHOICE_TAG, Asn1::sequence());
159 $matchingRule->addChild(Asn1::context(1, Asn1::octetString($this->matchingRule)));
162 $matchingRule->addChild(Asn1::context(2, Asn1::octetString($this->attribute)));
164 $matchingRule->addChild(Asn1::context(3, Asn1::octetString($this->value)));
165 $matchingRule->addChild(Asn1::context(4, Asn1::boolean($this->useDnAttributes)));
/plugin/combo/syntax/
H A Dheadingwiki.php137 $context = HeadingTag::getContext($callStack);
142 PluginUtility::CONTEXT => $context,
184 $context = $data[PluginUtility::CONTEXT];
191 HeadingTag::processRenderEnterXhtml($context, $tagAttributes, $renderer, $pos);
199 $renderer->doc .= HeadingTag::renderClosingTag($tagAttributes, $context);
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/ClientProtocolHandler/
H A DClientBasicHandler.php47 * @param ClientProtocolContext $context
54 public function handleRequest(ClientProtocolContext $context): ?LdapMessageResponse
56 $queue = $context->getQueue();
57 $message = $context->messageToSend();
43 handleRequest(ClientProtocolContext $context) global() argument
/plugin/findologicxmlexport/vendor/jms/serializer/src/Handler/
H A DDateHandler.php77 SerializationContext $context argument
96 …erializationVisitorInterface $visitor, \DateTime $date, array $type, SerializationContext $context) argument
98 return $this->serializeDateTimeInterface($visitor, $date, $type, $context);
110 SerializationContext $context argument
112 return $this->serializeDateTimeInterface($visitor, $date, $type, $context);
120 …lizationVisitorInterface $visitor, \DateInterval $date, array $type, SerializationContext $context) argument
/plugin/findologicxmlexport/vendor/goetas-webservices/xsd2php-runtime/tests/
H A DXmlSchemaDateHandlerSerializationTest.php26 protected $context; variable in GoetasWebservices\\Xsd\\XsdToPhpRuntime\\Tests\\Jms\\Handler\\XmlSchemaDateHandlerSerializationTest
36 $this->context = SerializationContext::create();
72 $ret = $this->handler->serializeDateTime($this->visitor, $date, [], $this->context);
97 $ret = $this->handler->serializeDate($this->visitor, $date, [], $this->context);
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DSee.php53 TypeContext $context = null argument
59 $description = isset($parts[1]) ? $descriptionFactory->create($parts[1], $context) : null;
66 return new static(new FqsenRef($resolver->resolve($parts[0], $context)), $description);
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/Atn/SemanticContexts/
H A DSemanticContext.php13 * A tree structure used to record the semantic context in which
69 * For context independent predicates, we evaluate them without a local
70 * context (i.e., null context). That way, we can evaluate them without
71 * having to create proper rule-specific context during prediction (as
75 * For context dependent predicates, we must pass in a local context so that
77 * capture context dependent predicates in the context in which we begin
78 * prediction, so we passed in the outer context her
[all...]
/plugin/findologicxmlexport/vendor/jms/serializer/src/
H A DArrayTransformerInterface.php23 …public function toArray($data, ?SerializationContext $context = null, ?string $type = null): array; argument
32 public function fromArray(array $data, string $type, ?DeserializationContext $context = null); argument
/plugin/commonmark/vendor/league/commonmark/src/Block/Parser/
H A DBlockParserInterface.php

1...<<11121314151617181920>>...43