Searched refs:shiftTable (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DBMPattern.java33 int[] shiftTable; field in class:BMPattern
42 this.shiftTable = new int[tableSize];
46 for (int i = 0; i < this.shiftTable.length; i ++)
47 this.shiftTable[i] = length;
52 int index = ch % this.shiftTable.length;
53 if (diff < this.shiftTable[index])
54 this.shiftTable[index] = diff;
57 index = ch % this.shiftTable.length;
58 if (diff < this.shiftTable[index])
59 this.shiftTable[inde
[all...]

Completed in 28 milliseconds