Home
last modified time | relevance | path

Searched refs:child (Results 201 – 225 of 591) sorted by last modified time

12345678910>>...24

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DCerDerTrait.php141 # Encode each child and record the length, we need it later
143 $child = ['original' => $this->encode($type)];
144 $child['length'] = strlen($child['original']);
145 $children[] = $child;
155 # Get the last child (ie. the longest), and put the array back to normal.
156 $child = end($children);
157 $padding = $child ['length'];
170 foreach ($children as $child) {
171 $bytes .= $child['origina
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/
H A DLdapResult.php207 $child = $type->getChild($i);
208 if ($child !== null && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $child->getTagNumber() === 3) {
209 if (!$child instanceof IncompleteType) {
212 $child = (new LdapEncoder())->complete($child, AbstractType::TAG_TYPE_SEQUENCE);
213 foreach ($child->getChildren() as $ldapUrl) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Request/
H A DExtendedRequest.php174 foreach ($type->getChildren() as $child) {
175 if ($child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $child->getTagNumber() === 0) {
176 $oid = $child;
177 } elseif ($child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $child->getTagNumber() === 1) {
178 $value = $child;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Operation/Response/
H A DPasswordModifyResponse.php81 foreach ($pwdResponse->getChildren() as $child) {
82 if ($child->getTagNumber() === 0) {
83 $generatedPassword = $child->getValue();
H A DBindResponse.php86 foreach ($type->getChildren() as $child) {
87 if ($child->getTagNumber() === 7 && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC) {
88 $saslCreds = $child->getValue();
H A DExtendedResponse.php136 foreach ($type->getChildren() as $child) {
137 if ($child->getTagNumber() === 10) {
138 $info[0] = $child->getValue();
139 } elseif ($child->getTagNumber() === 11) {
140 $info[1] = $child->getValue();
H A DIntermediateResponse.php81 foreach ($type->getChildren() as $child) {
82 if ($child->getTagNumber() === 0 && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC) {
83 $name = $child->getValue();
85 if ($child->getTagNumber() === 1 && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC) {
86 $value = $child->getValue();
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Protocol/
H A DLdapMessage.php158 $child = $type->getChild($i);
159 if ($child !== null && $child->getTagClass() === AbstractType::TAG_CLASS_CONTEXT_SPECIFIC && $child->getTagNumber() === 0) {
160 if (!$child instanceof IncompleteType) {
163 /** @var SequenceOfType $child */
164 $child = (new LdapEncoder())->complete($child, AbstractType::TAG_TYPE_SEQUENCE);
166 foreach ($child->getChildren() as $control) {
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/Filter/
H A DFilterContainerTrait.php171 foreach ($type->getChildren() as $child) {
172 $filters[] = FilterFactory::get($child);
H A DMatchingRuleFilter.php213 foreach ($type->getChildren() as $child) {
214 if ($child->getTagClass() !== AbstractType::TAG_CLASS_CONTEXT_SPECIFIC) {
217 if ($child->getTagNumber() === 1) {
218 $matchingRule = $child;
219 } elseif ($child->getTagNumber() === 2) {
220 $matchingType = $child;
221 } elseif ($child->getTagNumber() === 3) {
222 $matchValue = $child;
223 } elseif ($child->getTagNumber() === 4) {
224 $useDnAttr = $child;
[all...]
H A DNotFilter.php106 $child = $type->getChild(0);
107 if ($child === null) {
111 return new self(FilterFactory::get($child));
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Search/
H A DFilterParser.php428 $child = null;
432 [$i, $child] = $this->parseContainerStart((int)$i, $child);
480 * @psalm-param 0|positive-int $child
483 protected function parseContainerStart(int $i, ?int $child): array
487 $child = $child === null ? 0 : $child + 1;
488 $this->containers[$child] = ['startAt' => $i, 'endAt' => null];
517 return [$i, $child];
470 parseContainerStart(int $i, int $child) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/
H A DControl.php256 foreach ($type->getChildren() as $i => $child) {
257 if ($child->getTagClass() !== AbstractType::TAG_CLASS_UNIVERSAL) {
262 $oid = $child->getValue();
263 } elseif ($child instanceof BooleanType) {
264 $criticality = $child->getValue();
265 } elseif ($child instanceof OctetStringType) {
266 $value = $child->getValue();
H A DPwdPolicyResponseControl.php148 foreach ($response->getChildren() as $child) {
149 if (!$child instanceof IncompleteType) {
152 if ($child->getTagNumber() === 0) {
153 $warnings = $encoder->complete($child, AbstractType::TAG_TYPE_SEQUENCE, [
169 } elseif ($child->getTagNumber() === 1) {
170 $error = $encoder->complete($child, AbstractType::TAG_TYPE_ENUMERATED)->getValue();
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DSetTrait.php44 foreach ($set as $child) {
45 $children[$child->getTagClass()][] = $child;
/plugin/pureldap/vendor/freedsx/ldap/src/FreeDSx/Ldap/Control/Sorting/
H A DSortingControl.php142 $child = Asn1::sequence(Asn1::octetString($sortKey->getAttribute()));
144 $child->addChild(Asn1::context(0, Asn1::octetString($sortKey->getOrderingRule())));
147 $child->addChild(Asn1::context(1, Asn1::boolean(true)));
149 $this->controlValue->addChild($child);
/plugin/commonmark/vendor/league/commonmark/src/Extension/HeadingPermalink/
H A DHeadingPermalinkProcessor.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/Mention/
H A DMention.php85 foreach ($this->children() as $child) {
86 if ($child instanceof Text) {
87 return $child;
/plugin/commonmark/vendor/league/commonmark/
H A DCHANGELOG.md
H A DCHANGELOG-0.x.md
/plugin/commonmark/vendor/league/commonmark/src/Extension/Table/
H A DTableRow.php
/plugin/commonmark/vendor/league/commonmark/src/Extension/TableOfContents/
H A DTableOfContentsGenerator.php147 foreach ($node->children() as $child) {
148 if ($child instanceof HeadingPermalink) {
149 yield $child;
/plugin/commonmark/vendor/league/commonmark/src/Node/
H A DNode.php170 public function appendChild(Node $child): void
173 $this->lastChild->insertAfter($child);
175 $child->detach();
176 $child->setParent($this);
177 $this->lastChild = $this->firstChild = $child;
182 * Adds $child as the very first child of $this
184 public function prependChild(Node $child): void
187 $this->firstChild->insertBefore($child);
189 $child
190 appendChild(Node $child) global() argument
208 prependChild(Node $child) global() argument
[all...]
/plugin/passpolicy/
H A D10k-common-passwords.txt7409 child
H A Dwords.txt645 child

12345678910>>...24