Lines Matching refs:self

42         self::T_SECTION      => true,
43 self::T_INVERTED => true,
44 self::T_END_SECTION => true,
45 self::T_COMMENT => true,
46 self::T_PARTIAL => true,
47 self::T_PARENT => true,
48 self::T_DELIM_CHANGE => true,
49 self::T_ESCAPED => true,
50 self::T_UNESCAPED => true,
51 self::T_UNESCAPED_2 => true,
52 self::T_PRAGMA => true,
53 self::T_BLOCK_VAR => true,
117 case self::IN_TEXT:
123 $this->state = self::IN_TAG_TYPE;
133 case self::IN_TAG_TYPE:
136 if (isset(self::$tagTypes[$char])) {
141 $this->tagType = self::T_ESCAPED;
144 if ($this->tagType === self::T_DELIM_CHANGE) {
146 $this->state = self::IN_TEXT;
147 } elseif ($this->tagType === self::T_PRAGMA) {
149 $this->state = self::IN_TEXT;
154 $this->state = self::IN_TAG;
164 self::TYPE => $this->tagType,
165 self::NAME => trim($this->buffer),
166 self::OTAG => $this->otag,
167 self::CTAG => $this->ctag,
168 self::LINE => $this->line,
169self::INDEX => ($this->tagType === self::T_END_SECTION) ? $this->seenTag - $this->otagLen : $i + $…
172 if ($this->tagType === self::T_UNESCAPED) {
180 $token[self::NAME],
181 $token[self::LINE]
187 $lastName = $token[self::NAME];
189 $token[self::NAME] = trim(substr($lastName, 0, -1));
193 $token[self::NAME],
194 $token[self::LINE]
204 $this->state = self::IN_TEXT;
230 $this->state = self::IN_TEXT;
253 self::TYPE => self::T_TEXT,
254 self::LINE => $this->line,
255 self::VALUE => $this->buffer,
278 self::TYPE => self::T_DELIM_CHANGE,
279 self::LINE => $this->line,
335 self::TYPE => self::T_PRAGMA,
336 self::NAME => $pragma,
337 self::LINE => 0,