Searched refs:rootName (Results 1 - 3 of 3) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/extractortool/src/ |
H A D | zip_file.cpp | 283 auto rootName = srcPath.back() == FILE_SEPARATOR_CHAR ? in GetAllFileList() local 289 while (cur < rootName.size() && rootName[cur] == FILE_SEPARATOR_CHAR) { in GetAllFileList() 292 if (cur >= rootName.size()) { in GetAllFileList() 295 auto next = rootName.find_first_of(FILE_SEPARATOR_CHAR, cur); in GetAllFileList() 296 auto nodeName = (next == std::string::npos) ? rootName.substr(cur) : in GetAllFileList() 297 rootName.substr(cur, next - cur); in GetAllFileList() 306 GetTreeFileList(parent, rootName, assetList); in GetAllFileList()
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_json.cpp | 143 // Let rootName be the empty String. in ParseWithTransformType() 144 JSHandle<JSTaggedValue> rootName(factory->GetEmptyString()); in ParseWithTransformType() 145 // Perform ! CreateDataPropertyOrThrow(root, rootName, unfiltered). in ParseWithTransformType() 146 bool success = JSObject::CreateDataProperty(thread, root, rootName, result, sCheckMode); in ParseWithTransformType() 148 result = Internalize::InternalizeJsonProperty(thread, root, rootName, callbackfnHandle, transformType); in ParseWithTransformType()
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
H A D | ason_test.cpp | 267 JSHandle<JSTaggedValue> rootName(factory->GetEmptyString()); in HWTEST_F_L0() 270 result = Internalize::InternalizeJsonProperty(thread, root, rootName, undefined, TransformType::SENDABLE); in HWTEST_F_L0()
|
Completed in 3 milliseconds