/external/llvm-project/clang/test/CXX/class/class.compare/class.rel/ |
D | p1.cpp | 3 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;
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | misc-unconventional-assign-operator.cpp | 15 struct Good { struct 16 Good& operator=(const Good&); 17 Good& operator=(Good&&); 20 Good& operator=(int);
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | portability-restrict-system-includes.rst | 17 #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.
|
D | cppcoreguidelines-owning-memory.rst | 33 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
|
/external/icu/icu4c/source/test/testdata/ |
D | mc.txt | 17 1%4 { "Good morning." } 18 1%5 { "Good afternoon." } 19 1%7 { "Good evening." } 20 1%8 { "Good night." }
|
/external/rust/crates/clap/src/ |
D | suggestions.rs | 58 Format::Good("--"), in did_you_mean_flag_suffix() 59 Format::Good(candidate) in did_you_mean_flag_suffix() 85 Format::Good("--"), in did_you_mean_flag_suffix() 86 Format::Good(candidate), in did_you_mean_flag_suffix() 87 Format::Good(subcommand.get_name()) in did_you_mean_flag_suffix() 105 let suffix = format!("\n\tDid you mean '{}'?", Format::Good(candidate)); in did_you_mean_value_suffix()
|
D | fmt.rs | 80 color!(self, Good, msg) in good() 127 Good(T), enumerator 138 Format::Good(ref e) => Green.paint(e.as_ref()), in format() 151 Format::Good(ref e) => e, in format() 184 let good = Format::Good("good"); in colored_output()
|
/external/clang/test/SemaCXX/ |
D | warn-unused-value.cpp | 83 struct Good { Good &f(); }; struct 90 Good g; in f()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | warn-unused-value.cpp | 89 struct Good { Good &f(); }; struct 96 Good g; in f()
|
/external/doclava/res/assets/templates/ |
D | todo.cs | 36 <tr><th>Percent Good</th><td><?cs var:all.percentGood ?></td></tr> 46 <th>Percent Good</th> 66 <th>Percent Good</th> 85 Percent Good: <?cs var:cl.percentGood ?></p>
|
/external/llvm-project/clang/test/Modules/Inputs/odr_hash-Friend/ |
D | module.modulemap | 17 module Good { 18 header "Good.h"
|
/external/clang/test/FixIt/ |
D | fixit-objc-message-comma-separator.m | 14 [obj aMethodWithArg1:@"Arg 1 Good", arg2:@"Arg 2 Good"];
|
/external/llvm-project/clang/test/FixIt/ |
D | fixit-objc-message-comma-separator.m | 14 [obj aMethodWithArg1:@"Arg 1 Good", arg2:@"Arg 2 Good"];
|
/external/llvm-project/clang/test/CXX/class/class.compare/class.compare.default/ |
D | p1.cpp | 43 struct Good { using type = const Dependent<Good>&; }; struct 44 template struct Dependent<Good>;
|
/external/google-styleguide/ |
D | Rguide.md | 22 # Good 32 # Good 68 # Good 84 # Good
|
/external/eigen/doc/ |
D | TopicLinearAlgebraDecompositions.dox | 70 <td>Good</td> 106 <td>Good</td> 132 <td>Good</td> 172 <td>Good</td> 206 <td>Good</td> 210 <td>Good</td> 218 <td>Good</td> 222 <td>Good</td>
|
/external/pdfium/testing/resources/ |
D | bookmarks_circular.in | 41 /Title (A Good Beginning) 49 /Title (A Good Ending)
|
D | bookmarks.in | 41 /Title (A Good Beginning) 49 /Title (A Good Ending)
|
/external/llvm-project/clang-tools-extra/modularize/ |
D | ModularizeUtilities.cpp | 524 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()
|
/external/python/cryptography/docs/development/ |
D | c-bindings.rst | 21 /* Good */ 40 /* Good */ 57 /* Good */ 67 /* Good */
|
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ |
D | TestPolymorphicWithDefaultImpl.java | 77 public static class Good { class in TestPolymorphicWithDefaultImpl 217 Good goodResult = reader.forType(Good.class).readValue(json) ; in testInvalidTypeId511()
|
/external/libtextclassifier/native/utils/ |
D | tokenizer.fbs | 49 // Each codepoint will be a separate token. Good e.g. for Chinese 57 // Splits on the characters and discards them. Good e.g. for the space
|
/external/swiftshader/third_party/SPIRV-Tools/test/ |
D | text_to_binary.composite_test.cpp | 35 TEST_F(CompositeRoundTripTest, Good) { in TEST_F() argument
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/test/ |
D | text_to_binary.composite_test.cpp | 35 TEST_F(CompositeRoundTripTest, Good) { in TEST_F() argument
|
/external/deqp-deps/SPIRV-Tools/test/ |
D | text_to_binary.composite_test.cpp | 35 TEST_F(CompositeRoundTripTest, Good) { in TEST_F() argument
|