llvm/clang-tools-extra/clangd/index/Symbol.cpp

//===--- Symbol.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 "Symbol.h"

#include <cmath>

namespace clang {
namespace clangd {

llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, Symbol::SymbolFlag F) {}

llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const Symbol &S) {}

float quality(const Symbol &S) {}

SymbolSlab::const_iterator SymbolSlab::find(const SymbolID &ID) const {}

// Copy the underlying data of the symbol into the owned arena.
static void own(Symbol &S, llvm::UniqueStringSaver &Strings) {}

void SymbolSlab::Builder::insert(const Symbol &S) {}

SymbolSlab SymbolSlab::Builder::build() && {}

llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, const SymbolSlab &Slab) {}
} // namespace clangd
} // namespace clang