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 | 112 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 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 | 170 * @param bool $isConstructed 176 …public static function withTag($tagNumber, int $class, bool $isConstructed, ?DateTimeInterface $da… argument 181 $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 | 322 * @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 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);
|