/third_party/typescript/tests/baselines/reference/ |
H A D | typeReferenceDirectives9.js | 7 export class Cls { 14 import {Cls} from "./main"; class 15 Cls.prototype.foo = function() { return undefined; } 18 interface Cls { 21 namespace Cls { 27 import { Cls } from "./main"; 30 export const cls = Cls; 31 export const foo = new Cls().foo(); 32 export const bar = Cls.bar();
37 exports.Cls [all...] |
H A D | jsDeclarationsDefaultsErr.js | 5 class Cls { 9 export default Cls; 34 var Cls = /** @class */ (function () {
35 function Cls() {
38 Cls.y = "ok";
39 return Cls;
41 exports.default = Cls;
72 export type Cls = string | number;
73 export default Cls;
74 declare class Cls {
[all...] |
H A D | mixinPrivateAndProtected.js | 12 function mixB<T extends Constructor<{}>>(Cls: T) { 13 return class extends Cls { 19 function mixB2<T extends Constructor<A>>(Cls: T) { 20 return class extends Cls { 29 function mixC<T extends Constructor<{}>>(Cls: T) { 30 return class extends Cls { 117 function mixB(Cls) {
127 }(Cls));
129 function mixB2(Cls) {
138 }(Cls));
[all...] |
H A D | jsDeclarationsFunctions.js | 8 c.Cls = class {} 72 c.Cls = /** @class */ (function () {
73 function Cls() {
75 return Cls;
133 export { Cls };
158 declare class Cls {
|
H A D | jsDeclarationsFunctionsCjs.js | 8 module.exports.c.Cls = class {} 67 module.exports.c.Cls = /** @class */ (function () {
68 function Cls() {
70 return Cls;
124 export { Cls };
135 declare class Cls {
|
H A D | moduleAugmentationsImports1.js | 11 class Cls {y: string; } 19 import {Cls} from "C"; 32 getCls(): Cls; 96 import { Cls } from "C";
104 getCls(): Cls;
|
H A D | moduleAugmentationsImports2.js | 11 class Cls {y: string; } 30 import {Cls} from "C"; 36 getCls(): Cls; 112 import { Cls } from "C";
115 getCls(): Cls;
|
H A D | moduleAugmentationsImports3.js | 11 class Cls {y: string; } 28 import {Cls} from "C"; 34 getCls(): Cls; 98 import { Cls } from "C";
101 getCls(): Cls;
|
H A D | moduleAugmentationImportsAndExports3.js | 18 export interface Cls { a } 24 import C = N.Cls; 84 interface Cls {
91 import C = N.Cls;
|
H A D | moduleAugmentationInAmbientModule1.js | 9 class Cls { x: number } 13 import { Cls } from "M"; 16 foo(): Cls;
|
H A D | moduleAugmentationInAmbientModule2.js | 9 class Cls { x: number } 13 import { Cls } from "M"; 16 foo(): Cls;
|
H A D | moduleAugmentationImportsAndExports2.js | 18 export interface Cls { a } 25 import C = N.Cls; 86 interface Cls {
94 import C = N.Cls;
|
H A D | moduleAugmentationImportsAndExports5.js | 19 export interface Cls { b: number; } 22 import C = N.Cls; 89 interface Cls {
94 import C = N.Cls;
|
H A D | moduleAugmentationImportsAndExports6.js | 19 export interface Cls { b: number; } 22 import C = N.Cls; 89 interface Cls {
94 import C = N.Cls;
|
H A D | moduleAugmentationInAmbientModule3.js | 9 class Cls { x: number } 13 import { Cls } from "M"; 16 foo(): Cls;
|
H A D | moduleAugmentationInAmbientModule4.js | 9 class Cls { x: number } 13 import { Cls } from "M"; 16 foo(): Cls;
|
H A D | moduleAugmentationImportsAndExports4.js | 19 export interface Cls { b: number; } 22 import C = N.Cls;
|
H A D | doubleMixinConditionalTypeBaseClassWorks.js | 6 type FooConstructor = typeof Mixin1 extends (a: Constructor) => infer Cls ? Cls : never;
|
H A D | moduleAugmentationDisallowedExtensions.js | 20 class Cls {}
|
/third_party/vixl/benchmarks/aarch64/ |
H A D | bench-utils.cc | 202 __ Cls(PickR(size), PickR(size)); in GenerateTrivialSequence()
|
/third_party/node/deps/npm/node_modules/@npmcli/arborist/lib/arborist/ |
H A D | build-ideal-tree.js | 386 const Cls = real === this.path ? Node : Link 387 const root = new Cls({
|
/third_party/vixl/test/aarch64/ |
H A D | test-disasm-neon-aarch64.cc | 3474 COMPARE_MACRO(Cls(v1.V8B(), v8.V8B()), in TEST() 3477 COMPARE_MACRO(Cls(v2.V16B(), v9.V16B()), in TEST() 3480 COMPARE_MACRO(Cls(v3.V4H(), v1.V4H()), in TEST() 3483 COMPARE_MACRO(Cls(v4.V8H(), v2.V8H()), in TEST() 3486 COMPARE_MACRO(Cls(v5.V2S(), v3.V2S()), in TEST() 3489 COMPARE_MACRO(Cls(v6.V4S(), v4.V4S()), in TEST()
|
H A D | test-assembler-aarch64.cc | 1604 __ Cls(w6, w24); in TEST() 1605 __ Cls(x7, x24); in TEST() 1606 __ Cls(w8, w25); in TEST() 1607 __ Cls(x9, x25); in TEST() 1608 __ Cls(w10, w26); in TEST() 1609 __ Cls(x11, x26); in TEST()
|
/third_party/node/deps/v8/src/codegen/arm64/ |
H A D | macro-assembler-arm64.h | 257 V(cls, Cls) \ 1358 inline void Cls(const Register& rd, const Register& rn);
|
H A D | macro-assembler-arm64-inl.h | 409 void TurboAssembler::Cls(const Register& rd, const Register& rn) { in Cls() function in v8::internal::TurboAssembler
|