Home
last modified time | relevance | path

Searched refs:isConstructed (Results 1 – 9 of 9) sorted by last modified time

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DDerEncoder.php53 protected function decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null): AbstractType argument
55 $type = parent::decodeBytes($isRoot, $tagType, $length, $isConstructed, $class);
H A DBerEncoder.php322 * @param null|bool $isConstructed
328 protected function decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null): AbstractType
334 $isConstructed = (bool)($tag & AbstractType::CONSTRUCTED_TYPE);
376 $type = new IncompleteType(substr($this->binary, $this->pos, $length), $tagNumber, $class, $isConstructed);
387 if ($length !== 1 || $isConstructed) {
393 if ($length !== 0 || $isConstructed) {
399 if ($isConstructed) {
405 if ($isConstructed) {
411 if ($isConstructed) {
417 $type = EncodedType\BitStringType::withTag($tagNumber, $class, $isConstructed,
289 decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null) global() argument
[all...]
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DIncompleteType.php25 * @param bool $isConstructed
27 public function __construct($value, $tagNumber = null, int $class = AbstractType::TAG_CLASS_UNIVERSAL, bool $isConstructed = false) argument
31 $this->isConstructed = $isConstructed;
H A DSequenceType.php28 protected $isConstructed = true; variable in FreeDSx\\Asn1\\Type\\SequenceType
H A DSetType.php24 protected $isConstructed = true; variable in FreeDSx\\Asn1\\Type\\SetType
H A DAbstractStringType.php68 * @param bool $isConstructed
72 public static function withTag($tagNumber, int $class, bool $isConstructed, $value = '') argument
77 $type->isConstructed = $isConstructed;
H A DAbstractTimeType.php170 * @param bool $isConstructed
176 public static function withTag($tagNumber, int $class, bool $isConstructed, ?DateTimeInterface $dateTime, string $dateFormat, string $tzFormat)
181 $type->isConstructed = $isConstructed;
169 withTag($tagNumber, int $class, bool $isConstructed, \\DateTime $dateTime = null, string $dateFormat, string $tzFormat) global() argument
H A DAbstractType.php112 protected $isConstructed = false;
132 return $this->isConstructed;
136 * @param bool $isConstructed
139 public function setIsConstructed(bool $isConstructed)
141 $this->isConstructed = $isConstructed;
107 protected $isConstructed = false; global() variable in FreeDSx\\Asn1\\Type\\AbstractType
134 setIsConstructed(bool $isConstructed) global() argument
H A DBitStringType.php126 * @param bool $isConstructed
130 public static function withTag($tagNumber, int $class, bool $isConstructed, string $value = '') argument
135 $type->isConstructed = $isConstructed;