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

  /external/tagsoup/templates/org/ccil/cowan/tagsoup/
HTMLScanner.java 71 * you had. If it isn't -1, then action = statetable[value + 2] and
72 * next state = statetable[value + 3]. That is, the value points
73 * to the start of the answer 4-tuple in the statetable.
77 * The highest character value seen in the statetable.
85 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)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
HTMLScanner.java 97 private static int[] statetable = { field in class:HTMLScanner
292 * you had. If it isn't -1, then action = statetable[value + 2] and
293 * next state = statetable[value + 3]. That is, the value points
294 * to the start of the answer 4-tuple in the statetable.
298 * The highest character value seen in the statetable.
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]
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
rbbi.h 715 * @param statetable state table used of moving backwards
718 int32_t handlePrevious(const RBBIStateTable *statetable);
726 * @param statetable state table used of moving forwards
729 int32_t handleNext(const RBBIStateTable *statetable);
  /external/icu/icu4c/source/common/unicode/
rbbi.h 715 * @param statetable state table used of moving backwards
718 int32_t handlePrevious(const RBBIStateTable *statetable);
726 * @param statetable state table used of moving forwards
729 int32_t handleNext(const RBBIStateTable *statetable);
  /external/chromium_org/third_party/icu/source/common/
rbbi.cpp     [all...]
  /external/icu/icu4c/source/common/
rbbi.cpp     [all...]

Completed in 162 milliseconds