Searched refs:srcName (Results 1 - 6 of 6) sorted by relevance
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/ |
H A D | test_extractor.cpp | 48 auto srcName = PandaString(langExtractor_->GetSourceFile(method)); in GetBreakpointAddress() local 49 auto posSf = srcName.find_last_of("/\\"); in GetBreakpointAddress() 51 srcName = srcName.substr(posSf + 1); in GetBreakpointAddress() 53 if (srcName == name) { in GetBreakpointAddress()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | typed_array_helper.cpp | 451 // 10. Let srcName be the String value of srcArray.[[TypedArrayName]]. in CreateFromTypedArray() 452 // 11. Let srcType be the Element Type value in Table 61 for srcName. in CreateFromTypedArray() 453 // 12. Let srcElementSize be the Element Size value specified in Table 61 for srcName. in CreateFromTypedArray() 455 JSHandle<JSTaggedValue> srcName(thread, srcObj->GetTypedArrayName()); in CreateFromTypedArray() 456 DataViewType srcType = JSTypedArray::GetTypeFromName(thread, srcName); in CreateFromTypedArray() 634 // 10. Let srcName be the String value of srcArray.[[TypedArrayName]]. in CreateSharedFromTypedArray() 635 // 11. Let srcType be the Element Type value in Table 61 for srcName. in CreateSharedFromTypedArray() 636 // 12. Let srcElementSize be the Element Size value specified in Table 61 for srcName. in CreateSharedFromTypedArray() 638 JSHandle<JSTaggedValue> srcName(thread, srcObj->GetTypedArrayName()); in CreateSharedFromTypedArray() 639 DataViewType srcType = JSTypedArray::GetTypeFromName(thread, srcName); in CreateSharedFromTypedArray() [all...] |
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_shared_typedarray.cpp | 1211 // 18. Let srcName be the String value of typedArray’s [[TypedArrayName]] internal slot. in Set() 1212 // 19. Let srcType be the String value of the Element Type value in Table 49 for srcName . in Set() 1213 // 20. Let srcElementSize be the Number value of the Element Size value specified in Table 49 for srcName. in Set() 1216 JSHandle<JSTaggedValue> srcName(thread, typedArray->GetTypedArrayName()); in Set() 1217 DataViewType srcType = JSTypedArray::GetTypeFromName(thread, srcName); in Set() 1356 // 17. Let srcName be the String value of O’s [[TypedArrayName]] internal slot. in Slice() 1357 // 18. Let srcType be the String value of the Element Type value in Table 49 for srcName. in Slice() 1358 JSHandle<JSTaggedValue> srcName(thread, thisObj->GetTypedArrayName()); in Slice() 1359 DataViewType srcType = JSTypedArray::GetTypeFromName(thread, srcName); in Slice()
|
H A D | builtins_typedarray.cpp | 1338 // 18. Let srcName be the String value of typedArray’s [[TypedArrayName]] internal slot. in Set() 1339 // 19. Let srcType be the String value of the Element Type value in Table 49 for srcName . in Set() 1340 // 20. Let srcElementSize be the Number value of the Element Size value specified in Table 49 for srcName. in Set() 1343 JSHandle<JSTaggedValue> srcName(thread, typedArray->GetTypedArrayName()); in Set() 1344 DataViewType srcType = JSTypedArray::GetTypeFromName(thread, srcName); in Set() 1468 // 17. Let srcName be the String value of O’s [[TypedArrayName]] internal slot. in Slice() 1469 // 18. Let srcType be the String value of the Element Type value in Table 49 for srcName. in Slice() 1470 JSHandle<JSTaggedValue> srcName(thread, thisObj->GetTypedArrayName()); in Slice() 1471 DataViewType srcType = JSTypedArray::GetTypeFromName(thread, srcName); in Slice()
|
/arkcompiler/ets_runtime/ecmascript/napi/include/ |
H A D | jsnapi_expo.h | 1698 static bool IsOhmUrl(const std::string &srcName);
|
/arkcompiler/ets_runtime/ecmascript/napi/ |
H A D | jsnapi_expo.cpp | 4039 bool JSNApi::IsOhmUrl(const std::string &srcName) in IsOhmUrl() argument 4041 return ModulePathHelper::IsOhmUrl(srcName.c_str()); in IsOhmUrl()
|
Completed in 35 milliseconds