• Home
  • Raw
  • Download

Lines Matching refs:currentState

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