/third_party/boost/libs/tti/test/ |
D | test_function_template_works.cpp | 22 struct Good { char x[2]; }; argument 24 …template<class U> static Good check(helper<&U::template SomeFuncTemplateName<int,long,double> > *); 26 static const bool value=sizeof(check<C>(0))==sizeof(Good); 37 struct Good { char x[2]; }; struct 39 template<class U> static Good check(helper<&U::template StatFuncTemplate<long,int,1234> > *); 41 static const bool value=sizeof(check<C>(0))==sizeof(Good);
|
/third_party/typescript/tests/baselines/reference/ |
D | inheritance.symbols | 43 class Good { 44 >Good : Symbol(Good, Decl(inheritance.ts, 22, 1)) 47 >f : Symbol(Good.f, Decl(inheritance.ts, 24, 12)) 50 >g : Symbol(Good.g, Decl(inheritance.ts, 25, 54)) 53 class Baad extends Good { 55 >Good : Symbol(Good, Decl(inheritance.ts, 22, 1))
|
D | inheritance.js | 26 class Good { class 31 class Baad extends Good { 89 var Good = /** @class */ (function () { 90 function Good() { class in Good 93 Good.prototype.g = function () { return 0; }; 94 return Good; 104 }(Good));
|
D | inheritance.types | 43 class Good { 44 >Good : Good 56 class Baad extends Good { 58 >Good : Good
|
D | multipleInheritance.js | 30 class Good { class 35 class Baad extends Good { 107 var Good = /** @class */ (function () { 108 function Good() { class in Good 111 Good.prototype.g = function () { return 0; }; 112 return Good; 122 }(Good));
|
D | multipleInheritance.symbols | 53 class Good { 54 >Good : Symbol(Good, Decl(multipleInheritance.ts, 26, 1)) 57 >f : Symbol(Good.f, Decl(multipleInheritance.ts, 28, 12)) 60 >g : Symbol(Good.g, Decl(multipleInheritance.ts, 29, 52)) 63 class Baad extends Good { 65 >Good : Symbol(Good, Decl(multipleInheritance.ts, 26, 1))
|
D | multipleInheritance.types | 53 class Good { 54 >Good : Good 66 class Baad extends Good { 68 >Good : Good
|
D | inheritance.errors.txt | 1 tests/cases/compiler/inheritance.ts(31,12): error TS2425: Class 'Good' defines instance member prop… 2 …ror TS2416: Property 'g' in type 'Baad' is not assignable to the same property in base type 'Good'. 31 class Good { 36 class Baad extends Good { 39 !!! error TS2425: Class 'Good' defines instance member property 'f', but extended class 'Baad' defi… 42 …ror TS2416: Property 'g' in type 'Baad' is not assignable to the same property in base type 'Good'.
|
D | multipleInheritance.errors.txt | 3 tests/cases/compiler/multipleInheritance.ts(35,12): error TS2425: Class 'Good' defines instance mem… 4 …ror TS2416: Property 'g' in type 'Baad' is not assignable to the same property in base type 'Good'. 41 class Good { 46 class Baad extends Good { 49 !!! error TS2425: Class 'Good' defines instance member property 'f', but extended class 'Baad' defi… 52 …ror TS2416: Property 'g' in type 'Baad' is not assignable to the same property in base type 'Good'.
|
D | indexerConstraints.types | 8 // Good case
|
/third_party/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." }
|
/third_party/gstreamer/gstplugins_good/docs/ |
D | all_index.md | 2 short-description: GStreamer Good Plugins API reference. 5 # Good Plugins 7 GStreamer Good Plugins {{ gst_api_version.md }}
|
/third_party/jerryscript/docs/ |
D | 08.CODING-STANDARDS.md | 29 +++ Good +++ 58 +++ Good +++ 82 +++ Good +++ 122 +++ Good +++ 170 +++ Good +++ 299 +++ Good +++ 399 +++ Good +++ 440 +++ Good +++ 497 +++ Good +++ 543 +++ Good +++ [all …]
|
/third_party/typescript/tests/cases/compiler/ |
D | inheritance.ts | 25 class Good { class 30 class Baad extends Good {
|
D | multipleInheritance.ts | 29 class Good { class 34 class Baad extends Good {
|
/third_party/boost/libs/numeric/odeint/doc/ |
D | stepper_table.qbk | 19 …kutta_cash_karp54`] [__error_stepper] [__system] [5] [Yes (4)] [No] [No] [Good general scheme with… 21 …_kutta_fehlberg78`] [__error_stepper] [__system] [8] [Yes (7)] [No] [No] [Good high order method w… 35 …[[Rosenbrock 4] [`rosenbrock4`] [__error_stepper] [__implicit_system] [4] [Yes] [Yes] [No] [Good f…
|
/third_party/mindspore/tests/ut/data/dataset/testTextFileDataset/ |
D | 1.txt | 4 Good luck to everyone.
|
/third_party/skia/third_party/externals/spirv-tools/test/ |
D | text_to_binary.composite_test.cpp | 35 TEST_F(CompositeRoundTripTest, Good) { in TEST_F() argument
|
/third_party/spirv-tools/test/ |
D | text_to_binary.composite_test.cpp | 35 TEST_F(CompositeRoundTripTest, Good) { in TEST_F() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/ |
D | text_to_binary.composite_test.cpp | 35 TEST_F(CompositeRoundTripTest, Good) { in TEST_F() argument
|
/third_party/gettext/gettext-tools/examples/hello-c++-kde/admin/ |
D | configure.in.bot.end | 10 echo "Good - your configure finished. Start make now"
|
/third_party/node/doc/guides/ |
D | technical-values.md | 64 * Good internal documentation and guides 66 * Good CI and tooling to make maintainers productive
|
/third_party/boost/libs/beast/test/beast/http/ |
D | message_fuzz.hpp | 574 template<class Good, class Bad> 577 Good const& good, Bad const& bad)
|
/third_party/python/Lib/test/ |
D | test_richcmp.py | 343 class Good: class 347 x = [Good()] 348 y = [Good()]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonVLIWPacketizer.cpp | 1706 bool Good = true; in addToPacket() local 1716 Good = tryAllocateResourcesForConstExt(true); in addToPacket() 1719 if (Good) { in addToPacket() 1723 Good = false; in addToPacket() 1725 if (Good && ExtNvjMI) in addToPacket() 1726 Good = tryAllocateResourcesForConstExt(true); in addToPacket() 1728 if (!Good) { in addToPacket()
|