Searched refs:regex (Results 126 - 150 of 272) sorted by relevance

1234567891011

/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DHashedNameToDIE.cpp406 const lldb_private::RegularExpression &regex,
425 const bool match = regex.Execute(llvm::StringRef(strp_cstr));
428 // If the regex doesn't match and we have fixed size data, we can just
466 const lldb_private::RegularExpression &regex,
475 AppendHashDataForRegularExpression(regex, &hash_data_offset, pair);
405 AppendHashDataForRegularExpression( const lldb_private::RegularExpression &regex, lldb::offset_t *hash_data_offset_ptr, Pair &pair) const argument
465 AppendAllDIEsThatMatchingRegex( const lldb_private::RegularExpression &regex, DIEInfoArray &die_info_array) const argument
H A DSymbolFileDWARFDebugMap.h115 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
122 void FindFunctions(const lldb_private::RegularExpression &regex,
/openbsd-current/bin/ed/
H A Dbuf.c36 #include <regex.h>
H A Dsub.c33 #include <regex.h>
/openbsd-current/gnu/usr.bin/perl/dist/Filter-Simple/lib/Filter/
H A DSimple.pm55 regex => [ $ws, $pod_or_DATA, $id, $exql ],
75 regex => sub { my ($t)=@_;
412 Note that the source code is passed as a single string, so any regex that
590 =item C<"regex">
612 regex => sub { s/!\[/[^/g },
613 regex => sub { s/%d/$RE{num}{int}/g },
614 regex => sub { s/%f/$RE{num}{real}/g },
632 regex, POD, and __DATA__ section with a placeholder. The
642 contains a pre-compiled regex that matches any placeholder...and
/openbsd-current/gnu/llvm/clang/tools/scan-build-py/tests/functional/cases/
H A Dtest_from_cdb.py193 for regex in patterns:
194 match = regex.match(line.strip())
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A DMM_Win32.t154 foreach my $regex (
162 like( $constants, $regex, 'constants() check' );
/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dtypes.py63 regex = re.compile(value)
64 parser.values.skip_type_regexes.append(regex)
139 '--skip-type-regex',
/openbsd-current/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymbolFileOnDemand.h138 void FindGlobalVariables(const lldb_private::RegularExpression &regex,
147 void FindFunctions(const lldb_private::RegularExpression &regex,
H A DSymbolFile.h280 virtual void FindGlobalVariables(const RegularExpression &regex,
286 virtual void FindFunctions(const RegularExpression &regex,
/openbsd-current/gnu/llvm/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.cpp234 static RegularExpression regex(llvm::StringRef("libclang_rt\\.(a|t|ub)san_"));
235 return regex;
/openbsd-current/regress/usr.sbin/syslogd/
H A Dfuncs.pl280 my $regex = shift;
295 last if /$regex/;
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test/
H A DBuilder.pm687 # Profiling showed that the regex here was a huge time waster, doing the
928 my( $self, $thing, $regex, $name ) = @_;
933 release $ctx, $self->_regex_ok( $thing, $regex, '=~', $name );
937 my( $self, $thing, $regex, $name ) = @_;
942 release $ctx, $self->_regex_ok( $thing, $regex, '!~', $name );
1114 my( $self, $regex ) = @_;
1117 return $usable_regex unless defined $regex;
1122 if( _is_qr($regex) ) {
1123 $usable_regex = $regex;
1126 elsif(( $re, $opts ) = $regex
[all...]
/openbsd-current/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp1159 const lldb_private::RegularExpression &regex, uint32_t max_matches,
1162 if (!regex.IsValid())
1177 if (!regex.Execute(var_name))
1368 void SymbolFilePDB::FindFunctions(const lldb_private::RegularExpression &regex, argument
1372 if (!regex.IsValid())
1378 auto ResolveFn = [&regex, include_inlines, &sc_list, &resolved_ids,
1381 if (Names.GetValues(regex, ids)) {
1459 // There is an assumption 'name' is not a regex
1481 const lldb_private::RegularExpression &regex, uint32_t max_matches,
1483 // When searching by regex, w
1158 FindGlobalVariables( const lldb_private::RegularExpression &regex, uint32_t max_matches, lldb_private::VariableList &variables) argument
1480 FindTypesByRegex( const lldb_private::RegularExpression &regex, uint32_t max_matches, lldb_private::TypeMap &types) argument
[all...]
/openbsd-current/gnu/llvm/lldb/source/Symbol/
H A DVariable.cpp88 bool Variable::NameMatches(const RegularExpression &regex) const {
89 if (regex.Execute(m_name.AsCString()))
92 return m_mangled.NameMatches(regex);
/openbsd-current/gnu/usr.bin/perl/cpan/Archive-Tar/bin/
H A Dptargrep148 grep regex).
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DModule.cpp616 void Module::FindGlobalVariables(const RegularExpression &regex, argument
620 symbols->FindGlobalVariables(regex, max_matches, variables);
863 void Module::FindFunctions(const RegularExpression &regex, argument
869 symbols->FindFunctions(regex, options.include_inlines, sc_list);
878 regex, eSymbolTypeAny, Symtab::eDebugAny, Symtab::eVisibilityAny,
1353 const RegularExpression &regex, SymbolType symbol_type,
1358 "Module::FindSymbolsMatchingRegExAndType (regex = %s, type = %i)",
1359 regex.GetText().str().c_str(), symbol_type);
1363 regex, symbol_type, Symtab::eDebugAny, Symtab::eVisibilityAny,
1352 FindSymbolsMatchingRegExAndType( const RegularExpression &regex, SymbolType symbol_type, SymbolContextList &sc_list, Mangled::NamePreference mangling_preference) argument
/openbsd-current/gnu/llvm/clang/tools/scan-build-py/lib/libscanbuild/
H A Dreport.py426 for regex in patterns:
427 match = regex.match(line.strip())
/openbsd-current/gnu/llvm/llvm/utils/
H A Dupdate_cc_test_checks.py164 'If specified, update CHECK lines for functions matching at least one regex')
167 help='Use more regex for x86 matching to reduce diffs between various subtargets')
398 if args.functions is None or any(re.search(regex, spell) for regex in args.functions):
/openbsd-current/usr.bin/less/
H A Dfuncs.h7 #include <regex.h>
/openbsd-current/gnu/usr.bin/perl/cpan/Encode/lib/Encode/
H A DAlias.pm332 If you are using a regex here, you have to use the quotes as shown or
333 it won't work. Also note that regex handling is tricky even for the
343 Use this with even more caution than the regex version.
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectType.cpp324 "can't use --regex and --recognizer-function at the same time");
331 "can't use --regex and --recognizer-function at the same time");
694 "regex format error (maybe this is not really a regex?)");
1037 static bool ShouldListItem(llvm::StringRef s, RegularExpression *regex) { argument
1038 // If we have a regex, it can match two kinds of results:
1039 // - An item created with that same regex string (exact string match), so
1041 // - Items that match the regex.
1042 // No regex means list everything.
1043 return regex
2090 std::unique_ptr<RegularExpression> regex; variable
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dsource.c1410 forward_search_command (char *regex, int from_tty)
1420 msg = (char *) re_comp (regex);
1505 reverse_search_command (char *regex, int from_tty)
1515 msg = (char *) re_comp (regex);
1603 Always use the GNU regex routine for consistency across all hosts.
1604 Our current GNU regex.c does not have all the POSIX features, so this is
1654 "Search for regular expression (see regex(3)) from last line listed.\n\
1659 "Search backward for regular expression (see regex(3)) from last line listed.\n\
1401 forward_search_command(char *regex, int from_tty) argument
1496 reverse_search_command(char *regex, int from_tty) argument
/openbsd-current/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-decode.c666 documentation of commands that match our regex in either their
671 struct re_pattern_buffer *regex, char *prefix)
681 returnvalue=re_search(regex,c->name,strlen(c->name),0,strlen(c->name),NULL);
697 if (re_search(regex,c->doc,strlen(c->doc),0,strlen(c->doc),NULL) >=0)
714 apropos_cmd (stream,*c->prefixlist,regex,c->prefixname);
667 apropos_cmd(struct ui_file *stream, struct cmd_list_element *commandlist, struct re_pattern_buffer *regex, char *prefix) argument
/openbsd-current/gnu/usr.bin/cvs/emx/
H A DMakefile.in156 ${lib_dir}/regex.c \
250 ${lib_dir}/regex.o \

Completed in 439 milliseconds

1234567891011