Searched refs:Style (Results 51 - 75 of 134) sorted by relevance

123456

/freebsd-13-stable/contrib/llvm-project/clang/include/clang/CrossTU/
H A DCrossTranslationUnit.h108 llvm::sys::path::Style PathStyle = llvm::sys::path::Style::posix);
250 const llvm::sys::path::Style PathStyle = llvm::sys::path::Style::posix;
/freebsd-13-stable/contrib/llvm-project/clang/lib/Tooling/Refactoring/
H A DAtomicChange.cpp146 const format::FormatStyle &Style) {
177 Style);
305 createReplacementsForHeaders(FilePath, Code, Changes, Spec.Style);
328 format::cleanupAroundReplacements(Code, AllReplaces, Spec.Style);
346 Spec.Style, *ChangedCode, AllReplaces.getAffectedRanges(), FilePath);
356 *ChangedCode, Spec.Style.ColumnLimit, Spec.Format, AllReplaces);
359 format::reformat(Spec.Style, *ChangedCode, FormatRanges, FilePath);
144 createReplacementsForHeaders(llvm::StringRef FilePath, llvm::StringRef Code, llvm::ArrayRef<AtomicChange> Changes, const format::FormatStyle &Style) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DFormatToken.h520 bool opensBlockOrBlockTypeList(const FormatStyle &Style) const {
522 if (is(tok::l_brace) && BlockKind == BK_BracedInit && Style.isCSharp())
529 (!Style.Cpp11BracedListStyle && NestingLevel == 0))) ||
530 (is(tok::less) && (Style.Language == FormatStyle::LK_Proto ||
531 Style.Language == FormatStyle::LK_TextProto));
536 bool isCppStructuredBinding(const FormatStyle &Style) const {
537 if (!Style.isCpp() || isNot(tok::l_square))
548 bool closesBlockOrBlockTypeList(const FormatStyle &Style) const {
551 return MatchingParen && MatchingParen->opensBlockOrBlockTypeList(Style);
608 TokenRole(const FormatStyle &Style) argument
641 const FormatStyle &Style; member in class:clang::format::TokenRole
646 CommaSeparatedList(const FormatStyle &Style) argument
[all...]
H A DUnwrappedLineParser.h77 UnwrappedLineParser(const FormatStyle &Style,
212 const FormatStyle &Style; member in class:clang::format::UnwrappedLineParser
H A DNamespaceEndCommentsFixer.cpp199 const FormatStyle &Style)
200 : TokenAnalyzer(Env, Style) {}
248 if (Style.CompactNamespaces) {
H A DSortJavaScriptImports.cpp121 JavaScriptImportSorter(const Environment &Env, const FormatStyle &Style) argument
122 : TokenAnalyzer(Env, Style),
440 tooling::Replacements sortJavaScriptImports(const FormatStyle &Style, argument
445 return JavaScriptImportSorter(Environment(Code, FileName, Ranges), Style)
H A DContinuationIndenter.h54 ContinuationIndenter(const FormatStyle &Style,
191 FormatStyle Style; member in class:clang::format::ContinuationIndenter
H A DUsingDeclarationsSorter.cpp181 const FormatStyle &Style)
182 : TokenAnalyzer(Env, Style) {}
180 UsingDeclarationsSorter(const Environment &Env, const FormatStyle &Style) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/
H A DDIPrinter.cpp78 if (Style == OutputStyle::LLVM)
80 else if (Style == OutputStyle::GNU && Info.Discriminator != 0)
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-cxxfilt/
H A Dllvm-cxxfilt.cpp21 enum Style { enum
32 static cl::opt<Style>
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostInfoNetBSD.cpp87 g_program_filespec.SetFile(path, FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/posix/
H A DFileSystemPosix.cpp51 dst.SetFile(buf, FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymCreator.cpp29 llvm::sys::path::Style Style) {
30 llvm::StringRef directory = llvm::sys::path::parent_path(Path, Style);
31 llvm::StringRef filename = llvm::sys::path::filename(Path, Style);
28 insertFile(StringRef Path, llvm::sys::path::Style Style) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DCompileUnitIndex.cpp216 llvm::sys::path::Style style = working_dir.String.startswith("/")
217 ? llvm::sys::path::Style::posix
218 : llvm::sys::path::Style::windows;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp169 sys::path::Style Style = PathFromExe.startswith("/") local
170 ? sys::path::Style::posix
171 : sys::path::Style::windows;
172 StringRef PdbName = sys::path::filename(PathFromExe, Style);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/
H A DLocateSymbolFileMacOSX.cpp305 module_spec.GetFileSpec().SetFile(str.c_str(), FileSpec::Style::native);
320 FileSpec::Style::native);
507 FileSpec::Style::native);
515 FileSpec::Style::native);
531 FileSpec::Style::native);
540 FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DSBAttachInfo.cpp35 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
45 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
111 m_opaque_sp->GetExecutableFile().SetFile(path, FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Target/
H A DPathMappingList.cpp193 fixed.SetFile(it.first.GetStringRef(), FileSpec::Style::native);
227 FileSpec prefix_spec(prefix_ref, FileSpec::Style::native);
234 new_spec.SetFile(entry.second.GetCString(), FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLine.h128 sys::path::Style Style = sys::path::Style::native) const;
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DEnvironment.h90 StringRef Style) {
89 format(const lldb_private::Environment &Env, raw_ostream &Stream, StringRef Style) argument
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-enumerations.h241 StringRef Style) {
240 format(const lldb_private::Vote &V, llvm::raw_ostream &Stream, StringRef Style) argument
/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueFileSpec.cpp76 m_current_value.SetFile(value.str(), FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Refactoring/
H A DAtomicChange.h161 format::FormatStyle Style = format::getNoStyle(); member in struct:clang::tooling::ApplyChangesSpec
166 // kViolations: Format lines exceeding the `ColumnLimit` in `Style`.
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp76 process_info.GetExecutableFile().SetFile(pathname, FileSpec::Style::native);
78 process_info.GetExecutableFile().SetFile(cstr, FileSpec::Style::native);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DTypeHashing.h216 llvm::raw_ostream &Stream, StringRef Style) {
224 llvm::raw_ostream &Stream, StringRef Style) {
215 format(const codeview::LocallyHashedType &V, llvm::raw_ostream &Stream, StringRef Style) argument
223 format(const codeview::GloballyHashedType &V, llvm::raw_ostream &Stream, StringRef Style) argument

Completed in 720 milliseconds

123456