Home | History | Annotate | Download | only in regexp

Lines Matching refs:answer

2285   // will you match if you succeed?" then we can answer anything since false
2286 // implies false. So lets just return the max answer (still_to_find) since
2320 int answer = Length();
2321 if (answer >= still_to_find) return answer;
2322 if (budget <= 0) return answer;
2324 return answer + on_success()->EatsAtLeast(still_to_find - answer,
5179 RegExpNode* answer = ToNode(
5185 answer = body->ToNode(compiler, answer);
5187 return answer;
5195 RegExpNode* answer = on_success;
5200 GuardedAlternative(body->ToNode(compiler, answer)));
5205 GuardedAlternative(body->ToNode(compiler, answer)));
5207 answer = alternation;
5212 return answer;