Searched refs:Cat (Results 1 - 14 of 14) sorted by relevance
/third_party/typescript/tests/baselines/reference/ |
H A D | prespecializedGenericMembers1.js | 6 export class Cat<CatType extends IKitty> { 13 constructor(cats: { barry: Cat<IKitty>; }) { 17 var cat = new Cat<IKitty>(); 26 exports.CatBag = exports.Cat = void 0;
27 var Cat = /** @class */ (function () {
28 function Cat() {
30 return Cat;
32 exports.Cat = Cat;
39 var cat = new Cat();
[all...] |
H A D | typeParameterExtendingUnion2.js | 3 class Cat extends Animal { meow } 6 function run(a: Cat | Dog) { 10 function f<T extends Cat | Dog>(a: T) { 37 var Cat = /** @class */ (function (_super) {
38 __extends(Cat, _super);
39 function Cat() {
42 return Cat;
|
H A D | typeParameterExtendingUnion1.js | 3 class Cat extends Animal { meow } 10 function f<T extends Cat | Dog>(a: T) { 37 var Cat = /** @class */ (function (_super) {
38 __extends(Cat, _super);
39 function Cat() {
42 return Cat;
|
H A D | stringLiteralTypesOverloads05.js | 4 interface Cat extends Animal { cat: {} } 8 function doThing(x: "cat"): Cat; 28 interface Cat extends Animal {
35 declare function doThing(x: "cat"): Cat;
|
H A D | functionOverloads44.js | 4 interface Cat extends Animal { cat } 12 function foo2(bar: { a:number }[]): Cat; 13 function foo2(bar: { a:string }[]): Cat | Dog; 14 function foo2([x]: { a:number | string }[]): Cat {
|
H A D | functionOverloads45.js | 4 interface Cat extends Animal { cat } 6 function foo1(bar: { a:number }[]): Cat; 12 function foo2(bar: { a:number }[]): Cat; 14 function foo2([x]: { a:number | string }[]): Cat | Dog {
|
H A D | assertionFunctionsCanNarrowByDiscriminant.js | 2 interface Cat { 12 type Animal = Cat | Dog;
|
H A D | moduleSameValueDuplicateExportedBindings2.js | 12 Cat, 22 Animals[Animals["Cat"] = 0] = "Cat";
|
H A D | strictFunctionTypesErrors.js | 93 interface Cat extends Animal { cat: void }
|
/third_party/skia/third_party/externals/tint/src/utils/io/ |
H A D | command_test.cc | 51 TEST(CommandTest, Cat) {
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-ot-shape-complex-use-machine.hh | 41 #define USE(Cat) use_syllable_machine_ex_##Cat
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | CommandLine.cpp | 2280 for (auto &Cat : Opt->Categories) { 2281 assert(CategorizedOptions.count(Cat) > 0 && 2283 CategorizedOptions[Cat].push_back(Opt); 2563 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() 2564 if (Cat != &Category && in HideUnrelatedOptions() 2565 Cat != &GenericCategory) in HideUnrelatedOptions() 2574 for (auto &Cat : I.second->Categories) { in HideUnrelatedOptions() 2575 if (find(Categories, Cat) == Categories.end() && Cat != &GenericCategory) in HideUnrelatedOptions()
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-pp-string_test.cc | 58 TEST(Macros, Cat) { in TEST()
|
/third_party/python/Lib/test/ |
H A D | test_typing.py | 6619 class Cat(Animal): class 6634 self.assertEqual(Cat.__required_keys__, frozenset(['name', 'fur_color'])) 6635 self.assertEqual(Cat.__optional_keys__, frozenset(['tail', 'voice'])) 6636 self.assertEqual(Cat.__annotations__, {
|
Completed in 19 milliseconds