Searched refs:isConstructed (Results 1 – 9 of 9) sorted by relevance
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Type/ |
H A D | IncompleteType.php | 25 * @param bool $isConstructed 27 …ue, $tagNumber = null, int $class = AbstractType::TAG_CLASS_UNIVERSAL, bool $isConstructed = false) argument 31 $this->isConstructed = $isConstructed;
|
H A D | AbstractType.php | 107 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 D | AbstractStringType.php | 68 * @param bool $isConstructed 72 public static function withTag($tagNumber, int $class, bool $isConstructed, $value = '') argument 77 $type->isConstructed = $isConstructed;
|
H A D | AbstractTimeType.php | 163 * @param bool $isConstructed 169 …public static function withTag($tagNumber, int $class, bool $isConstructed, ?\DateTime $dateTime =… argument 174 $type->isConstructed = $isConstructed;
|
H A D | BitStringType.php | 126 * @param bool $isConstructed 130 public static function withTag($tagNumber, int $class, bool $isConstructed, string $value = '') argument 135 $type->isConstructed = $isConstructed;
|
H A D | SequenceType.php | 28 protected $isConstructed = true; variable in FreeDSx\\Asn1\\Type\\SequenceType
|
H A D | SetType.php | 24 protected $isConstructed = true; variable in FreeDSx\\Asn1\\Type\\SetType
|
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/ |
H A D | BerEncoder.php | 283 * @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 D | DerEncoder.php | 53 …n decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class… argument 55 $type = parent::decodeBytes($isRoot, $tagType, $length, $isConstructed, $class);
|