[lldb][NFC] Fix all formatting errors in .cpp file headers
Summary:
A *.cpp file header in LLDB (and in LLDB) should like this:
```
//===-- TestUtilities.cpp -------------------------------------------------===//
```
However in LLDB most of our source files have arbitrary changes to this format and
these changes are spreading through LLDB as folks usually just use the existing
source files as templates for their new files (most notably the unnecessary
editor language indicator `-*- C++ -*-` is spreading and in every review
someone is pointing out that this is wrong, resulting in people pointing out that this
is done in the same way in other files).
This patch removes most of these inconsistencies including the editor language indicators,
all the different missing/additional '-' characters, files that center the file name, missing
trailing `===//` (mostly caused by clang-format breaking the line).
Reviewers: aprantl, espindola, jfb, shafik, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: dexonsmith, wuzish, emaste, sdardis, nemanjai, kbarton, MaskRay, atanasyan, arphaman, jfb, abidh, jsji, JDevlieghere, usaxena95, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D73258
2020-01-24 15:23:27 +08:00
|
|
|
//===-- OptionGroupBoolean.cpp --------------------------------------------===//
|
2011-05-04 06:09:39 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// 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
|
2011-05-04 06:09:39 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-05-14 04:21:08 +08:00
|
|
|
#include "lldb/Interpreter/OptionGroupBoolean.h"
|
2011-05-04 06:09:39 +08:00
|
|
|
|
2017-03-23 07:33:16 +08:00
|
|
|
#include "lldb/Host/OptionParser.h"
|
2011-05-04 06:09:39 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
OptionGroupBoolean::OptionGroupBoolean(uint32_t usage_mask, bool required,
|
|
|
|
const char *long_option,
|
|
|
|
int short_option, const char *usage_text,
|
2012-09-28 06:26:11 +08:00
|
|
|
bool default_value,
|
|
|
|
bool no_argument_toggle_default)
|
2011-05-04 06:09:39 +08:00
|
|
|
: m_value(default_value, default_value) {
|
|
|
|
m_option_definition.usage_mask = usage_mask;
|
|
|
|
m_option_definition.required = required;
|
|
|
|
m_option_definition.long_option = long_option;
|
|
|
|
m_option_definition.short_option = short_option;
|
2014-07-10 00:32:07 +08:00
|
|
|
m_option_definition.validator = nullptr;
|
2013-09-06 00:42:23 +08:00
|
|
|
m_option_definition.option_has_arg = no_argument_toggle_default
|
|
|
|
? OptionParser::eNoArgument
|
|
|
|
: OptionParser::eRequiredArgument;
|
2018-09-27 02:50:19 +08:00
|
|
|
m_option_definition.enum_values = {};
|
2012-09-28 06:26:11 +08:00
|
|
|
m_option_definition.completion_type = 0;
|
|
|
|
m_option_definition.argument_type = eArgTypeBoolean;
|
2011-05-04 06:09:39 +08:00
|
|
|
m_option_definition.usage_text = usage_text;
|
|
|
|
}
|
|
|
|
|
|
|
|
OptionGroupBoolean::~OptionGroupBoolean() {}
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
Status OptionGroupBoolean::SetOptionValue(uint32_t option_idx,
|
|
|
|
llvm::StringRef option_value,
|
|
|
|
ExecutionContext *execution_context) {
|
|
|
|
Status error;
|
2013-09-06 00:42:23 +08:00
|
|
|
if (m_option_definition.option_has_arg == OptionParser::eNoArgument) {
|
2018-05-01 00:49:04 +08:00
|
|
|
// Not argument, toggle the default value and mark the option as having
|
|
|
|
// been set
|
2012-09-28 06:26:11 +08:00
|
|
|
m_value.SetCurrentValue(!m_value.GetDefaultValue());
|
|
|
|
m_value.SetOptionWasSet();
|
|
|
|
} else {
|
2016-09-24 01:48:13 +08:00
|
|
|
error = m_value.SetValueFromString(option_value);
|
2012-09-28 06:26:11 +08:00
|
|
|
}
|
2011-05-04 06:09:39 +08:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2016-08-12 07:51:28 +08:00
|
|
|
void OptionGroupBoolean::OptionParsingStarting(
|
|
|
|
ExecutionContext *execution_context) {
|
2011-05-04 06:09:39 +08:00
|
|
|
m_value.Clear();
|
|
|
|
}
|