/external/jsilver/src/com/google/streamhtmlparser/impl/ |
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...] |
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...] |
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...] |
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...] |
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() {
|
/external/oprofile/libpopt/ |
popt.h | 226 /*@globals internalState @*/ 227 /*@modifies internalState @*/; 260 /*@globals fileSystem, internalState @*/ 261 /*@modifies con, fileSystem, internalState @*/; 358 /*@globals errno, fileSystem, internalState @*/ 360 errno, fileSystem, internalState @*/; 370 /*@globals fileSystem, internalState @*/ 372 fileSystem, internalState @*/;
|
popt.c | 65 /*@globals internalState@*/ 66 /*@modifies internalState@*/ 93 /*@globals internalState@*/ 94 /*@modifies internalState@*/ 124 /*@globals internalState@*/ 125 /*@modifies internalState@*/ 380 /*@globals internalState @*/ 381 /*@modifies internalState @*/ [all...] |
/external/oprofile/ |
popt.h | 226 /*@globals internalState @*/ 227 /*@modifies internalState @*/; 260 /*@globals fileSystem, internalState @*/ 261 /*@modifies con, fileSystem, internalState @*/; 358 /*@globals errno, fileSystem, internalState @*/ 360 errno, fileSystem, internalState @*/; 370 /*@globals fileSystem, internalState @*/ 372 fileSystem, internalState @*/;
|
/external/webkit/Source/WebCore/fileapi/ |
FileReader.h | 107 enum InternalState { 129 InternalState m_state;
|
/external/srec/srec/Recognizer/src/ |
RecognizerImpl.c | 682 impl->internalState = SR_RECOGNIZER_INTERNAL_BEGIN; [all...] |
/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 | 731 uint8_t InternalState; [all...] |
phFriNfc_TopazDynamicMap.c | 592 NdefMap->TopazContainer.InternalState = PH_FRINFC_TOPAZ_DYNAMIC_INIT_CHK_NDEF; [all...] |
/external/chromium/chrome/browser/ui/find_bar/ |
find_backend_unittest.cc | 28 TEST_F(FindBackendTest, InternalState) {
|
/libcore/luni/src/main/java/java/util/concurrent/ |
CopyOnWriteArraySet.java | 45 * private long internalState; 46 * private synchronized void changeState() { internalState = ...; }
|
/external/srec/srec/Recognizer/include/ |
SR_RecognizerImpl.h | 227 SR_RecognizerInternalStatus internalState;
|