Home
last modified time | relevance | path

Searched refs:targetName (Results 1 - 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/cg/
H A Dtarget_registry.cpp30 Target *TargetRegistry::lookupTarget(const std::string &targetName) in lookupTarget() argument
34 if (cur->getName() == targetName) { in lookupTarget()
/arkcompiler/ets_runtime/ecmascript/builtins/
H A Dbuiltins_function.cpp282 // 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 Dbuiltins_shared_typedarray.cpp1099 // 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 Dbuiltins_typedarray.cpp1228 // 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 Dtarget_registry.h111 static Target *lookupTarget(const std::string &targetName);
/arkcompiler/ets_frontend/ets2panda/checker/ets/
H A Dobject.cpp1769 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 DdestructuringContext.cpp110 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 DdestructuringContext.cpp111 const util::StringView &targetName = targetProp->AsProperty()->Key()->AsIdentifier()->Name(); in ValidateObjectLiteralType() local
113 if (sourceName == targetName) { in ValidateObjectLiteralType()
/arkcompiler/ets_runtime/ecmascript/
H A Djs_function.cpp253 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 Dlitecg_ir_builder.cpp1350 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 Dcocos_worker_test.js9672 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 DETSchecker.h780 bool FindPropertyInAssignment(const ir::AstNode *it, const std::string &targetName);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_ir_builder.cpp671 std::string targetName = RuntimeStubCSigns::GetRTName(index); in VisitRuntimeCall() local
672 LLVMValueRef callee = GetFunction(glue, signature, rtbaseoffset, targetName); in VisitRuntimeCall()

Completed in 47 milliseconds