HomeSort by relevance Sort by last modified time
    Searched refs:InternalState (Results 1 - 11 of 11) sorted by null

  /external/jsilver/src/com/google/streamhtmlparser/impl/
StateTableTransition.java 38 private final InternalState from;
39 private final InternalState to;
54 StateTableTransition(String expression, InternalState from,
55 InternalState to) {
69 InternalState getFrom() {
73 InternalState getTo() {
JavascriptParserImpl.java 33 final static InternalState JS_TEXT;
34 final static InternalState JS_Q;
35 final static InternalState JS_Q_E;
36 final static InternalState JS_DQ;
37 final static InternalState JS_DQ_E;
38 final static InternalState JS_SLASH;
39 final static InternalState JS_REGEXP_SLASH;
40 final static InternalState JS_REGEXP;
41 final static InternalState JS_REGEXP_BRK;
42 final static InternalState JS_REGEXP_BRK_E
    [all...]
ParserStateTable.java 67 * transitions. It is two dimensional: Stores a target {@code InternalState}
71 private final InternalState[][] stateTable;
79 private final InternalState[] defaultStateTable;
82 stateTable = new InternalState[MAX_STATES][MAX_CHARS];
83 defaultStateTable = new InternalState[MAX_STATES];
89 * Returns {@code InternalState.INTERNAL_ERROR_STATE} if there is no
99 * @return the state to move to or {@code InternalState.INTERNAL_ERROR_STATE}
101 InternalState getNextState(InternalState from, int currentChar) {
104 return InternalState.INTERNAL_ERROR_STATE
    [all...]
InternalState.java 35 * <p>The methods to create new <code>InternalState</code> instances are
39 class InternalState {
41 // An InternalState to represent an error condition for all parsers.
42 static final InternalState INTERNAL_ERROR_STATE = new InternalState();
57 private InternalState(String name, int id) {
68 private InternalState() {
93 return String.format("InternalState: Name: %s; Id: %d", name, id);
97 * Obtain a new {@code InternalState} instance for the HTML parser.
100 * @return a new {@code InternalState} objec
    [all...]
HtmlParserImpl.java 52 * The relationship between <code>InternalState</code> and
55 private static final InternalState TEXT;
56 private static final InternalState TAG_START;
57 private static final InternalState TAG_NAME;
58 private static final InternalState DECL_START;
59 private static final InternalState DECL_BODY;
60 private static final InternalState COM_OPEN;
61 private static final InternalState COM_BODY;
62 private static final InternalState COM_DASH;
63 private static final InternalState COM_DASH_DASH
    [all...]
GenericParser.java 41 protected final Map<InternalState, ExternalState> intToExtStateTable;
42 protected final InternalState initialState;
43 protected InternalState currentState;
48 Map<InternalState, ExternalState> intToExtStateTable,
49 InternalState initialState) {
108 InternalState nextState =
111 if (nextState == InternalState.INTERNAL_ERROR_STATE) {
117 currentState = InternalState.INTERNAL_ERROR_STATE;
192 InternalState getCurrentInternalState() {
196 protected void setNextState(InternalState nextState) throws ParseException
    [all...]
  /external/webkit/Source/WebCore/fileapi/
FileReader.h 107 enum InternalState {
129 InternalState m_state;
  /external/chromium/chrome/browser/ui/find_bar/
find_backend_unittest.cc 28 TEST_F(FindBackendTest, InternalState) {
  /external/libnfc-nxp/src/
phFriNfc_TopazMap.c 234 NdefMap->TopazContainer.InternalState = PH_FRINFC_TOPAZ_VAL0;
751 switch (psNdefMap->TopazContainer.InternalState)
798 } /* switch (psNdefMap->TopazContainer.InternalState) */
    [all...]
phFriNfc_NdefMap.h 742 uint8_t InternalState;
    [all...]
phFriNfc_TopazDynamicMap.c 595 NdefMap->TopazContainer.InternalState = PH_FRINFC_TOPAZ_DYNAMIC_INIT_CHK_NDEF;
    [all...]

Completed in 208 milliseconds