Home
last modified time | relevance | path

Searched refs:isConstructed (Results 1 – 9 of 9) sorted by relevance

/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/
H A DIncompleteType.php25 * @param bool $isConstructed
27 …ue, $tagNumber = null, int $class = AbstractType::TAG_CLASS_UNIVERSAL, bool $isConstructed = false) argument
31 $this->isConstructed = $isConstructed;
H A DAbstractType.php112 protected $isConstructed = false; variable in FreeDSx\\Asn1\\Type\\AbstractType
132 return $this->isConstructed;
136 * @param bool $isConstructed
139 public function setIsConstructed(bool $isConstructed) argument
141 $this->isConstructed = $isConstructed;
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 $da… argument
181 $type->isConstructed = $isConstructed;
H A DBitStringType.php126 * @param bool $isConstructed
130 public static function withTag($tagNumber, int $class, bool $isConstructed, string $value = '') argument
135 $type->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
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DBerEncoder.php322 * @param null|bool $isConstructed
328 …n decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class… argument
334 $isConstructed = (bool)($tag & AbstractType::CONSTRUCTED_TYPE);
376 …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, $this->decodeBitStr…
[all …]
H A DDerEncoder.php53 …n decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class… argument
55 $type = parent::decodeBytes($isRoot, $tagType, $length, $isConstructed, $class);