Searched refs:regex (Results 1 - 25 of 272) sorted by relevance

1234567891011

/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dgdb_regex.h1 /* Portable <regex.h>.
27 /* Request 4.2 BSD regex functions. */
29 # include <regex.h>
/openbsd-current/lib/libc/regex/
H A DMakefile.inc4 # regex sources
5 .PATH: ${LIBCSRCDIR}/regex
9 MAN+= regex.3 re_format.7
H A Dregfree.c40 #include <regex.h>
/openbsd-current/lib/libc/hidden/
H A Dregex.h1 /* $OpenBSD: regex.h,v 1.1 2015/09/14 12:22:49 guenther Exp $ */
21 #include_next <regex.h>
/openbsd-current/usr.bin/less/
H A Dpattern.h12 #include <regex.h>
/openbsd-current/gnu/usr.bin/perl/cpan/version/lib/
H A Dversion.pm16 require version::regex;
17 *version::is_lax = \&version::regex::is_lax;
18 *version::is_strict = \&version::regex::is_strict;
19 *LAX = \$version::regex::LAX;
20 *LAX_DECIMAL_VERSION = \$version::regex::LAX_DECIMAL_VERSION;
21 *LAX_DOTTED_DECIMAL_VERSION = \$version::regex::LAX_DOTTED_DECIMAL_VERSION;
22 *STRICT = \$version::regex::STRICT;
23 *STRICT_DECIMAL_VERSION = \$version::regex::STRICT_DECIMAL_VERSION;
24 *STRICT_DOTTED_DECIMAL_VERSION = \$version::regex::STRICT_DOTTED_DECIMAL_VERSION;
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DNameMatches.cpp29 RegularExpression regex(match);
30 return regex.Execute(name);
/openbsd-current/gnu/llvm/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp26 ConstString type_name, TypeFormatImpl::Flags flags, bool regex) {
30 regex ? eFormatterMatchRegex : eFormatterMatchExact;
36 ConstString type_name, bool regex) {
38 regex ? eFormatterMatchRegex : eFormatterMatchExact;
44 ConstString type_name, TypeSummaryImpl::Flags flags, bool regex) {
48 regex ? eFormatterMatchRegex : eFormatterMatchExact;
54 TypeSummaryImpl::Flags flags, bool regex) {
59 regex ? eFormatterMatchRegex : eFormatterMatchExact;
66 ConstString type_name, TypeSummaryImpl::Flags flags, bool regex) {
71 regex
24 AddFormat( TypeCategoryImpl::SharedPointer category_sp, lldb::Format format, ConstString type_name, TypeFormatImpl::Flags flags, bool regex) argument
34 AddSummary( TypeCategoryImpl::SharedPointer category_sp, TypeSummaryImplSP summary_sp, ConstString type_name, bool regex) argument
42 AddStringSummary( TypeCategoryImpl::SharedPointer category_sp, const char *string, ConstString type_name, TypeSummaryImpl::Flags flags, bool regex) argument
52 AddOneLineSummary( TypeCategoryImpl::SharedPointer category_sp, ConstString type_name, TypeSummaryImpl::Flags flags, bool regex) argument
63 AddCXXSummary( TypeCategoryImpl::SharedPointer category_sp, CXXFunctionSummaryFormat::Callback funct, const char *description, ConstString type_name, TypeSummaryImpl::Flags flags, bool regex) argument
75 AddCXXSynthetic( TypeCategoryImpl::SharedPointer category_sp, CXXSyntheticChildren::CreateFrontEndCallback generator, const char *description, ConstString type_name, ScriptedSyntheticChildren::Flags flags, bool regex) argument
87 AddFilter( TypeCategoryImpl::SharedPointer category_sp, std::vector<std::string> children, const char *description, ConstString type_name, ScriptedSyntheticChildren::Flags flags, bool regex) argument
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dopt-functions.awk22 function flag_set_p(regex, flags)
24 return (" " flags " ") ~ (" " regex " ")
29 function test_flag(regex, flags, string)
31 if (flag_set_p(regex, flags))
67 regex = langs[j]
68 gsub ( "\\+", "\\+", regex )
69 result = result test_flag(regex, flags, " | " macros[j])
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/MakeMaker/
H A Dversion.pm46 require ExtUtils::MakeMaker::version::regex;
47 *version::is_lax = \&ExtUtils::MakeMaker::version::regex::is_lax;
48 *version::is_strict = \&ExtUtils::MakeMaker::version::regex::is_strict;
49 *LAX = \$ExtUtils::MakeMaker::version::regex::LAX;
50 *STRICT = \$ExtUtils::MakeMaker::version::regex::STRICT;
/openbsd-current/gnu/usr.bin/perl/t/re/
H A Duser_prop_race_thr.t112 qr/Thread \d+ terminated abnormally: Timeout waiting for another thread to define "InLongSleep" in regex/,
/openbsd-current/gnu/llvm/libcxx/utils/libcxx/sym_check/
H A Dmatch.py20 report += 'Matching regex "%s":\n' % regex_str
34 regex = re.compile(regex_str)
37 if regex.match(s['name']):
/openbsd-current/gnu/usr.bin/cvs/lib/
H A DMakefile.am31 # Always use CVS's regular expression matcher regex.o, because of
35 # On a more mundane/detail level, having regex.h match regex.c can be
47 regex.c \
56 regex.h \
H A Dbuild_lib.com9 $ CC regex.c
17 getopt.obj,getopt1.obj,md5.obj,regex.obj,savecwd.obj,sighandle.obj,-
/openbsd-current/gnu/llvm/llvm/include/llvm/Support/
H A DRegex.h56 Regex &operator=(Regex regex) { argument
57 std::swap(preg, regex.preg);
58 std::swap(error, regex.error);
61 Regex(Regex &&regex);
64 /// isValid - returns the error encountered during regex compilation, if
69 /// getNumMatches - In a valid regex, return the number of parenthesized
71 /// many entries plus one for the whole regex (as element 0).
74 /// matches - Match the regex against a given \p String.
87 /// sub - Return the result of replacing the first match of the regex in
104 /// Turn String into a regex b
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Support/
H A DRegex.cpp22 // xlocale.h, this will cause trouble, because of missing regex-related types.
29 Regex::Regex(StringRef regex, RegexFlags Flags) { argument
32 preg->re_endp = regex.end();
39 error = llvm_regcomp(preg, regex.data(), flags|REG_PEND);
42 Regex::Regex(StringRef regex, unsigned Flags) argument
43 : Regex(regex, static_cast<RegexFlags>(Flags)) {}
45 Regex::Regex(Regex &&regex) { argument
46 preg = regex.preg;
47 error = regex.error;
48 regex
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/podlators/t/style/
H A Dobsolete-strings.t74 for my $regex (@BAD_REGEXES) {
75 if ($line =~ $regex) {
76 ok(0, "$File::Find::name contains $regex");
/openbsd-current/regress/lib/libc/regex/
H A DMakefile6 .PATH: ${.CURDIR}/../../../../lib/libc/regex
9 CFLAGS+= -I${.CURDIR}/../../../../lib/libc/regex -DREDEBUG -DPOSIX_MISTAKE
/openbsd-current/usr.bin/libtool/LT/
H A DArchive.pm45 sub get_symbollist($self, $filepath, $regex, $objlist)
63 if ($s =~ m/$regex/) {
/openbsd-current/gnu/usr.bin/texinfo/util/
H A Dinfosrch3 # infosrch does a regex search on an info manual.
23 $regex = shift;
35 if(/$regex/ && !$six){
38 }elsif(/$regex/ && $six){
87 Purpose: Extract full text from info node and search it by regex
98 actual regex.
/openbsd-current/usr.bin/dig/lib/dns/rdata/generic/
H A Dnaptr_35.c26 #include <isc/regex.h>
35 char regex[256]; local
61 cp = regex;
114 n = isc_regex_validate(regex);
185 unsigned char *regex; local
218 regex = isc_buffer_used(target);
220 RETERR(txt_valid_regex(regex));
/openbsd-current/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h25 bool regex = false);
29 bool regex = false);
33 TypeSummaryImpl::Flags flags, bool regex = false);
37 bool regex = false);
43 TypeSummaryImpl::Flags flags, bool regex = false);
50 bool regex = false);
55 bool regex = false);
/openbsd-current/gnu/llvm/lld/Common/
H A DErrorHandler.cpp22 #include <regex>
174 static std::regex regexes[] = {
175 std::regex(
178 std::regex(
180 std::regex(R"(^undefined symbol:.*\n>>> referenced by (.*):)"),
181 std::regex(
183 std::regex(
185 std::regex(R"(^duplicate symbol: .*\n>>> defined at (\S+):(\d+))"),
186 std::regex(
188 std::regex(
[all...]
/openbsd-current/gnu/llvm/lldb/packages/Python/lldbsuite/test/tools/lldb-server/
H A Dlldbgdbserverutils.py367 regex=None,
385 regex: currently only valid for receives from gdbremote. When
387 gdbremote response must match the given regex. Match groups in
388 the regex can be used for the matching portion (see capture
389 arg). It is perfectly valid to have just a regex arg without a
393 capture: if specified, is a dictionary of regex match
399 the value. This arg only makes sense when regex is specified.
403 self.regex = regex
428 match = self.regex
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/fixinc/
H A DMakefile.in72 gnu-regex.o fixlib.o
74 TESTOBJ = fixincl.o fixlib.o fixtests.o gnu-regex.o
75 FIXOBJ = fixfixes.o fixlib.o gnu-regex.o
77 HDR = server.h gnu-regex.h fixlib.h machname.h
104 gnu-regex.o : gnu-regex.c

Completed in 330 milliseconds

1234567891011