reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/RegularExpression.h
   57   bool Execute(llvm::StringRef string,

References

tools/lldb/include/lldb/Core/UniqueCStringMap.h
  136       if (regex.Execute(pos->cstring.GetCString()))
tools/lldb/include/lldb/DataFormatters/FormattersContainer.h
  291       if (regex.Execute(key_str)) {
tools/lldb/source/Commands/CommandCompletions.cpp
  462         if (!func_name.IsEmpty() && m_regex.Execute(func_name.GetStringRef()))
tools/lldb/source/Commands/CommandObjectType.cpp
 1077             } else if (formatter_regex->Execute(name.GetStringRef())) {
 1099             } else if (formatter_regex->Execute(regex.GetText())) {
 1131               } else if (category_regex->Execute(
 2124             } else if (regex->Execute(llvm::StringRef::withNullAsEmpty(
tools/lldb/source/Core/Disassembler.cpp
  374     if (function_name && avoid_regex->Execute(function_name)) {
  810       if (g_reg_exp.Execute(line, &matches))
  874       bool reg_exp_success = g_reg_exp.Execute(line, &matches);
tools/lldb/source/Core/Mangled.cpp
  343   if (m_mangled && regex.Execute(m_mangled.AsCString()))
  347   return demangled && regex.Execute(demangled.AsCString());
tools/lldb/source/Core/SourceManager.cpp
  598     if (regex.Execute(buffer)) {
tools/lldb/source/Host/common/Socket.cpp
  287   if (g_regex.Execute(host_and_port, &matches)) {
tools/lldb/source/Interpreter/CommandObjectRegexCommand.cpp
   34     if (pos->regex.Execute(command, &matches)) {
tools/lldb/source/Interpreter/OptionArgParser.cpp
  216     if (g_symbol_plus_offset_regex.Execute(sref, &matches)) {
tools/lldb/source/Plugins/Disassembler/llvm/DisassemblerLLVMC.cpp
  386         if (s_regex.Execute(out_string, &matches)) {
tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRuntimeV2.cpp
  613               !regex_up->Execute(llvm::StringRef(class_name)))
  651           if (regex_up && !regex_up->Execute(llvm::StringRef()))
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
  448            .Execute(coord_s, &matches) &&
  449       !RegularExpression("^([0-9]+),([0-9]+)$").Execute(coord_s, &matches) &&
  450       !RegularExpression("^([0-9]+)$").Execute(coord_s, &matches))
 4146       if (!match_type_list.Execute(option_val)) {
tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  141         if (g_bitfield_regex.Execute(slice_str, &matches)) {
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunication.cpp
  351                 if (response_regex.Execute(echo_response.GetStringRef())) {
tools/lldb/source/Plugins/SymbolFile/DWARF/DWARFUnit.cpp
  538       if (llvm_gcc_regex.Execute(llvm::StringRef(producer_cstr))) {
  544         if (g_clang_version_regex.Execute(llvm::StringRef(producer_cstr),
tools/lldb/source/Plugins/SymbolFile/DWARF/DebugNamesDWARFIndex.cpp
  105       if (!regex.Execute(nte.getString()))
  248       if (!regex.Execute(nte.getString()))
tools/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.cpp
  416     const bool match = regex.Execute(llvm::StringRef(strp_cstr));
tools/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp
 1162     if (!regex.Execute(var_name))
 1499       if (!regex.Execute(type_name))
tools/lldb/source/Symbol/Symtab.cpp
  689         if (regexp.Execute(name))
  714         if (regexp.Execute(name))
tools/lldb/source/Symbol/Variable.cpp
   91   if (regex.Execute(m_name.AsCString()))
  392     if (!g_regex.Execute(variable_expr_path, &matches)) {
tools/lldb/source/Target/InstrumentationRuntime.cpp
   58     if (runtime_regex.Execute(file_spec.GetFilename().GetCString()) ||
tools/lldb/source/Target/StackFrameRecognizer.cpp
  111         if (!entry.module_regexp->Execute(module_name.GetStringRef())) continue;
  117         if (!entry.symbol_regexp->Execute(function_name.GetStringRef()))
tools/lldb/source/Target/ThreadPlanStepInRange.cpp
  366             avoid_regexp_to_use->Execute(frame_function_name, &matches);
tools/lldb/source/Utility/FileSpec.cpp
  495   return g_source_file_regex.Execute(extension.GetStringRef());
tools/lldb/source/Utility/NameMatches.cpp
   30     return regex.Execute(name);
tools/lldb/unittests/Utility/RegularExpressionTest.cpp
   21   EXPECT_TRUE(r1.Execute("916"));
   30   EXPECT_TRUE(r2.Execute("916"));
   40   EXPECT_FALSE(r1.Execute("916"));
   50   EXPECT_FALSE(r1.Execute("ab"));
   60   EXPECT_TRUE(r1.Execute("9a:513b", &matches));