Searched refs:regex (Results 51 - 75 of 272) sorted by relevance

1234567891011

/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDebugNamesDWARFIndex.h33 GetGlobalVariables(const RegularExpression &regex,
54 void GetFunctions(const RegularExpression &regex,
H A DDWARFIndex.h38 GetGlobalVariables(const RegularExpression &regex,
62 GetFunctions(const RegularExpression &regex,
H A DAppleDWARFIndex.h39 GetGlobalVariables(const RegularExpression &regex,
59 void GetFunctions(const RegularExpression &regex,
H A DNameToDIE.h38 bool Find(const lldb_private::RegularExpression &regex,
H A DManualDWARFIndex.cpp382 const RegularExpression &regex,
385 m_set.globals.Find(regex, DIERefCallback(callback, regex.GetText()));
479 const RegularExpression &regex,
483 if (!m_set.function_basenames.Find(regex,
484 DIERefCallback(callback, regex.GetText())))
486 if (!m_set.function_fullnames.Find(regex,
487 DIERefCallback(callback, regex.GetText())))
381 GetGlobalVariables( const RegularExpression &regex, llvm::function_ref<bool(DWARFDIE die)> callback) argument
478 GetFunctions( const RegularExpression &regex, llvm::function_ref<bool(DWARFDIE die)> callback) argument
/openbsd-current/regress/usr.bin/mandoc/db/mlinks/
H A Dmlinks.c21 #include <regex.h>
/openbsd-current/sys/dev/microcode/aic7xxx/
H A Daicasm_macro_gram.y50 #include <regex.h>
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dpackagev.t64 ok(! version::is_strict($v), qq{... and "$v" should also fail STRICT regex});
70 ok( version::is_strict($v), qq{... and "$v" should pass STRICT regex});
80 ok( ! version::is_lax($v), qq{... and "$v" should fail LAX regex});
84 ok( version::is_lax($v), qq{... and "$v" should pass LAX regex});
119 # value package version->new version->new regex
134 # error thrown matches the regex in the last column. The unquoted column
139 # If all columns are marked 'pass', the regex column is left empty.
/openbsd-current/lib/libc/regex/
H A Dregerror.c43 #include <regex.h>
69 { REG_INVARG, "REG_INVARG", "invalid argument to regex routine" },
/openbsd-current/gnu/llvm/lldb/include/lldb/Symbol/
H A DVariableList.h56 // variables that match "regex" were already in "var_list".
57 size_t AppendVariablesIfUnique(const RegularExpression &regex,
/openbsd-current/gnu/llvm/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverFileRegex.h27 const lldb::BreakpointSP &bkpt, RegularExpression regex,
/openbsd-current/usr.bin/mandoc/
H A Ddba_read.c22 #include <regex.h>
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectRegexCommand.h48 RegularExpression regex; member in struct:lldb_private::CommandObjectRegexCommand::Entry
/openbsd-current/gnu/llvm/lldb/source/Breakpoint/
H A DBreakpointResolverFileRegex.cpp23 const lldb::BreakpointSP &bkpt, RegularExpression regex,
26 m_regex(std::move(regex)), m_exact_match(exact_match),
38 error.SetErrorString("BRFR::CFSD: Couldn't find regex entry.");
41 RegularExpression regex(regex_string);
70 return new BreakpointResolverFileRegex(bkpt, std::move(regex), names_set,
154 s->Printf("source regex = \"%s\", exact_match = %d",
22 BreakpointResolverFileRegex( const lldb::BreakpointSP &bkpt, RegularExpression regex, const std::unordered_set<std::string> &func_names, bool exact_match) argument
/openbsd-current/gnu/usr.bin/cvs/
H A Dcvsnt.mak134 -@erase ".\WinRel\regex.obj"
263 "$(INTDIR)/regex.obj" \
314 -@erase ".\WinDebug\regex.obj"
445 "$(INTDIR)/regex.obj" \
602 ".\lib\regex.h"\
640 ".\lib\regex.h"\
677 ".\lib\regex.h"\
719 ".\lib\regex.h"\
757 ".\lib\regex.h"\
820 ".\lib\regex
[all...]
/openbsd-current/gnu/llvm/llvm/utils/UpdateTestChecks/
H A Dcommon.py26 def __init__(self, regex):
27 self.regex = regex
31 result.regex = self.regex
35 return self.regex.search(line)
38 return self.regex.sub(repl, line)
41 return self.regex.pattern
44 return self.regex.flags
51 def __init__(self, regex, is_filter_ou
[all...]
/openbsd-current/usr.bin/cvs/
H A Dtrigger.c26 #include <regex.h>
384 char *currentline, *defaultline = NULL, *nline, *p, *q, *regex; local
431 regex = p;
439 if (strcmp(regex, "ALL") == 0 && allow_all) {
444 strcmp(regex, "DEFAULT") == 0) {
447 if (regcomp(&preg, regex, REG_NOSUB|REG_EXTENDED))
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Tools/
H A DTiny.pm337 =item like($got, $regex, $name)
339 =item like($got, $regex, $name, @diag)
341 Check that the input string matches the regex.
343 =item unlike($got, $regex, $name)
345 =item unlike($got, $regex, $name, @diag)
347 Check that the input string does not match the regex.
/openbsd-current/regress/sys/kern/sosplice/scapy/
H A Dscapy-payload-delay-connect.py80 def loggrep(file, regex, timeout):
83 if re.search(regex, line):
H A Dscapy-oobinline-delay-connect.py80 def loggrep(file, regex, timeout):
83 if re.search(regex, line):
/openbsd-current/regress/usr.sbin/relayd/
H A DProc.pm152 my($regex, $timeout) = @_;
165 my @match = grep { /$regex/ } <$fh>;
/openbsd-current/regress/usr.sbin/httpd/tests/
H A DProc.pm148 my($regex, $timeout) = @_;
161 my @match = grep { /$regex/ } <$fh>;
/openbsd-current/regress/usr.sbin/syslogd/
H A DProc.pm174 my($regex, $timeout, $count) = @_;
188 my @match = grep { /$regex/ } <$fh>;
/openbsd-current/gnu/llvm/clang/tools/clang-format/
H A Dclang-format-diff.py46 parser.add_argument('-regex', metavar='PATTERN', default=None,
53 '(case insensitive, overridden by -regex)')
80 if args.regex is not None:
81 if not re.match('^%s$' % args.regex, filename):
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DSourceManager.h48 void FindLinesMatchingRegex(RegularExpression &regex, uint32_t start_line,
149 void FindLinesMatchingRegex(FileSpec &file_spec, RegularExpression &regex,

Completed in 473 milliseconds

1234567891011