MCPcopy Create free account
hub / github.com/cel-expr/cel-cpp / MakeRE2Options

Function MakeRE2Options

internal/re2_options.h:24–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22namespace cel::internal {
23
24inline RE2::Options MakeRE2Options() {
25 RE2::Options options;
26 options.set_log_errors(false);
27 return options;
28}
29
30inline absl::Status CheckRE2(const RE2& re, int max_program_size) {
31 if (!re.ok()) {

Callers 10

BuildRegexProgramMethod · 0.85
CheckPatternFunction · 0.85
ExtractStringFunction · 0.85
CaptureStringFunction · 0.85
CaptureStringNFunction · 0.85
ExtractFunction · 0.85
ExtractAllFunction · 0.85
ReplaceAllFunction · 0.85
ReplaceNFunction · 0.85
RegisterRegexFunctionsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected