Home
last modified time | relevance | path

Searched refs:tagType (Results 1 – 16 of 16) sorted by path

/plugin/authgooglesheets/vendor/google/apiclient-services/src/TagManager/
H A DContainerVersion.php65 protected $tagType = Tag::class; variable in Google\\Service\\TagManager\\ContainerVersion
H A DEntity.php30 protected $tagType = Tag::class; variable in Google\\Service\\TagManager\\Entity
H A DFolderEntities.php27 protected $tagType = Tag::class; variable in Google\\Service\\TagManager\\FolderEntities
H A DListTagsResponse.php27 protected $tagType = Tag::class; variable in Google\\Service\\TagManager\\ListTagsResponse
H A DRevertTagResponse.php22 protected $tagType = Tag::class; variable in Google\\Service\\TagManager\\RevertTagResponse
/plugin/combo/action/
H A Dsnippets.php128 $tagType = $snippet->getHtmlTag();
129 $event->data[$tagType][] = $tag;
/plugin/combo/vendor/salesforce/handlebars-php/src/Handlebars/
H A DTokenizer.php76 protected $tagType; variable in Handlebars\\Tokenizer
140 $this->tagType = $tag;
143 $this->tagType = self::T_ESCAPED;
146 if ($this->tagType === self::T_DELIM_CHANGE) {
167 if (in_array($this->tagType, [
180 self::TYPE => $this->tagType,
184 self::INDEX => ($this->tagType == self::T_END_SECTION) ?
197 if ($this->tagType == self::T_UNESCAPED) {
232 $this->tagType = null;
/plugin/ditaa/ditaa/
H A Dditaa.jarMETA-INF/ META-INF/MANIFEST.MF net/ net/htmlparser/ net/ ...
/plugin/gtime/gtlib/asn1/
H A DASN1DER.php233 $tagType = ASN1_TAG_CONSTRUCTED;
238 $tagType = ASN1_TAG_PRIMITIVE;
340 $object->setTagType($tagType);
H A DASN1Object.php32 protected $tagType; variable in ASN1Object
154 public function setTagType($tagType) { argument
155 $this->tagType = $tagType;
164 return $this->tagType;
H A DASN1Tag.php84 if ($this->tagType == ASN1_TAG_CONSTRUCTED) {
/plugin/html5video2/script/
H A Dvideo.min.js21tagType:"m3u"});else{if(r=/^#EXTINF:?([0-9\.]*)?,?(.*)?$/.exec(e))return a={type:"tag",tagType:"in…
/plugin/jplayer/vendor/mustache/mustache/src/Mustache/
H A DTokenizer.php70 private $tagType; variable in Mustache_Tokenizer
138 $this->tagType = $tag;
141 $this->tagType = self::T_ESCAPED;
144 if ($this->tagType === self::T_DELIM_CHANGE) {
147 } elseif ($this->tagType === self::T_PRAGMA) {
164 self::TYPE => $this->tagType,
169 …self::INDEX => ($this->tagType === self::T_END_SECTION) ? $this->seenTag - $this->otagLen : $i + $…
172 if ($this->tagType === self::T_UNESCAPED) {
231 $this->tagType = null;
/plugin/pureldap/vendor/freedsx/asn1/src/FreeDSx/Asn1/Encoder/
H A DBerEncoder.php167 public function complete(IncompleteType $type, int $tagType, array $tagMap = []): AbstractType
171 $newType = $this->decodeBytes(false, $tagType, $this->maxLen, $type->getIsConstructed(), AbstractType::TAG_CLASS_UNIVERSAL);
320 * @param null|int $tagType
328 protected function decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null): AbstractType
330 $tagNumber = $tagType;
331 if ($tagType === null) {
360 $tagType = ($class === AbstractType::TAG_CLASS_UNIVERSAL) ? $tagNumber : ($this->tmpTagMap[$class][$tagNumber] ?? null);
375 if ($tagType === null) {
385 switch ($tagType) {
502 throw new EncoderException(sprintf('Unable to decode value to a type for tag %s.', $tagType));
128 complete(IncompleteType $type, int $tagType, array $tagMap = []) global() argument
289 decodeBytes(bool $isRoot = false, $tagType = null, $length = null, $isConstructed = null, $class = null) global() argument
[all...]
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 DEncoderInterface.php38 * @param int $tagType
43 public function complete(IncompleteType $type, int $tagType, array $tagMap = []): AbstractType; argument