Searched refs:NameMatch (Results 1 - 9 of 9) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DNameMatches.cpp15 bool lldb_private::NameMatches(llvm::StringRef name, NameMatch match_type,
18 case NameMatch::Ignore:
20 case NameMatch::Equals:
22 case NameMatch::Contains:
24 case NameMatch::StartsWith:
26 case NameMatch::EndsWith:
28 case NameMatch::RegularExpression: {
H A DProcessInfo.cpp251 if (m_name_match_type == NameMatch::Ignore)
299 if (m_name_match_type != NameMatch::Ignore)
331 m_name_match_type = NameMatch::Ignore;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DNameMatches.h15 enum class NameMatch { class in namespace:lldb_private
24 bool NameMatches(llvm::StringRef name, NameMatch match_type,
H A DProcessInfo.h201 : m_match_info(), m_name_match_type(NameMatch::Ignore),
205 NameMatch process_name_match_type)
220 NameMatch GetNameMatchType() const { return m_name_match_type; }
222 void SetNameMatchType(NameMatch name_match_type) {
247 NameMatch m_name_match_type;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp1087 case NameMatch::Ignore:
1089 case NameMatch::Equals:
1092 case NameMatch::Contains:
1095 case NameMatch::StartsWith:
1098 case NameMatch::EndsWith:
1101 case NameMatch::RegularExpression:
1228 match_info.SetNameMatchType(NameMatch::Equals);
1234 match_info.SetNameMatchType(NameMatch::EndsWith);
1240 match_info.SetNameMatchType(NameMatch::StartsWith);
1246 match_info.SetNameMatchType(NameMatch
[all...]
H A DCommandObjectProcess.cpp348 match_info.SetNameMatchType(NameMatch::StartsWith);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerCommon.cpp353 NameMatch name_match = llvm::StringSwitch<NameMatch>(value)
354 .Case("equals", NameMatch::Equals)
355 .Case("starts_with", NameMatch::StartsWith)
356 .Case("ends_with", NameMatch::EndsWith)
357 .Case("contains", NameMatch::Contains)
358 .Case("regex", NameMatch::RegularExpression)
359 .Default(NameMatch::Ignore);
361 if (name_match == NameMatch::Ignore)
H A DGDBRemoteCommunicationClient.cpp2154 NameMatch name_match_type = match_info.GetNameMatchType();
2156 case NameMatch::Ignore:
2160 case NameMatch::Equals:
2164 case NameMatch::Contains:
2168 case NameMatch::StartsWith:
2172 case NameMatch::EndsWith:
2176 case NameMatch::RegularExpression:
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2794 match_info.SetNameMatchType(NameMatch::Equals);

Completed in 899 milliseconds