Home
last modified time | relevance | path

Searched refs:m_match_type (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersContainer.h52 lldb::FormatterMatchType m_match_type; variable
80 : m_name(type_name), m_match_type(lldb::eFormatterMatchExact) {} in TypeMatcher()
84 m_match_type(lldb::eFormatterMatchRegex) {} in TypeMatcher()
89 m_match_type(type_specifier->GetMatchType()) { in TypeMatcher()
90 if (m_match_type == lldb::eFormatterMatchRegex) in TypeMatcher()
97 switch (m_match_type) { in Matches()
117 lldb::FormatterMatchType GetMatchType() const { return m_match_type; } in GetMatchType()
121 if (m_match_type == lldb::eFormatterMatchExact) in GetMatchString()
123 if (m_match_type == lldb::eFormatterMatchRegex) in GetMatchString()
H A DFormatClasses.h158 : m_match_type(match_type) { in TypeNameSpecifierImpl()
164 : m_match_type(lldb::eFormatterMatchExact) { in TypeNameSpecifierImpl()
172 : m_match_type(lldb::eFormatterMatchExact) { in TypeNameSpecifierImpl()
191 lldb::FormatterMatchType GetMatchType() { return m_match_type; } in GetMatchType()
193 bool IsRegex() { return m_match_type == lldb::eFormatterMatchRegex; } in IsRegex()
196 lldb::FormatterMatchType m_match_type = lldb::eFormatterMatchExact;
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp32 m_match_type(type), m_language(language), m_skip_prologue(skip_prologue) { in BreakpointResolverName()
33 if (m_match_type == Breakpoint::Regexp) { in BreakpointResolverName()
52 m_match_type(Breakpoint::Exact), m_language(language), in BreakpointResolverName()
64 m_match_type(Breakpoint::Exact), m_language(language), in BreakpointResolverName()
78 m_match_type(Breakpoint::Regexp), m_language(language), in BreakpointResolverName()
86 m_regex(rhs.m_regex), m_match_type(rhs.m_match_type), in BreakpointResolverName()
272 switch (m_match_type) { in SearchCallback()
398 if (m_match_type == Breakpoint::Regexp) in GetDescription()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp51 FormatterMatchType m_match_type; member in ScriptAddOptions
59 : m_flags(flags), m_match_type(match_type), m_name(name), in ScriptAddOptions()
70 FormatterMatchType m_match_type; member in SynthAddOptions
77 m_match_type(match_type), m_category(catg) {} in SynthAddOptions()
143 FormatterMatchType m_match_type = eFormatterMatchExact; member in CommandObjectTypeSummaryAdd::CommandOptions
222 options->m_match_type, options->m_category, in IOHandlerInputComplete()
342 if (m_match_type == eFormatterMatchCallback) in SetOptionValue()
346 m_match_type = eFormatterMatchRegex; in SetOptionValue()
349 if (m_match_type == eFormatterMatchRegex) in SetOptionValue()
353 m_match_type = eFormatterMatchCallback; in SetOptionValue()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolverName.h86 Breakpoint::MatchType m_match_type;
87 Breakpoint::MatchType m_match_type; global() variable