Home
last modified time | relevance | path

Searched refs:getName (Results 1 – 25 of 34) sorted by relevance

12

/arkcompiler/ets_frontend/arkguard/test/ut/
DNameGenerator.spec.ts41 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/
Dtest-ts-class-name-1.ts22 getName(): string { method in async
27 print(obj.getName());
/arkcompiler/ets_runtime/test/typeinfer/interface/
Dinterface.ts76 getName() : string;
91 getName() {
116 AssertType(stu.getName(), "string");
/arkcompiler/ets_runtime/test/aottest/stclasstoglobalrecord/
Dstclasstoglobalrecord.ts27 get getName(): string {
44 print(xiaoMing.getName);
/arkcompiler/ets_frontend/ts2panda/src/
Dlexenv.ts88 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();
Dcompiler.ts1426 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 …]
Dvariable.ts64 getName(): string { method in Variable
Ddebuginfo.ts333 if (value.getName() === "0this" || value.getName() === "0newTarget") {
/arkcompiler/ets_frontend/arkguard/src/generator/
DUnderlineNameGenerator.ts37 public getName(): string { method in UnderlineNameGenerator
46 return this.getName();
DOrderedNameGenerator.ts42 public getName(): string { method in OrderedNameGenerator
50 return this.getName();
DDisorderNameGenerator.ts51 public getName(): string { method in DisorderNameGenerator
60 return this.getName();
DDictionaryNameGenerator.ts43 public getName(): string { method in DictionaryNameGenerator
66 return this.getName();
DReservedNameGenerator.ts114 public getName(): string { method in ReservedNameGenerator
123 return this.getName();
DINameGenerator.ts39 getName(): string; method
DHexNameGenerator.ts65 public getName(): string { method in HexNameGenerator
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest-class-definition27.ts22 getName(): T { method in async
/arkcompiler/ets_runtime/test/typeinfer/parainfer_class/
Dparainfer_class.ts27 getName(): string {
/arkcompiler/ets_frontend/testTs/instype/
Drecordthis.ts19 get getName(): string { method in A
Drecordthis-expected.txt3 Handle types for function: getName
/arkcompiler/ets_frontend/ts2panda/src/expression/
DobjectLiteralExpression.ts70 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/
Ddefine_info_test.js38 get getName() { getter in Bar
/arkcompiler/ets_frontend/arkguard/src/transformers/rename/
DRenameIdentifierTransformer.ts234 mangled = localGenerator.getName()!;
279 mangledLabel = generator.getName();
DRenamePropertiesTransformer.ts194 mangledName = generator.getName();
/arkcompiler/ets_frontend/ts2panda/src/statement/
DclassStatement.ts81 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/
Dlocale_helper.cpp341 …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()

12