/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/ |
H A D | target_registry.cpp | 30 Target *TargetRegistry::lookupTarget(const std::string &targetName) in lookupTarget() argument 34 if (cur->getName() == targetName) { in lookupTarget()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_function.cpp | 282 // 12. Let targetName be Get(Target, "name"). in FunctionPrototypeBindInternal() 283 JSHandle<JSTaggedValue> targetName = JSObject::GetProperty(thread, target, nameKey).GetValue(); in FunctionPrototypeBindInternal() local 284 // 13. ReturnIfAbrupt(targetName). in FunctionPrototypeBindInternal() 288 // 14. If Type(targetName) is not String, let targetName be the empty string. in FunctionPrototypeBindInternal() 289 // 15. Perform SetFunctionName(F, targetName, "bound"). in FunctionPrototypeBindInternal() 291 if (!targetName->IsString()) { in FunctionPrototypeBindInternal() 297 targetName, boundName); in FunctionPrototypeBindInternal()
|
H A D | builtins_shared_typedarray.cpp | 1099 // 12. Let targetName be the String value of target’s [[TypedArrayName]] internal slot. in Set() 1100 // 13. Let targetElementSize be the Number value of the Element Size value specified in Table 49 for targetName. in Set() 1101 // 14. Let targetType be the String value of the Element Type value in Table 49 for targetName. in Set() 1360 // 19. Let targetName be the String value of A’s [[TypedArrayName]] internal slot. in Slice() 1361 // 20. Let targetType be the String value of the Element Type value in Table 49 for targetName. in Slice() 1362 JSHandle<JSTaggedValue> targetName(thread, JSTypedArray::Cast(*newArrObj)->GetTypedArrayName()); in Slice() 1363 DataViewType targetType = JSTypedArray::GetTypeFromName(thread, targetName); in Slice()
|
H A D | builtins_typedarray.cpp | 1228 // 12. Let targetName be the String value of target’s [[TypedArrayName]] internal slot. in Set() 1229 // 13. Let targetElementSize be the Number value of the Element Size value specified in Table 49 for targetName. in Set() 1230 // 14. Let targetType be the String value of the Element Type value in Table 49 for targetName. in Set() 1472 // 19. Let targetName be the String value of A’s [[TypedArrayName]] internal slot. in Slice() 1473 // 20. Let targetType be the String value of the Element Type value in Table 49 for targetName. in Slice() 1474 JSHandle<JSTaggedValue> targetName(thread, JSTypedArray::Cast(*newArrObj)->GetTypedArrayName()); in Slice() 1475 DataViewType targetType = JSTypedArray::GetTypeFromName(thread, targetName); in Slice()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/ |
H A D | target_registry.h | 111 static Target *lookupTarget(const std::string &targetName);
|
/arkcompiler/ets_frontend/ets2panda/checker/ets/ |
H A D | object.cpp | 1769 std::string targetName = prop->Key()->AsIdentifier()->Name().Mutf8(); 1770 if (targetName.find(compiler::Signatures::PROPERTY) == 0) { 1771 targetName = targetName.substr(compiler::Signatures::PROPERTY.size()); 1776 return FindPropertyInAssignment(it, targetName); 1783 bool ETSChecker::FindPropertyInAssignment(const ir::AstNode *it, const std::string &targetName) 1785 return it->AsClassProperty()->Value()->FindChild([&targetName](ir::AstNode *node) { 1786 return node->IsIdentifier() && node->AsIdentifier()->Name().Is(targetName) && node->Parent() != nullptr &&
|
/arkcompiler/ets_frontend/es2panda/typescript/core/ |
H A D | destructuringContext.cpp | 110 const util::StringView &targetName = targetProp->AsProperty()->Key()->AsIdentifier()->Name(); in ValidateObjectLiteralType() local 112 if (sourceName == targetName) { in ValidateObjectLiteralType()
|
/arkcompiler/ets_frontend/ets2panda/checker/ts/ |
H A D | destructuringContext.cpp | 111 const util::StringView &targetName = targetProp->AsProperty()->Key()->AsIdentifier()->Name(); in ValidateObjectLiteralType() local 113 if (sourceName == targetName) { in ValidateObjectLiteralType()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | js_function.cpp | 253 JSHandle<JSTaggedValue> targetName = JSObject::GetProperty(thread, target, nameKey).GetValue(); in NameGetter() local 261 if (!targetName->IsString()) { in NameGetter() 264 JSHandle<EcmaString> functionName = JSHandle<EcmaString>::Cast(targetName); in NameGetter()
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_ir_builder.cpp | 1350 std::string targetName = RuntimeStubCSigns::GetRTName(index); in VisitRuntimeCall() local 1352 std::string name = targetName.empty() ? signature->GetName() : targetName; in VisitRuntimeCall() 1457 std::string targetName = RuntimeStubCSigns::GetRTName(index); in VisitRuntimeCallWithArgv() local 1458 std::string name = targetName.empty() ? signature->GetName() : targetName; in VisitRuntimeCallWithArgv()
|
/arkcompiler/ets_frontend/es2panda/test/compiler/js/ |
H A D | cocos_worker_test.js | 9672 const o = null != i.targetName ? i.targetName : e; 15758 targetName: "Vec2" 15763 targetName: "Vec2" 15768 targetName: "Vec2" 15773 targetName: "Vec2" 15778 targetName: "Vec2" 15783 targetName: "Vec2" 15788 targetName: "Vec2" 15793 targetName [all...] |
/arkcompiler/ets_frontend/ets2panda/checker/ |
H A D | ETSchecker.h | 780 bool FindPropertyInAssignment(const ir::AstNode *it, const std::string &targetName);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/ |
H A D | llvm_ir_builder.cpp | 671 std::string targetName = RuntimeStubCSigns::GetRTName(index); in VisitRuntimeCall() local 672 LLVMValueRef callee = GetFunction(glue, signature, rtbaseoffset, targetName); in VisitRuntimeCall()
|