llvm/lldb/source/Core/SourceLocationSpec.cpp

//===-- SourceLocationSpec.cpp --------------------------------------------===//
//
// 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/Core/SourceLocationSpec.h"
#include "lldb/Utility/StreamString.h"
#include "llvm/ADT/StringExtras.h"
#include <optional>

usingnamespacelldb;
usingnamespacelldb_private;

SourceLocationSpec::SourceLocationSpec(FileSpec file_spec, uint32_t line,
                                       std::optional<uint16_t> column,
                                       bool check_inlines, bool exact_match)
    :{}

operator bool()

bool SourceLocationSpec::operator!() const {}

bool SourceLocationSpec::operator==(const SourceLocationSpec &rhs) const {}

bool SourceLocationSpec::operator!=(const SourceLocationSpec &rhs) const {}

bool SourceLocationSpec::operator<(const SourceLocationSpec &rhs) const {}

Stream &lldb_private::operator<<(Stream &s, const SourceLocationSpec &loc) {}

int SourceLocationSpec::Compare(const SourceLocationSpec &lhs,
                                const SourceLocationSpec &rhs) {}

bool SourceLocationSpec::Equal(const SourceLocationSpec &lhs,
                               const SourceLocationSpec &rhs, bool full) {}

void SourceLocationSpec::Dump(Stream &s) const {}

std::string SourceLocationSpec::GetString() const {}

std::optional<uint32_t> SourceLocationSpec::GetLine() const {}

std::optional<uint16_t> SourceLocationSpec::GetColumn() const {}