Home
last modified time | relevance | path

Searched refs:Good (Results 1 – 25 of 27) sorted by relevance

12

/llvm-project-15.0.7/clang/test/CXX/class/class.compare/class.rel/
H A Dp1.cpp3 struct Good { struct
4 int operator<=>(const Good&) const;
6 bool operator<(const Good&) const = default;
7 bool operator>(const Good&) const = default;
8 friend bool operator<=(const Good&, const Good&) = default;
9 friend bool operator>=(const Good&, const Good&) = default;
/llvm-project-15.0.7/clang/test/SemaTemplate/
H A Dpr52970.cpp11 struct Good { struct
25 static_assert(DotFollowingFunctionName::f(Good{}), "");
33 static_assert(C<Good>);
41 struct Good { struct
50 static_assert(DotFollowingPointer::f(Good{}), "");
58 static_assert(C<Good>);
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/portability/
H A Drestrict-system-includes.rst17 #include <zlib.h> // Good: allowed system header.
18 #include "src/myfile.h" // Good: non-system header always allowed.
25 #include <curses.h> // Good: allowed system header.
26 #include <openssl/ssl.h> // Good: allowed system header.
28 #include "src/myfile.h" // Good: non-system header always allowed.
38 #include <openssl/ssl.h> // Good: allowed system header.
39 #include <openssl/rsa.h> // Good: allowed system header.
41 #include "src/myfile.h" // Good: non-system header always allowed.
/llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/misc/
H A Dunconventional-assign-operator.cpp15 struct Good { struct
16 Good& operator=(const Good&);
17 Good& operator=(Good&&);
20 Good& operator=(int);
/llvm-project-15.0.7/clang/test/AST/
H A Dast-dump-openmp-begin-declare-variant_reference.cpp17 int Good, Bad; variable
51 return Good; in also_before()
80 return &also_before() == &Good; in test2()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cppcoreguidelines/
H A Downing-memory.rst33 gsl::owner<int*> Owner = new int(42); // Good
34 gsl::owner<int*> Owner = new int[42]; // Good as well
38 gsl::owner<int*> Owner = function_that_returns_owner(); // Good, result lands in owner
53 // Example Good, Ownership correctly stated
54 gsl::owner<int*> Owner = new int(42); // Good
55 delete Owner; // Good as well, statically enforced, that only owners get deleted
68 // Good Code
70 expects_owner(Owner); // Good
71 expects_owner(new int(42)); // Good as well, recognized created resource
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Dwarn-unused-value.cpp90 struct Good { Good &f(); }; struct
97 Good g; in f()
/llvm-project-15.0.7/clang/test/Modules/Inputs/odr_hash-Friend/
H A Dmodule.modulemap17 module Good {
18 header "Good.h"
/llvm-project-15.0.7/clang/test/FixIt/
H A Dfixit-objc-message-comma-separator.m14 [obj aMethodWithArg1:@"Arg 1 Good", arg2:@"Arg 2 Good"];
/llvm-project-15.0.7/clang/test/CXX/class/class.compare/class.compare.default/
H A Dp1.cpp36 struct Good { using type = const Dependent<Good>&; }; argument
37 template struct Dependent<Good>;
/llvm-project-15.0.7/clang-tools-extra/modularize/
H A DModularizeUtilities.cpp524 bool Good = true; in displayGoodFiles() local
527 Good = false; in displayGoodFiles()
531 if (Good) in displayGoodFiles()
541 bool Good = true; in displayCombinedFiles() local
544 Good = false; in displayCombinedFiles()
548 errs() << (Good ? "" : "#") << File << "\n"; in displayCombinedFiles()
/llvm-project-15.0.7/clang-tools-extra/clangd/index/
H A DStdLib.cpp186 for (const auto &Good : GoodHeader) in filter() local
187 if (Good.second && *Good.first) in filter()
188 dlog("Stdlib header: {0}", Good.first); in filter()
/llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/readability/
H A Davoid-const-params-in-decls.rst17 void f(const string&); // Good: const is not top level.
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonVLIWPacketizer.cpp1729 bool Good = true; in addToPacket() local
1739 Good = tryAllocateResourcesForConstExt(true); in addToPacket()
1742 if (Good) { in addToPacket()
1746 Good = false; in addToPacket()
1748 if (Good && ExtNvjMI) in addToPacket()
1749 Good = tryAllocateResourcesForConstExt(true); in addToPacket()
1751 if (!Good) { in addToPacket()
/llvm-project-15.0.7/llvm/test/Transforms/Reassociate/
H A Dlong-chains.ll32 ; Good order: 55 reassociate - Number of insts reassociated
/llvm-project-15.0.7/llvm/test/TableGen/
H A Dtemplate-args.td150 defm Good : TwoArgs<1, "one">;
/llvm-project-15.0.7/llvm/test/FileCheck/dump-input/
H A Dannotations.txt46 ; Good match and no match.
88 ; Good match and no match.
131 ; Good match and no match.
188 ; Good match and no match.
246 ; Good match and no match.
404 ; Good match, discarded match plus good match, and no match.
/llvm-project-15.0.7/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp408 SmallVectorImpl<const SCEV *> &Good, in DoInitialMatch() argument
413 Good.push_back(S); in DoInitialMatch()
420 DoInitialMatch(S, L, Good, Bad, SE); in DoInitialMatch()
427 DoInitialMatch(AR->getStart(), L, Good, Bad, SE); in DoInitialMatch()
432 L, Good, Bad, SE); in DoInitialMatch()
448 Good.push_back(SE.getMulExpr(NegOne, S)); in DoInitialMatch()
462 SmallVector<const SCEV *, 4> Good; in initialMatch() local
464 DoInitialMatch(S, L, Good, Bad, SE); in initialMatch()
465 if (!Good.empty()) { in initialMatch()
466 const SCEV *Sum = SE.getAddExpr(Good); in initialMatch()
/llvm-project-15.0.7/llvm/docs/
H A DLexicon.rst186 "Looks Good To Me". In a review thread, this indicates that the
H A DCodeReview.rst139 stands for Looks Good To Me). Only approval from a single reviewer is required.
H A DCodingStandards.rst203 Good things to talk about here are what happens when something unexpected
1141 Light Headlight = M.makeLight("head"); // Good: descriptive.
/llvm-project-15.0.7/compiler-rt/test/BlocksRuntime/
H A Dtestfilerunner.m616 …d run all configurations of the test files and report a summary at the end. Good luck.\n", whoami);
/llvm-project-15.0.7/llvm/test/Transforms/Attributor/
H A Ddepgraph.ll191 …ign 4' at position {fn:checkAndAdvance [checkAndAdvance@-1]} with state [H2S] Mallocs Good/Bad: 0/0
/llvm-project-15.0.7/clang/docs/
H A DThreadSafetyAnalysis.rst624 Good software engineering practice dictates that mutexes should be private
/llvm-project-15.0.7/lldb/docs/resources/
H A Dtest.rst342 # Good. Will print expected_string and the contents of list_of_results.

12