Lines Matching refs:clazz
12 protected $clazz = NULL; variable in creole_syntax_event
18 public function __construct($state, $clazz , $tag) { argument
20 $this->clazz = $clazz;
33 return $this->clazz;
55 if ( $this->clazz != NULL && $otherClazz != NULL &&
56 $this->clazz != $otherClazz ) {
75 public function __construct($state, $clazz, $tag, $ownState, $ownClazz, $ownTag, $callback) { argument
76 if ( $state == NULL && $clazz == NULL && $tag == NULL ) {
79 $this->event = new creole_syntax_event ($state, $clazz, $tag);
139 public function addOnNotify ($state, $clazz, $tag, $ownState, $ownClazz, $ownTag, $callback) { argument
141 ($state, $clazz, $tag, $ownState, $ownClazz, $ownTag, $callback);
144 public function notifyEvent ($state, $clazz, $tag, $pos, $match, $handler) { argument
146 $clazz = strtolower($clazz);
149 $event = new creole_syntax_event($state, $clazz, $tag);
180 public function queuedEventExists ($state, $clazz, $tag) { argument
183 self::$queue [$q_index]->equalToValues($state, $clazz, $tag) ) {