Lines Matching refs:result
76 // On a successful match, the result is a JSArray containing
77 // captured positions. On a failure, the result is the null value.
688 // If result is RETRY, the string has changed representation, and we
701 IrregexpInterpreter::Result result =
704 DCHECK_IMPLIES(result == IrregexpInterpreter::EXCEPTION,
707 switch (result) {
712 return result;
807 Handle<RegExpMatchInfo> result =
809 if (*result != *last_match_info) {
815 isolate->native_context()->set_regexp_last_match_info(*result);
824 result->SetCapture(i, match[i]);
825 result->SetCapture(i + 1, match[i + 1]);
828 result->SetLastSubject(*subject);
829 result->SetLastInput(*subject);
830 return result;
1006 RegExpCompiler::CompilationResult result = compiler.Assemble(
1016 Handle<Code> c = Handle<Code>::cast(result.code);
1023 Handle<ByteArray> bytecode = Handle<ByteArray>::cast(result.code);
1030 if (result.error != RegExpError::kNone) {
1032 result.error == RegExpError::kStackOverflow) {
1035 data->error = result.error;
1038 data->code = result.code;
1039 data->register_count = result.num_registers;
1041 return result.Succeeded();
1204 // After a failed match we shift back by one result.