Home
last modified time | relevance | path

Searched refs:statetable (Results 1 – 6 of 6) sorted by relevance

/external/tagsoup/templates/org/ccil/cowan/tagsoup/
DHTMLScanner.java85 for (int i = 0; i < statetable.length; i += 4) {
86 if (statetable[i] > maxState) {
87 maxState = statetable[i];
89 if (statetable[i + 1] > maxChar) {
90 maxChar = statetable[i + 1];
100 for (int i = 0; i < statetable.length; i += 4) {
101 if (theState != statetable[i]) {
105 if (statetable[i+1] == 0) {
107 action = statetable[i+2];
109 else if (statetable[i+1] == ch) {
[all …]
/external/tagsoup/src/org/ccil/cowan/tagsoup/
DHTMLScanner.java97 private static int[] statetable = { field in HTMLScanner
306 for (int i = 0; i < statetable.length; i += 4) {
307 if (statetable[i] > maxState) {
308 maxState = statetable[i];
310 if (statetable[i + 1] > maxChar) {
311 maxChar = statetable[i + 1];
321 for (int i = 0; i < statetable.length; i += 4) {
322 if (theState != statetable[i]) {
326 if (statetable[i+1] == 0) {
328 action = statetable[i+2];
[all …]
/external/tagsoup/stml/
Dstml.rnc16 start = statetable
19 statetable = element statetable {
/external/icu/icu4c/source/common/
Drbbi.cpp1031 int32_t RuleBasedBreakIterator::handleNext(const RBBIStateTable *statetable) { in handleNext() argument
1041 const char *tableData = statetable->fTableData; in handleNext()
1042 uint32_t tableRowLen = statetable->fRowLen; in handleNext()
1070 if (statetable->fFlags & RBBI_BOF_REQUIRED) { in handleNext()
1222 int32_t RuleBasedBreakIterator::handlePrevious(const RBBIStateTable *statetable) { in handlePrevious() argument
1258 (statetable->fTableData + (statetable->fRowLen * state)); in handlePrevious()
1261 if (statetable->fFlags & RBBI_BOF_REQUIRED) { in handlePrevious()
1335 (statetable->fTableData + (statetable->fRowLen * state)); in handlePrevious()
/external/icu/icu4c/source/common/unicode/
Drbbi.h674 int32_t handlePrevious(const RBBIStateTable *statetable);
685 int32_t handleNext(const RBBIStateTable *statetable);
/external/tagsoup/
DCHANGES239 S in the statetable now means \r and \n and \t as well as space