static int findCodeTokens(L tok, S... tokens) { ret findCodeTokens(tok, 1, false, tokens); } static int findCodeTokens(L tok, boolean ignoreCase, S... tokens) { ret findCodeTokens(tok, 1, ignoreCase, tokens); } static int findCodeTokens(L tok, int startIdx, boolean ignoreCase, S... tokens) { ret findCodeTokens(tok, startIdx, ignoreCase, tokens, null); } static HashSet findCodeTokens_specials = lithashset("*", "", "", "", "\\*"); static bool findCodeTokens_debug; static int findCodeTokens_indexed, findCodeTokens_unindexed; static int findCodeTokens_bails, findCodeTokens_nonbails; static int findCodeTokens(L tok, int startIdx, boolean ignoreCase, S[] tokens, O condition) { if (findCodeTokens_debug) { if (eq(getClassName(tok), "main$IndexedList2")) findCodeTokens_indexed++; else findCodeTokens_unindexed++; } int end = tok.size()-tokens.length*2+2, nTokens = tokens.length; int i = startIdx | 1; // bail out early if first token not found (works great with IndexedList) S firstToken = tokens[0]; if (!ignoreCase && !findCodeTokens_specials.contains(firstToken)) { ifclass IndexedList2 if (tok instanceof IndexedList2 && !tok.contains(firstToken)) { ++findCodeTokens_bails; ret -1; } ++findCodeTokens_nonbails; endif // quickly scan for first token while (i < end && !firstToken.equals(tok.get(i))) i += 2; } outer: for (; i < end; i += 2) { for (int j = 0; j < nTokens; j++) { S p = tokens[j], t = tok.get(i+j*2); boolean match; if (eq(p, "*")) match = true; else if (eq(p, "")) match = isQuoted(t); else if (eq(p, "")) match = isIdentifier(t); else if (eq(p, "")) match = isInteger(t); else if (eq(p, "\\*")) match = eq("*", t); else match = ignoreCase ? eqic(p, t) : eq(p, t); if (!match) continue outer; } if (condition == null || checkTokCondition(condition, tok, i-1)) // pass N index return i; } return -1; }