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

/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DArrayCompiler.java351 private static final int QUANTIFIER_EXPAND_LIMIT_SIZE = 50; // was 50 field in class:ArrayCompiler
382 if (infinite && (qn.lower <= 1 || tlen * qn.lower <= QUANTIFIER_EXPAND_LIMIT_SIZE)) {
383 if (qn.lower == 1 && tlen > QUANTIFIER_EXPAND_LIMIT_SIZE) {
404 (qn.upper == 1 || (tlen + OPSize.PUSH) * qn.upper <= QUANTIFIER_EXPAND_LIMIT_SIZE )) {
448 if (infinite && (qn.lower <= 1 || tlen * qn.lower <= QUANTIFIER_EXPAND_LIMIT_SIZE)) {
449 if (qn.lower == 1 && tlen > QUANTIFIER_EXPAND_LIMIT_SIZE) {
492 (qn.upper == 1 || (tlen + OPSize.PUSH) * qn.upper <= QUANTIFIER_EXPAND_LIMIT_SIZE)) {

Completed in 47 milliseconds