Lines Matching refs:currentState

189                  || (currentState == CDATA_TEXT)
190 || (currentState == CDATA_COM_START)
191 || (currentState == CDATA_COM_START_DASH)
192 || (currentState == CDATA_COM_BODY)
193 || (currentState == CDATA_COM_DASH)
194 || (currentState == CDATA_COM_DASH_DASH)
195 || (currentState == CDATA_LT)
196 || (currentState == CDATA_MAY_CLOSE)
197 || (currentState == JS_FILE) ));
230 return (currentState == CSS_FILE
271 return (currentState == VALUE_Q_START
272 || currentState == VALUE_Q
273 || currentState == VALUE_DQ_START
274 || currentState == VALUE_DQ);
354 currentState = TEXT;
357 currentState = JS_FILE;
361 currentState = CSS_FILE;
364 currentState = TAG_SPACE;
414 if (currentState == VALUE) {
420 protected InternalState handleEnterState(InternalState currentState,
424 if (currentState == TAG_NAME) {
426 } else if (currentState == ATTR) {
428 } else if (currentState == TAG_CLOSE) {
429 nextState = tagClose(currentState);
430 } else if (currentState == CDATA_MAY_CLOSE) {
432 } else if (currentState == VALUE) {
435 if (currentState == VALUE_TEXT || currentState == VALUE_Q
436 || currentState == VALUE_DQ) {
443 protected InternalState handleExitState(InternalState currentState,
447 if (currentState == TAG_NAME) {
449 } else if (currentState == ATTR) {
451 } else if (currentState == CDATA_MAY_CLOSE) {
454 if ((currentState == VALUE_TEXT) || (currentState == VALUE_Q)
455 || (currentState == VALUE_DQ)) {
462 protected InternalState handleInState(InternalState currentState,
464 if ((currentState == CDATA_TEXT)
465 || (currentState == CDATA_COM_START)
466 || (currentState == CDATA_COM_START_DASH)
467 || (currentState == CDATA_COM_BODY)
468 || (currentState == CDATA_COM_DASH)
469 || (currentState == CDATA_COM_DASH_DASH)
470 || (currentState == CDATA_LT)
471 || (currentState == CDATA_MAY_CLOSE)
472 || (currentState == JS_FILE)) {
474 } else if ((currentState == VALUE_TEXT)
475 || (currentState == VALUE_Q)
476 || (currentState == VALUE_DQ)) {
479 return currentState;