Searched refs:newName (Results 1 - 11 of 11) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_util/src/ |
H A D | namemangler.cpp | 67 std::string newName(nameLen, '\0'); in DecodeName() 82 newName[pos++] = namePtr[i++]; in DecodeName() 99 newName[pos++] = str[0]; in DecodeName() 100 newName[pos++] = str[1]; in DecodeName() 102 newName[pos++] = str[0]; in DecodeName() 103 newName[pos++] = str[1]; in DecodeName() 104 newName[pos++] = str[2]; // 2 is index of third char in DecodeName() 106 newName[pos++] = str[0]; in DecodeName() 107 newName[pos++] = str[1]; in DecodeName() 108 newName[po in DecodeName() [all...] |
/arkcompiler/ets_frontend/arkguard/test/grammar/shorthand/toplevelConfig/ |
H A D | someSimilarGrammars.js | 39 let { newName, ...reset3 } = {'newName': 'akria5', newAge: 18}; property 40 assert(newName === 'akria5', 'success');
|
/arkcompiler/ets_frontend/arkguard/test/grammar/shorthand/defaultConfig/ |
H A D | someSimilarGrammars1.js | 41 let { newName, ...reset3 } = {'newName': 'akria5', newAge: 20}; property 42 assert(newName === 'akria5', 'success');
|
/arkcompiler/ets_frontend/ets2panda/checker/types/ets/ |
H A D | etsArrayType.h | 48 void SetAssemblerName(const util::StringView &newName) in SetAssemblerName() argument 50 assemblerName_ = newName; in SetAssemblerName()
|
H A D | etsObjectType.h | 255 void SetName(const util::StringView &newName) in SetName() argument 257 name_ = newName; in SetName() 260 void SetAssemblerName(const util::StringView &newName) in SetAssemblerName() argument 262 assemblerName_ = newName; in SetAssemblerName()
|
/arkcompiler/ets_frontend/ets2panda/ir/expressions/ |
H A D | identifier.h | 85 void SetName(const util::StringView &newName) noexcept 87 name_ = newName;
|
/arkcompiler/runtime_core/static_core/plugins/ets/tests/runtime/types/ |
H A D | ets_class_file_test.cpp | 691 EtsString *newName = EtsString::CreateFromMUtf8("TestNewName"); in TEST_F() local 693 ASSERT_NE(newName, nullptr); in TEST_F() 697 ASSERT_TRUE(klass->CompareAndSetName(oldName, newName)); in TEST_F() 698 ASSERT_TRUE(klass->GetName()->StringsAreEqual(newName->AsObject())); in TEST_F() 700 ASSERT_TRUE(klass->CompareAndSetName(newName, oldName)); in TEST_F()
|
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
H A D | ets_class.cpp | 478 bool EtsClass::CompareAndSetName(EtsString *oldName, EtsString *newName) in CompareAndSetName() argument 481 reinterpret_cast<ObjectHeader *>(newName), in CompareAndSetName()
|
H A D | ets_class.h | 385 bool CompareAndSetName(EtsString *oldName, EtsString *newName);
|
/arkcompiler/runtime_core/static_core/runtime/hotreload/ |
H A D | hotreload.cpp | 405 PandaString newName = utf::Mutf8AsCString(newMethod.GetName().data); in MethodChangesCheck() local 406 if (oldName != newName) { in MethodChangesCheck()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 9671 const r = null != i.newName ? i.newName : i.name; 9816 const {newName: i, since: s, removed: n} = e; 15756 newName: "subtract", 15761 newName: "multiply", 15766 newName: "divide", 15771 newName: "distance", 15776 newName: "squaredDistance", 15781 newName: "len", 15786 newName [all...] |
Completed in 27 milliseconds