/arkcompiler/ets_frontend/arkguard/test/ut/ |
D | NameGenerator.spec.ts | 41 assert.strictEqual(orderedGenerator.getName(), orderedName[i]); 50 arr.push(disorderGenerator.getName()); 89 assert.strictEqual(underlineGenerator.getName(), '_'.repeat(i + 1)); 92 assert.isNull(underlineGenerator.getName()); 102 assert.strictEqual(underlineGenerator.getName(), '_'.repeat(i + 1)); 105 assert.isNull(underlineGenerator.getName()); 113 assert.strictEqual(hexGenerator.getName().length, 8); 120 const hexName = hexGenerator.getName(); 139 assert.strictEqual(hexGenerator.getName().length, 20); 150 const hexName = hexGenerator.getName(); [all …]
|
/arkcompiler/ets_frontend/es2panda/test/compiler/ts/cases/conformance/classes/ |
D | test-ts-class-name-1.ts | 22 getName(): string { method in async 27 print(obj.getName());
|
/arkcompiler/ets_runtime/test/typeinfer/interface/ |
D | interface.ts | 76 getName() : string; 91 getName() { 116 AssertType(stu.getName(), "string");
|
/arkcompiler/ets_runtime/test/aottest/stclasstoglobalrecord/ |
D | stclasstoglobalrecord.ts | 27 get getName(): string { 44 print(xiaoMing.getName);
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | lexenv.ts | 88 insns.push(throwUndefinedIfHole(v.getName())); 105 insns.push(throwUndefinedIfHole(v.getName())); 140 insns.push(throwUndefinedIfHole(v.getName())); 173 insns.push(throwUndefinedIfHole(v.getName())) 193 expansion.push(loadAccumulatorString(v.getName())); 200 let className = v.getName();
|
D | compiler.ts | 1426 this.pandaGen.stLetOrClassToGlobalRecord(node, variable.v.getName()); 1428 this.pandaGen.stConstToGlobalRecord(node, variable.v.getName()); 1435 this.pandaGen.tryStoreGlobalByName(node, variable.v.getName()); 1442 this.pandaGen.tryStoreGlobalByName(node, variable.v.getName()); 1444 this.pandaGen.storeGlobalVar(node, variable.v.getName()); 1450 this.pandaGen.loadAccumulatorString(node, variable.v.getName()); 1465 this.pandaGen.throwUndefinedIfHole(node, variable.v.getName()); 1480 this.pandaGen.tryLoadGlobalByName(node, variable.v.getName()); 1491 … this.pandaGen.loadByNameViaDebugger(node, variable.v.getName(), CacheList.FALSE) : 1493 variable.v.getName()); [all …]
|
D | variable.ts | 64 getName(): string { method in Variable
|
D | debuginfo.ts | 333 if (value.getName() === "0this" || value.getName() === "0newTarget") {
|
/arkcompiler/ets_frontend/arkguard/src/generator/ |
D | UnderlineNameGenerator.ts | 37 public getName(): string { method in UnderlineNameGenerator 46 return this.getName();
|
D | OrderedNameGenerator.ts | 42 public getName(): string { method in OrderedNameGenerator 50 return this.getName();
|
D | DisorderNameGenerator.ts | 51 public getName(): string { method in DisorderNameGenerator 60 return this.getName();
|
D | DictionaryNameGenerator.ts | 43 public getName(): string { method in DictionaryNameGenerator 66 return this.getName();
|
D | ReservedNameGenerator.ts | 114 public getName(): string { method in ReservedNameGenerator 123 return this.getName();
|
D | INameGenerator.ts | 39 getName(): string; method
|
D | HexNameGenerator.ts | 65 public getName(): string { method in HexNameGenerator
|
/arkcompiler/ets_frontend/es2panda/test/parser/ts/ |
D | test-class-definition27.ts | 22 getName(): T { method in async
|
/arkcompiler/ets_runtime/test/typeinfer/parainfer_class/ |
D | parainfer_class.ts | 27 getName(): string {
|
/arkcompiler/ets_frontend/testTs/instype/ |
D | recordthis.ts | 19 get getName(): string { method in A
|
D | recordthis-expected.txt | 3 Handle types for function: getName
|
/arkcompiler/ets_frontend/ts2panda/src/expression/ |
D | objectLiteralExpression.ts | 70 let nameLiteral = new Literal(LiteralTag.STRING, String(prop.getName())); 151 let propName = String(prop.getName()); 194 compiler.compileExpression((<ts.ComputedPropertyName>prop.getName()).expression); 267 … (<string | number>(prop.getName())).toString().lastIndexOf('.') != -1; 269 …n.storeOwnProperty(prop.getValue().parent, objReg, <string | number>(prop.getName()), nameSetting);
|
/arkcompiler/runtime_core/libark_defect_scan_aux/tests/unittest/ |
D | define_info_test.js | 38 get getName() { getter in Bar
|
/arkcompiler/ets_frontend/arkguard/src/transformers/rename/ |
D | RenameIdentifierTransformer.ts | 234 mangled = localGenerator.getName()!; 279 mangledLabel = generator.getName();
|
D | RenamePropertiesTransformer.ts | 194 mangledName = generator.getName();
|
/arkcompiler/ets_frontend/ts2panda/src/statement/ |
D | classStatement.ts | 81 let nameLiteral = new Literal(LiteralTag.STRING, String(prop.getName())); 93 let nameLiteral = new Literal(LiteralTag.STRING, String(prop.getName())); 224 … pandaGen.storeOwnProperty(prop.getValue().parent, classReg, <string | number>prop.getName()); 231 compiler.compileExpression((<ts.ComputedPropertyName>prop.getName()).expression); 257 …aGen.storeOwnProperty(prop.getValue().parent, flag ? proptoReg : classReg, <string>prop.getName()); 697 pandaGen.loadAccumulatorString(accessor!, String(prop.getName()));
|
/arkcompiler/ets_runtime/ecmascript/intl/ |
D | locale_helper.cpp | 341 …if (strcmp(defaultLocale.getName(), "en_US_POSIX") == 0 || strcmp(defaultLocale.getName(), "c") ==… in DefaultLocale() 433 … std::string shortLocale = icu::Locale(languageStr.c_str(), countryStr.c_str()).getName(); in GetAvailableLocales()
|