Lines Matching refs:VALUE
70 private static final InternalState VALUE;
103 VALUE = InternalState.getInstanceHtml("VALUE");
135 private final CharacterRecorder value;
141 // True iff InsertText() was called at the start of a URL attribute value.
158 value = new CharacterRecorder();
176 value = new CharacterRecorder(aHtmlParserImpl.value);
289 return (getState() == STATE_VALUE) ? value.getContent() : "";
302 // False when not inside an HTML attribute value
333 * information back to a default value, hence use only when
346 value.reset();
391 * <li>We are at the start of the value of a URL-accepting HTML attribute. In
394 * to perform on the HTML attribute value. We avoid injecting fake data and
395 * hence not modify the current index of the value as determined by
397 * <li>We just transitioned from an attribute name to an attribute value
400 * value.</li>
407 // Case: Inside URL attribute value.
413 // Case: Before parsing any attribute value.
414 if (currentState == VALUE) {
432 } else if (currentState == VALUE) {
492 value.maybeRecord(input);
525 * Tracks the index within the HTML attribute value and initializes
528 * Called when the parser enters a new HTML attribute value.
543 * Starts recordning the contents of the attribute value.
545 * Called when entering an attribute value.
548 value.startRecording();
552 * Stops the recording of the attribute value and exits javascript
556 value.stopRecording();
562 * the position within the attribute value.
566 * <p>Called for every character inside an attribute value.
696 registerMapping(VALUE, HtmlParser.STATE_VALUE);
761 registerTransition("[:default:]", VALUE, VALUE_TEXT);
762 registerTransition(">", VALUE, TAG_CLOSE);
763 registerTransition(" \t\n\r", VALUE, VALUE);
764 registerTransition("\"", VALUE, VALUE_DQ_START);
765 registerTransition("\'", VALUE, VALUE_Q_START);
766 registerTransition("=", ATTR_SPACE, VALUE);
772 registerTransition("=", ATTR, VALUE);