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.php107 protected $isConstructed = false; variable in FreeDSx\\Asn1\\Type\\AbstractType
127 return $this->isConstructed;
131 * @param bool $isConstructed
134 public function setIsConstructed(bool $isConstructed) argument
136 $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.php163 * @param bool $isConstructed
169 …public static function withTag($tagNumber, int $class, bool $isConstructed, ?\DateTime $dateTime =… argument
174 $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.php283 * @param null|bool $isConstructed
295 $isConstructed = (bool)($tag & AbstractType::CONSTRUCTED_TYPE);
348 if ($length !== 1 || $isConstructed) {
354 if ($length !== 0 || $isConstructed) {
360 if ($isConstructed) {
366 if ($isConstructed) {
372 if ($isConstructed) {
381 if ($isConstructed) {
387 if ($isConstructed) {
451 if (!$isConstructed) {
[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);