Coverage Report

Created: 2023-05-31 04:38

/Users/buildslave/jenkins/workspace/coverage/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ClangDeclVendor.cpp
Line
Count
Source
1
//===-- ClangDeclVendor.cpp -----------------------------------------------===//
2
//
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
// See https://llvm.org/LICENSE.txt for license information.
5
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
//
7
//===----------------------------------------------------------------------===//
8
9
#include "Plugins/ExpressionParser/Clang/ClangDeclVendor.h"
10
#include "Plugins/ExpressionParser/Clang/ClangUtil.h"
11
#include "Plugins/TypeSystem/Clang/TypeSystemClang.h"
12
13
#include "lldb/Utility/ConstString.h"
14
15
using namespace lldb_private;
16
17
uint32_t ClangDeclVendor::FindDecls(ConstString name, bool append,
18
                                    uint32_t max_matches,
19
25.9k
                                    std::vector<clang::NamedDecl *> &decls) {
20
25.9k
  if (!append)
21
25.9k
    decls.clear();
22
23
25.9k
  std::vector<CompilerDecl> compiler_decls;
24
25.9k
  uint32_t ret = FindDecls(name, /*append*/ false, max_matches, compiler_decls);
25
25.9k
  for (CompilerDecl compiler_decl : compiler_decls) {
26
651
    clang::Decl *d = ClangUtil::GetDecl(compiler_decl);
27
651
    clang::NamedDecl *nd = llvm::cast<clang::NamedDecl>(d);
28
651
    decls.push_back(nd);
29
651
  }
30
25.9k
  return ret;
31
25.9k
}