Searched defs:currentState (Results 1 - 24 of 24) sorted by relevance

/external/icu4c/layout/
H A DStateTableProcessor.cpp45 ByteOffset currentState = stateArrayOffset; local
68 const EntryTableIndex *stateArray = (const EntryTableIndex *) ((char *) &stateTableHeader->stHeader + currentState);
71 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
H A DStateTableProcessor2.cpp47 le_uint16 currentState = 0; local
78 EntryTableIndex2 entryTableIndex = SWAPW(stateArray[classCode + currentState * nClasses]);
79 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex); // return a zero-based index instead of a byte offset
104 EntryTableIndex2 entryTableIndex = SWAPW(stateArray[classCode + currentState * nClasses]);
105 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
133 EntryTableIndex2 entryTableIndex = SWAPW(stateArray[classCode + currentState * nClasses]);
134 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
156 EntryTableIndex2 entryTableIndex = SWAPW(stateArray[classCode + currentState * nClasses]);
157 currentState = processStateEntry(glyphStorage, currGlyph, entryTableIndex);
/external/jsilver/src/com/google/streamhtmlparser/impl/
H A DGenericParser.java43 protected InternalState currentState; field in class:GenericParser
53 this.currentState = initialState;
69 currentState = aGenericParser.currentState;
109 parserStateTable.getNextState(currentState, input);
116 currentState.getName(), getState().getName());
117 currentState = InternalState.INTERNAL_ERROR_STATE;
121 if (currentState != nextState) {
122 nextState = handleExitState(currentState, nextState, input);
124 if (currentState !
225 handleEnterState(InternalState currentState, InternalState expectedNextState, char input) argument
242 handleExitState(InternalState currentState, InternalState expectedNextState, char input) argument
257 handleInState(InternalState currentState, char input) argument
[all...]
H A DJavascriptParserImpl.java102 currentState = JS_TEXT;
106 protected InternalState handleEnterState(InternalState currentState, argument
110 if (currentState == JS_SLASH) {
111 nextState = enterStateJsSlash(currentState, input);
112 } else if (currentState == JS_COM_AFTER) {
119 protected InternalState handleExitState(InternalState currentState, argument
127 protected InternalState handleInState(InternalState currentState, argument
129 if (currentState == JS_TEXT) {
132 return currentState;
H A DHtmlParserImpl.java189 || (currentState == CDATA_TEXT)
190 || (currentState == CDATA_COM_START)
191 || (currentState == CDATA_COM_START_DASH)
192 || (currentState == CDATA_COM_BODY)
193 || (currentState == CDATA_COM_DASH)
194 || (currentState == CDATA_COM_DASH_DASH)
195 || (currentState == CDATA_LT)
196 || (currentState == CDATA_MAY_CLOSE)
197 || (currentState == JS_FILE) ));
230 return (currentState
420 handleEnterState(InternalState currentState, InternalState expectedNextState, char input) argument
443 handleExitState(InternalState currentState, InternalState expectedNextState, char input) argument
462 handleInState(InternalState currentState, char input) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/templates/
H A Dmethods.cpp148 ScriptState* currentState = ScriptState::current(); variable
149 if (!currentState)
151 ScriptState& state = *currentState;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowVideoView.java28 private int currentState = -1; field in class:ShadowVideoView
59 currentState = ShadowVideoView.START;
65 currentState = ShadowVideoView.STOP;
71 currentState = ShadowVideoView.SUSPEND;
77 currentState = ShadowVideoView.PAUSE;
83 currentState = ShadowVideoView.RESUME;
88 return (currentState == ShadowVideoView.START);
93 return (currentState != ShadowVideoView.PAUSE &&
94 currentState != ShadowVideoView.STOP &&
95 currentState !
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptCanvasModuleSource.js840 currentState: function()
1429 currentState: function()
1580 currentState: function()
1805 currentState: function()
1870 currentState: function()
1950 currentState: function()
2019 currentState: function()
2104 currentState: function()
2486 currentState: function()
3111 currentState
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
H A Dbookmark_bar_controller.h280 @property(readonly, nonatomic) BookmarkBar::State currentState; variable
/external/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp64 // Specifically, currentState is a set of bit-masks.
70 // From the initial state (currentState = 0x00), if we add instruction class
71 // L_or_M we will transition to a state with currentState = [0x01, 0x10]. This
137 State *currentState; member in class:__anon22853::DFA
164 DFA::DFA(): currentState(NULL) {}
194 // Iterate over all resource states in currentState.
252 assert(currentState && "Missing current state");
253 currentState->isInitial = true;
/external/icu4c/common/
H A Ducnv_ct.c341 COMPOUND_TEXT_CONVERTERS currentState, tmpState; local
348 currentState = myConverterData->state;
397 if (tmpState != DO_SEARCH && currentState != tmpState) {
399 currentState = tmpState;
400 for (i = 0; escSeqCompoundText[currentState][i] != 0; i++) {
401 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][i];
411 if (currentState != tmpState) {
412 currentState = tmpState;
413 for (j = 0; escSeqCompoundText[currentState][j] != 0; j++) {
414 tmpTargetBuffer[tmpTargetBufferLength++] = escSeqCompoundText[currentState][
469 COMPOUND_TEXT_CONVERTERS currentState, tmpState; local
[all...]
/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DSIPTransaction.java222 private TransactionState currentState; field in class:SIPTransaction
356 this.currentState = null;
527 if (currentState == TransactionState.COMPLETED) {
532 if (currentState == TransactionState.CONFIRMED) {
536 if (currentState != TransactionState.TERMINATED)
537 currentState = newState;
539 newState = currentState;
555 return this.currentState;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.workbench_3.6.1.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.ui.ide_3.6.2.M20101117-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestObject.cpp1040 ScriptState* currentState = ScriptState::current(); local
1041 if (!currentState)
1043 ScriptState& state = *currentState;
1058 ScriptState* currentState = ScriptState::current(); local
1059 if (!currentState)
1061 ScriptState& state = *currentState;
1134 ScriptState* currentState = ScriptState::current(); local
1135 if (!currentState)
1137 ScriptState& state = *currentState;
1159 ScriptState* currentState local
1211 ScriptState* currentState = ScriptState::current(); local
1230 ScriptState* currentState = ScriptState::current(); local
1251 ScriptState* currentState = ScriptState::current(); local
1277 ScriptState* currentState = ScriptState::current(); local
1297 ScriptState* currentState = ScriptState::current(); local
1316 ScriptState* currentState = ScriptState::current(); local
3314 ScriptState* currentState = ScriptState::current(); local
3337 ScriptState* currentState = ScriptState::current(); local
3362 ScriptState* currentState = ScriptState::current(); local
3388 ScriptState* currentState = ScriptState::current(); local
3428 ScriptState* currentState = ScriptState::current(); local
3453 ScriptState* currentState = ScriptState::current(); local
3480 ScriptState* currentState = ScriptState::current(); local
[all...]
H A DV8TestObjectPython.cpp5386 ScriptState* currentState = ScriptState::current(); local
5387 if (!currentState)
5389 ScriptState& state = *currentState;
5409 ScriptState* currentState = ScriptState::current(); local
5410 if (!currentState)
5412 ScriptState& state = *currentState;
5447 ScriptState* currentState = ScriptState::current(); local
5448 if (!currentState)
5450 ScriptState& state = *currentState;
5471 ScriptState* currentState local
5496 ScriptState* currentState = ScriptState::current(); local
5511 ScriptState* currentState = ScriptState::current(); local
[all...]
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 665 milliseconds