Lines Matching refs:state
11 protected $state = NULL; variable in creole_syntax_event
18 public function __construct($state, $clazz , $tag) { argument
19 $this->state = $state;
24 public function setState($state) { argument
25 $this->state = $state;
29 return $this->state;
51 if ( $this->state != NULL && $otherState != NULL &&
52 $this->state != $otherState ) {
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
145 $state = strtolower($state);
149 $event = new creole_syntax_event($state, $clazz, $tag);
165 if ( $state == 'open' ) {
168 if ( $state == 'close' ) {
180 public function queuedEventExists ($state, $clazz, $tag) { argument
183 self::$queue [$q_index]->equalToValues($state, $clazz, $tag) ) {
194 public function writeCall($class, $state, $data1, $data2, $pos, $match, &$handler) { argument
195 $handler->addPluginCall($class, array($state, $data1, $data2), $state, $pos, $match);