/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/chromium_org/media/audio/alsa/ |
alsa_output.h | 112 enum InternalState { 120 friend std::ostream& operator<<(std::ostream& os, InternalState); 141 bool CanTransitionTo(InternalState to); 142 InternalState TransitionTo(InternalState to); 143 InternalState state(); 208 InternalState state_; 224 AlsaPcmOutputStream::InternalState);
|
alsa_output.cc | 102 AlsaPcmOutputStream::InternalState state) { 178 InternalState current_state = state(); 696 bool AlsaPcmOutputStream::CanTransitionTo(InternalState to) { 722 AlsaPcmOutputStream::InternalState 723 AlsaPcmOutputStream::TransitionTo(InternalState to) { 735 AlsaPcmOutputStream::InternalState AlsaPcmOutputStream::state() {
|
/external/chromium_org/media/video/capture/linux/ |
video_capture_device_linux.h | 33 enum InternalState { 59 InternalState state_;
|
/external/chromium_org/media/video/capture/mac/ |
video_capture_device_mac.h | 54 enum InternalState { 70 InternalState state_;
|
/external/chromium_org/media/video/capture/android/ |
video_capture_device_android.h | 45 enum InternalState { 66 InternalState state_;
|
/external/chromium_org/media/video/capture/win/ |
video_capture_device_win.h | 51 enum InternalState { 65 InternalState state_;
|
/external/chromium_org/jingle/glue/ |
fake_socket_factory.h | 54 enum InternalState { 63 InternalState 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...] |
/external/chromium_org/chrome/browser/ui/find_bar/ |
find_backend_unittest.cc | 39 TEST_F(FindBackendTest, InternalState) {
|
/external/chromium_org/content/renderer/p2p/ |
ipc_socket_factory.cc | 77 enum InternalState { 110 InternalState state_;
|
/prebuilts/devtools/tools/lib/ |
jsilver-1.0.0.jar | |
/prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/ |
jsilver-1.0.0.jar | |