Searched full:fa (Results 1 – 25 of 32) sorted by relevance
12
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | concatError.ts | 24 let fa: number[]; 25 AssertType(fa, "number[]"); 27 fa = fa.concat([0]); 28 AssertType(fa = fa.concat([0]), "number[]"); 29 AssertType(fa, "number[]"); 30 AssertType(fa.concat([0]), "number[]"); 31 AssertType(fa.concat, "{ (...ConcatArray<number>[]): number[]; (...(union)[]): number[]; }"); 35 fa = fa.concat(0); 36 AssertType(fa = fa.concat(0), "number[]"); 37 AssertType(fa, "number[]"); [all …]
|
D | nearbyIdenticalGenericLambdasAssignable.ts | 21 declare const fA: <T>() => { v: T }; 22 AssertType(fA, "<T>() => { v: T; }"); 50 type TA = typeof fA; 61 accA(fA); accA(fB); accA(fC); 62 AssertType(accA(fA), "void"); 64 AssertType(fA, "<T>() => { v: T; }"); 73 accB(fA); accB(fB); accB(fC); 74 AssertType(accB(fA), "void"); 76 AssertType(fA, "<T>() => { v: T; }"); 85 accC(fA); accC(fB); accC(fC); [all …]
|
D | newArrays.ts | 24 public fa: Foo[]; 29 this.fa = new Array<Foo>(this.x * this.y); 30 AssertType(this.fa = new Array<Foo>(this.x * this.y), "Foo[]"); 31 AssertType(this.fa, "Foo[]");
|
D | voidFunctionAssignmentCompat.ts | 21 let fa = function(): any { 22 AssertType(fa, "() => any"); 30 fa = function() { } // should not work 31 AssertType(fa = function() { }, "() => void"); 32 AssertType(fa, "() => any");
|
/arkcompiler/ets_frontend/es2panda/test/parser/js/ |
D | test-tagged-template-expression.js | 19 fa`${a++}` 27 harom`${b++}fa` 34 alma()`fa` 36 alma['']`fa` 38 fa[`alma`]()`fa`
|
D | test-if.js | 20 if(1) fa = 1 22 if(0) alma = 0; else fa = 1 26 else fa = 1 28 if(0) {alma = 0} else fa = 1 34 if(0); else if(0) ;else if(1) alma = 'fa'; else;
|
D | test-tagged-template-expression-expected.txt | 83 "name": "fa", 628 "raw": "fa", 629 "cooked": "fa" 795 "raw": "fa", 796 "cooked": "fa" 897 "raw": "fa", 898 "cooked": "fa" 955 "name": "fa", 1033 "raw": "fa", 1034 "cooked": "fa"
|
D | test-if-expected.txt | 125 "name": "fa", 263 "name": "fa", 400 "name": "fa", 552 "name": "fa", 787 "value": "fa",
|
D | test-template-literal-2.js | 17 fa`${}`
|
D | test-template-literal.js | 27 `${b++}fa`;
|
D | test-for.js | 32 for (let fa = 5;;);
|
D | test-template-literal-expected.txt | 477 "raw": "fa", 478 "cooked": "fa"
|
D | test-for-expected.txt | 755 "name": "fa",
|
/arkcompiler/ets_frontend/test/scripts/sdk_test/ |
D | config.yaml | 29 # -type: type of the hap. Available values are: [stage, fa, js, compatible8] 78 type: [fa, ohosTest, exceed_length_error, error]
|
D | utils.py | 83 # if hap_type is js, fa, compatible 8, it's js_bundle
|
D | options.py | 102 choices=['all', 'fa', 'stage', 'compatible8', 'js'],
|
D | execution.py | 108 elif 'fa' in task.type or 'compatible8' in task.type:
|
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ |
D | pgo_profiler_manager.h | 47 // For FA jsvm, merge with existed output file in Initialize()
|
/arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
D | ldarr.obj.yaml | 798 A fA 802 stobj.obj a0, A.fA 806 ldobj.obj a0, A.fA
|
D | newobj.yaml | 87 A fA 128 - "A.fA"
|
D | starr.obj.yaml | 1591 A fA 1595 stobj.obj a0, A.fA 1599 ldobj.obj a0, A.fA
|
D | lda.type.yaml | 56 A fA 97 - "A.fA"
|
/arkcompiler/ets_runtime/ecmascript/compiler/assembler/tests/ |
D | assembler_x64_test.cpp | 271 // 81 fa ff ff ff 09 cmpl $0x9ffffff,%edx in HWTEST_F_L0() 293 // 48 83 fa 00 cmp $0x0,%rdx in HWTEST_F_L0()
|
/arkcompiler/ets_frontend/arkguard/ |
D | README.md | 8 In DevEco Studio, Arkguard can be enabled only in Stage Model (FA Model is not supported).
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
D | pandagen.cpp | 218 FrontAllocator fa(this); in InitializeLexEnv() local 227 FrontAllocator fa(this); in CopyFunctionArguments() local
|
12