/third_party/typescript/tests/baselines/reference/ |
H A D | decoratedDefaultExportsGetExportedAmd.js | 4 var decorator: ClassDecorator; variable 6 @decorator 10 var decorator: ClassDecorator; variable 12 @decorator 26 var decorator;
30 decorator
44 var decorator;
48 decorator
|
H A D | decoratedDefaultExportsGetExportedCommonjs.js | 4 var decorator: ClassDecorator; variable 6 @decorator 10 var decorator: ClassDecorator; variable 12 @decorator 25 var decorator;
variable 29 decorator
41 var decorator;
variable 45 decorator
|
H A D | decoratedDefaultExportsGetExportedSystem.js | 4 var decorator: ClassDecorator; variable 6 @decorator 10 var decorator: ClassDecorator; variable 12 @decorator 24 var decorator, Foo;
32 decorator
47 var decorator, default_1;
55 decorator
|
H A D | decoratedDefaultExportsGetExportedUmd.js | 4 var decorator: ClassDecorator; variable 6 @decorator 10 var decorator: ClassDecorator; variable 12 @decorator 34 var decorator;
38 decorator
60 var decorator;
64 decorator
|
H A D | decoratedBlockScopedClass3.js | 2 function decorator() { function 6 @decorator() 15 @decorator() 33 function decorator() {
45 decorator()
60 decorator()
|
H A D | decoratorMetadataPromise.js | 2 declare const decorator: MethodDecorator; 5 @decorator 7 @decorator 9 @decorator 43 decorator,
49 decorator,
55 decorator,
|
H A D | decoratorOnClassMethod19(target=es2015).js | 3 declare var decorator: any; 8 @decorator((x: C1) => x.#x) 15 y(@decorator((x: C2) => x.#x) p) {} 29 var __param = (this && this.__param) || function (paramIndex, decorator) {
30 return function (target, key) { decorator(target, key, paramIndex); }
47 decorator((x) => __classPrivateFieldGet(x, _C1_x, "f")),
62 __param(0, decorator((x) => __classPrivateFieldGet(x, _C2_x, "f"))),
|
H A D | decoratorMetadataOnInferredType.js | 10 function decorator(target: Object, propertyKey: string) { function 14 @decorator 29 function decorator(target, propertyKey) {
36 decorator,
|
H A D | decoratorMetadataWithConstructorType.js | 10 function decorator(target: Object, propertyKey: string) { function 14 @decorator 29 function decorator(target, propertyKey) {
36 decorator,
|
H A D | decoratorMetadata.js | 9 declare var decorator: any; 11 @decorator 16 @decorator 50 decorator,
56 decorator,
|
H A D | generatorTypeCheck39.js | 2 function decorator(x: any) { function 6 @decorator(yield 0) 19 function decorator(x) {
29 decorator(yield 0)
|
H A D | decoratedBlockScopedClass1.js | 2 function decorator() { function 6 @decorator() 22 function decorator() {
34 decorator()
|
H A D | decoratedBlockScopedClass2.js | 2 function decorator() { function 7 @decorator() 25 function decorator() {
38 decorator()
|
H A D | decoratorOnClassMethod11.js | 4 decorator(target: Object, key: string): void { } 6 @this.decorator 23 C.prototype.decorator = function (target, key) { };
26 this.decorator
|
H A D | decoratorWithNegativeLiteralTypeNoCrash.js | 3 @decorator 6 function decorator(target: any, field: any) {}
function 23 decorator,
28 function decorator(target, field) { }
|
H A D | decoratorOnClassMethod12.js | 4 decorator(target: Object, key: string): void { } 7 @super.decorator 39 S.prototype.decorator = function (target, key) { };
49 _super.decorator
|
H A D | decoratorMetadataWithTypeOnlyImport2.js | 11 declare const decorator: any; 13 @decorator() 48 decorator(),
|
H A D | decoratorReferenceOnOtherProperty.js | 49 var __param = (this && this.__param) || function (paramIndex, decorator) {
50 return function (target, key) { decorator(target, key, paramIndex); }
83 var __param = (this && this.__param) || function (paramIndex, decorator) {
84 return function (target, key) { decorator(target, key, paramIndex); }
|
H A D | tsxGenericAttributesType7.js | 5 const decorator = function <U>(props: U) { 17 var decorator = function (props) {
function
|
H A D | tsxGenericAttributesType8.js | 5 const decorator = function <U>(props: U) { 17 var decorator = function (props) {
function
|
H A D | tsxGenericAttributesType1.js | 4 const decorator = function <T>(Component: React.StatelessComponent<T>): React.StatelessComponent<T> { 20 var decorator = function (Component) {
function
|
/third_party/node/deps/v8/src/compiler/ |
H A D | graph.cc | 33 for (GraphDecorator* const decorator : decorators_) { in Decorate() 34 decorator->Decorate(node); in Decorate() 39 void Graph::AddDecorator(GraphDecorator* decorator) { in AddDecorator() argument 40 decorators_.push_back(decorator); in AddDecorator() 44 void Graph::RemoveDecorator(GraphDecorator* decorator) { in RemoveDecorator() argument 45 auto const it = std::find(decorators_.begin(), decorators_.end(), decorator); in RemoveDecorator()
|
/third_party/python/Lib/test/support/ |
H A D | hashlib_helper.py | 17 If 'openssl' is True, then the decorator checks that OpenSSL provides 24 def decorator(func_or_class): function 34 setUpClass = classmethod(decorator(setUpClass)) 51 return decorator
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | tkinter_testing_utils.py | 30 def decorator(test_method): function 62 return decorator
|
/third_party/jinja2/ |
H A D | async_utils.py | 13 def decorator(async_func): # type: ignore function 53 return decorator
|