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.h152 : m_match_type(match_type) { in TypeNameSpecifierImpl()
158 : m_match_type(lldb::eFormatterMatchExact) { in TypeNameSpecifierImpl()
166 : m_match_type(lldb::eFormatterMatchExact) { in TypeNameSpecifierImpl()
185 lldb::FormatterMatchType GetMatchType() { return m_match_type; } in GetMatchType()
187 bool IsRegex() { return m_match_type == lldb::eFormatterMatchRegex; } in IsRegex()
190 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()
270 switch (m_match_type) { in SearchCallback()
396 if (m_match_type == Breakpoint::Regexp)
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectType.cpp49 FormatterMatchType m_match_type; member in ScriptAddOptions
56 : m_flags(flags), m_match_type(match_type), m_name(name), in ScriptAddOptions()
67 FormatterMatchType m_match_type; member in SynthAddOptions
74 m_match_type(match_type), m_category(catg) {} in SynthAddOptions()
140 FormatterMatchType m_match_type = eFormatterMatchExact; member in CommandObjectTypeSummaryAdd::CommandOptions
216 options->m_match_type, options->m_category, in IOHandlerInputComplete()
335 if (m_match_type == eFormatterMatchCallback) in SetOptionValue()
339 m_match_type = eFormatterMatchRegex; in SetOptionValue()
342 if (m_match_type == eFormatterMatchRegex) in SetOptionValue()
346 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