Files
llvm-project/lldb/source/Utility/NameMatches.cpp
T

35 lines
1.1 KiB
C++
Raw Normal View History

//===-- NameMatches.cpp -----------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "lldb/Utility/NameMatches.h"
2017-02-02 21:39:50 +00:00
#include "lldb/Utility/RegularExpression.h"
#include "llvm/ADT/StringRef.h"
using namespace lldb_private;
2017-02-20 11:35:33 +00:00
bool lldb_private::NameMatches(llvm::StringRef name, NameMatch match_type,
llvm::StringRef match) {
switch (match_type) {
2017-02-20 11:35:33 +00:00
case NameMatch::Ignore:
return true;
2017-02-20 11:35:33 +00:00
case NameMatch::Equals:
return name == match;
2017-02-20 11:35:33 +00:00
case NameMatch::Contains:
return name.contains(match);
2017-02-20 11:35:33 +00:00
case NameMatch::StartsWith:
return name.startswith(match);
2017-02-20 11:35:33 +00:00
case NameMatch::EndsWith:
return name.endswith(match);
2017-02-20 11:35:33 +00:00
case NameMatch::RegularExpression: {
RegularExpression regex(match);
return regex.Execute(name);
2017-02-20 11:35:33 +00:00
}
}
return false;
}