/external/rust/crates/num_cpus/ |
D | CHANGELOG.md | 9 #### Fixes subsubsection 16 #### Fixes subsubsection 27 #### Fixes subsubsection 33 #### Fixes subsubsection 62 #### Fixes subsubsection 68 #### Fixes subsubsection 74 #### Fixes subsubsection 86 #### Fixes subsubsection 110 #### Fixes subsubsection
|
/external/llvm-project/clang/lib/Format/ |
D | UsingDeclarationsSorter.cpp | 116 const SourceManager &SourceMgr, tooling::Replacements *Fixes) { in endUsingDeclarationBlock() argument 145 auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, "")); in endUsingDeclarationBlock() 169 auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, Text)); in endUsingDeclarationBlock() 189 tooling::Replacements Fixes; in analyze() local 195 endUsingDeclarationBlock(&UsingDeclarations, SourceMgr, &Fixes); in analyze() 199 endUsingDeclarationBlock(&UsingDeclarations, SourceMgr, &Fixes); in analyze() 204 endUsingDeclarationBlock(&UsingDeclarations, SourceMgr, &Fixes); in analyze() 209 endUsingDeclarationBlock(&UsingDeclarations, SourceMgr, &Fixes); in analyze() 210 return {Fixes, 0}; in analyze()
|
D | NamespaceEndCommentsFixer.cpp | 147 tooling::Replacements *Fixes) { in addEndComment() argument 150 auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, EndCommentText)); in addEndComment() 159 tooling::Replacements *Fixes) { in updateEndComment() argument 164 auto Err = Fixes->add(tooling::Replacement(SourceMgr, Range, EndCommentText)); in updateEndComment() 207 tooling::Replacements Fixes; in analyze() local 222 return {Fixes, 0}; in analyze() 259 updateEndComment(EndCommentPrevTok, std::string(), SourceMgr, &Fixes); in analyze() 285 addEndComment(EndCommentPrevTok, EndCommentText, SourceMgr, &Fixes); in analyze() 288 updateEndComment(EndCommentPrevTok, EndCommentText, SourceMgr, &Fixes); in analyze() 292 return {Fixes, 0}; in analyze()
|
/external/tensorflow/tensorflow/core/kernels/mkl/ |
D | BUILD | 84 linkstatic = 1, # Fixes dyld error on MacOS. 99 linkstatic = 1, # Fixes dyld error on MacOS. 114 linkstatic = 1, # Fixes dyld error on MacOS. 141 linkstatic = 1, # Fixes dyld error on MacOS. 154 linkstatic = 1, # Fixes dyld error on MacOS. 169 linkstatic = 1, # Fixes dyld error on MacOS. 215 linkstatic = 1, # Fixes dyld error on MacOS. 223 linkstatic = 1, # Fixes dyld error on MacOS. 282 linkstatic = 1, # Fixes dyld error on MacOS. 403 linkstatic = 1, # Fixes dyld error on MacOS.
|
/external/rust/crates/clap/ |
D | CHANGELOG.md | 18 #### Bug Fixes 59 #### Bug Fixes 93 #### Bug Fixes 108 #### Bug Fixes 115 * Fixes some typos in the `README.md` ([c8e685d7](https://github.com/kbknapp/clap-rs/commit/c8e685d… 154 #### Bug Fixes 169 #### Bug Fixes 183 #### Bug Fixes 186 * Fixes a bug which disallows proper nesting of `--` ([73993fe](https://github.com/kbknapp/clap-rs/… 205 #### Bug Fixes [all …]
|
/external/rust/crates/half/ |
D | CHANGELOG.md | 23 implemented formatting traits to format in hex instead of `Debug`. Fixes [#37]. 62 by rounding to nearest, ties to even. Fixes [#24], by [@tspiteri]. 63 - NaN value conversions now behave like `f32` to `f64` conversions, retaining sign. Fixes [#23], 94 slices. Fixes [#16], by [@johannesvollmer]. 99 `u16` and `f16` buffers. Fixes [#14], by [@johannesvollmer]. 100 - `to_bits` added to replace `as_bits`. Fixes [#12], by [@tspiteri]. 109 - Fixed compilation error in 1.1.1 on rustc < 1.27, now compiles again on rustc >= 1.10. Fixes 120 - Made `to_f32` and `to_f64` public. Fixes [#7], by [@PSeitz]. 125 behavior of the standard library since Rust 1.20.0. Fixes [#3], by [@tspiteri]. 128 - Fix comparisons of +0 to -0 and comparisons involving negative numbers. Fixes [#2], by [all …]
|
/external/llvm-project/clang/include/clang/Tooling/ |
D | DiagnosticsYaml.h | 43 std::vector<clang::tooling::Replacement> Fixes; in LLVM_YAML_IS_SEQUENCE_VECTOR() 46 Fixes.push_back(Replacement); in LLVM_YAML_IS_SEQUENCE_VECTOR() 48 Io.mapRequired("Replacements", Fixes); in LLVM_YAML_IS_SEQUENCE_VECTOR() 49 for (auto &Fix : Fixes) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/external/llvm-project/clang-tools-extra/clangd/ |
D | IncludeFixer.cpp | 140 std::vector<Fix> Fixes; in fixIncompleteType() local 145 Fixes = fixesForSymbols(Syms); in fixIncompleteType() 147 return Fixes; in fixIncompleteType() 168 std::vector<Fix> Fixes; in fixesForSymbols() local 181 Fixes.push_back(Fix{std::string(llvm::formatv( in fixesForSymbols() 192 return Fixes; in fixesForSymbols() 449 std::vector<Fix> Fixes; in lookupCached() local 454 Fixes = fixesForSymbols(Syms); in lookupCached()
|
D | Diagnostics.cpp | 70 if (!D.Fixes.empty()) in mentionsMainFile() 300 if (Opts.DisplayFixesCount && !D.Fixes.empty()) in mainMessage() 301 OS << " (" << (D.Fixes.size() > 1 ? "fixes" : "fix") << " available)"; in mainMessage() 359 if (!D.Fixes.empty()) { in operator <<() 362 for (auto &Fix : D.Fixes) { in operator <<() 441 for (const auto &Fix : D.Fixes) in toLSPDiags() 465 OutFn(std::move(Main), D.Fixes); in toLSPDiags() 535 for (auto &Fix : Diag.Fixes) in take() 717 LastDiag->Fixes.push_back( in HandleDiagnostic() 744 LastDiag->Fixes.insert(LastDiag->Fixes.end(), ExtraFixes.begin(), in HandleDiagnostic()
|
/external/python/pyfakefs/ |
D | CHANGES.md | 12 #### Fixes subsubsection 19 #### Fixes subsubsection 38 #### Fixes subsubsection 59 #### Fixes subsubsection 75 #### Fixes subsubsection 93 #### Fixes subsubsection 111 #### Fixes subsubsection 137 #### Fixes subsubsection 151 #### Fixes subsubsection 166 #### Fixes subsubsection [all …]
|
/external/catch2/docs/ |
D | release-notes.md | 51 ### Fixes subsection 52 * Fixes missing `<random>` include in benchmarking (#1831) 68 ### Fixes subsection 85 ### Fixes subsection 98 ### Fixes subsection 111 ### Fixes subsection 123 ### Fixes subsection 166 ### Fixes subsection 205 ### Fixes subsection 230 ### Fixes subsection [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/ |
D | CHANGES | 28 - Fixes for the vscode language server extension (#4150) 168 - Fixes related to irrelevant ids (#3901) 385 Fixes: 404 Fixes: 412 Fixes: 456 Fixes: 492 Fixes: 499 Fixes: 515 Fixes: 547 Fixes: [all …]
|
/external/deqp-deps/SPIRV-Tools/ |
D | CHANGES | 83 - Fixes related to irrelevant ids (#3901) 300 Fixes: 319 Fixes: 327 Fixes: 371 Fixes: 407 Fixes: 414 Fixes: 430 Fixes: 462 Fixes: 473 Fixes: [all …]
|
/external/swiftshader/third_party/SPIRV-Tools/ |
D | CHANGES | 83 - Fixes related to irrelevant ids (#3901) 300 Fixes: 319 Fixes: 327 Fixes: 371 Fixes: 407 Fixes: 414 Fixes: 430 Fixes: 462 Fixes: 473 Fixes: [all …]
|
/external/python/httplib2/ |
D | CHANGELOG | 194 Fixes in this release: 202 Fixes in this release: 238 Fixes for App Engine 2.7. 244 Fix proxy socks for SSL connections. Fixes issue #199. 271 Fixes for HTTP CONNECT proxies. 287 Fixes issue 72. Always lowercase authorization header. 289 Fixes issue 19. Set Content-location on redirected HEAD requests 290 Fixes issue 139. Redirect with a GET on 302 regardless of the originating method. 291 …Fixes issue 138. Handle unicode in headers when writing and retrieving cache entries. Who says hea… 293 Set a version number. Fixes issue # 135. [all …]
|
/external/strace/ |
D | ChangeLog-CVS | 258 Fixes for ptrace() argument parsing. 296 Fixes RH#471169 "format fcntl64() system calls for 361 Fixes RH#472053. 399 Fixes RH#470529. 463 Fixes RH#105371. 552 Fixes RH#455078. 571 Fixes RH#457291. 575 Fixes Debian#492774. 600 Fixes Debian#491167, Debian#491188. 620 Fixes RH#448628. [all …]
|
/external/e2fsprogs/doc/RelNotes/ |
D | v1.45.2.txt | 4 Updates/Fixes since v1.45.1: 6 Fixes
|
D | v1.44.1.txt | 4 Updates/Fixes since v1.44.0: 6 Fixes
|
D | v1.45.4.txt | 4 Updates/Fixes since v1.45.3: 6 Fixes
|
/external/curl/ |
D | CHANGES | 34 Fixes #6052 132 Fixes #6042 197 Fixes #6031 278 Fixes #6025 299 Fixes #4295 336 Fixes #6003 347 Fixes #6016 359 Fixes #5988 398 Fixes #5523 464 Fixes #5995 [all …]
|
/external/llvm-project/clang/unittests/Tooling/ |
D | DiagnosticsYamlTest.cpp | 149 std::vector<Replacement> Fixes; in TEST() local 152 Fixes.push_back(Replacement); in TEST() 155 return Fixes; in TEST()
|
/external/protobuf/csharp/ |
D | CHANGES.txt | 28 Fixes: 49 Fixes: 84 Fixes: 126 Fixes: 139 Fixes:
|
/external/llvm-project/clang-tools-extra/unittests/clang-tidy/ |
D | ClangTidyTest.h | 147 tooling::Replacements Fixes; 153 auto Err = Fixes.add(Fix); 164 auto Result = tooling::applyAllReplacements(Code, Fixes);
|
/external/llvm-project/clang-tools-extra/clangd/unittests/ |
D | DiagnosticsTests.cpp | 43 return Field(&Diag::Fixes, ElementsAre(FixMatcher)); in WithFix() 48 return Field(&Diag::Fixes, UnorderedElementsAre(FixMatcher1, FixMatcher2)); in WithFix() 644 D.Fixes.push_back(F); in TEST() 671 [&](clangd::Diagnostic LSPDiag, ArrayRef<clangd::Fix> Fixes) { in TEST() argument 674 std::vector<clangd::Fix>(Fixes.begin(), Fixes.end())}); in TEST() 690 [&](clangd::Diagnostic LSPDiag, ArrayRef<clangd::Fix> Fixes) { in TEST() argument 693 std::vector<clangd::Fix>(Fixes.begin(), Fixes.end())}); in TEST() 963 if (D.Fixes.size() != 1) { in TEST() 967 EXPECT_EQ(D.Fixes[0].Message, in TEST()
|
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | NonConstParameterCheck.cpp | 141 SmallVector<FixItHint, 8> Fixes; in diagnoseNonConstParameters() local 148 Fixes.push_back(FixItHint::CreateInsertion( in diagnoseNonConstParameters() 152 << Par->getName() << Fixes; in diagnoseNonConstParameters()
|