/arkcompiler/ets_runtime/ecmascript/containers/ |
H A D | containers_hashmap.h | 28 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
|
H A D | containers_treemap.h | 47 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
|
H A D | containers_hashmap.cpp | 337 JSTaggedValue ContainersHashMap::Replace(EcmaRuntimeCallInfo *argv) in Replace() function in panda::ecmascript::containers::ContainersHashMap 341 BUILTINS_API_TRACE(thread, HashMap, Replace); in Replace() 356 return JSTaggedValue(jsHashMap->Replace(thread, key.GetTaggedValue(), newValue.GetTaggedValue())); in Replace()
|
H A D | containers_treemap.cpp | 343 JSTaggedValue ContainersTreeMap::Replace(EcmaRuntimeCallInfo *argv) in Replace() function in panda::ecmascript::containers::ContainersTreeMap 345 BUILTINS_API_TRACE(argv->GetThread(), TreeMap, Replace); in Replace() 364 bool success = JSAPITreeMap::Replace(thread, map, key, value); in Replace()
|
H A D | containers_private.cpp | 516 SetFrozenFunction(thread, mapFuncPrototype, "replace", ContainersTreeMap::Replace, FuncLength::TWO); in InitializeTreeMap() 1203 SetFrozenFunction(thread, hashMapFuncPrototype, "replace", ContainersHashMap::Replace, FuncLength::TWO); in InitializeHashMap()
|
/arkcompiler/ets_runtime/ecmascript/js_api/ |
H A D | js_api_hashmap.cpp | 92 bool JSAPIHashMap::Replace(JSThread *thread, JSTaggedValue key, JSTaggedValue newValue) in Replace() function in panda::ecmascript::JSAPIHashMap 168 if (!hashMap->Replace(thread, node->GetKey(), node->GetValue())) { in SetAllLinkedNode() 182 if (!hashMap->Replace(thread, key.GetTaggedValue(), value.GetTaggedValue())) { in SetAllRBTreeNode()
|
H A D | js_api_tree_map.h | 47 static bool Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key,
|
H A D | js_api_hashmap.h | 41 bool Replace(JSThread *thread, JSTaggedValue key, JSTaggedValue newValue);
|
H A D | js_api_tree_map.cpp | 110 bool JSAPITreeMap::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedValue> &key, in Replace() function in panda::ecmascript::JSAPITreeMap
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
H A D | builtins_symbol.h | 34 V(replace, Replace) \
|
H A D | builtins_regexp.h | 69 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv); 145 V(REPLACE, Replace)
|
H A D | builtins_string.h | 79 V("replace", Replace, 2, StringReplace) \ 199 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
|
/arkcompiler/ets_runtime/ecmascript/tests/ |
H A D | js_api_tree_map_test.cpp | 169 bool success = JSAPITreeMap::Replace(thread, tmap, key, value); in HWTEST_F_L0() 178 bool success = JSAPITreeMap::Replace(thread, tmap, key, value); in HWTEST_F_L0()
|
H A D | js_api_hashmap_test.cpp | 181 bool success = hashMap->Replace(thread, key.GetTaggedValue(), value.GetTaggedValue()); in HWTEST_F_L0() 351 // test RBTree Replace and Get in HWTEST_F_L0() 353 bool replaceResult = hashMap->Replace( in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/base/tests/ |
H A D | string_helper_test.cpp | 214 HWTEST_F_L0(StringHelperTest, Replace) in HWTEST_F_L0() 217 CString result = StringHelper::Replace(sourceStr, "@arkui-x.", "@ohos:"); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/builtins/tests/ |
H A D | builtins_regexp_test.cpp | 525 JSTaggedValue results = BuiltinsRegExp::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0() 551 JSTaggedValue results = BuiltinsRegExp::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0() 576 JSTaggedValue results = BuiltinsRegExp::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0()
|
H A D | builtins_string_test.cpp | 89 return BuiltinsString::Replace(ecmaRuntimeCallInfos); in StringAlgorithmOther() 932 HWTEST_F_L0(BuiltinsStringTest, Replace) in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | runtime_call_id.h | 741 V(RegExp, Replace) \ 813 V(String, Replace) \ 1062 V(HashMap, Replace) \ 1098 V(TreeMap, Replace) \
|
/arkcompiler/ets_runtime/ecmascript/containers/tests/ |
H A D | containers_hashmap_test.cpp | 703 HWTEST_F_L0(ContainersHashMapTest, Replace) in HWTEST_F_L0() 729 JSTaggedValue result = ContainersHashMap::Replace(callInfo); in HWTEST_F_L0() 786 JSTaggedValue result = ContainersHashMap::Replace(callInfo); in HWTEST_F_L0() 990 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersHashMap, Replace); in HWTEST_F_L0()
|
H A D | containers_treemap_test.cpp | 1011 HWTEST_F_L0(ContainersTreeMapTest, Replace) in HWTEST_F_L0() 1037 JSTaggedValue result = ContainersTreeMap::Replace(callInfo); in HWTEST_F_L0() 1094 JSTaggedValue result = ContainersTreeMap::Replace(callInfo); in HWTEST_F_L0() 1422 CONTAINERS_API_TYPE_MISMATCH_EXCEPTION_TEST(ContainersTreeMap, Replace); in HWTEST_F_L0()
|
/arkcompiler/ets_runtime/ecmascript/snapshot/mem/ |
H A D | snapshot_processor.cpp | 323 reinterpret_cast<uintptr_t>(RegExp::Replace), 471 reinterpret_cast<uintptr_t>(BuiltinsString::Replace), 743 reinterpret_cast<uintptr_t>(HashMap::Replace), 821 reinterpret_cast<uintptr_t>(TreeMap::Replace),
|
/arkcompiler/ets_runtime/ecmascript/module/ |
H A D | module_path_helper.cpp | 718 requestPath = StringHelper::Replace(requestPath, RAW_ARKUIX_PREFIX, REQUIRE_NAPI_OHOS_PREFIX); in TranstaleExpressionInput() 923 return StringHelper::Replace(requestPath, RAW_ARKUIX_PREFIX, REQUIRE_NAPI_OHOS_PREFIX); in TranslateExpressionToNormalized()
|
/arkcompiler/ets_runtime/test/fuzztest/containershashmapcommon_fuzzer/ |
H A D | containershashmapcommon_fuzzer.h | 390 ContainersHashMap::Replace(callInfo1); in ContainersHashMapReplaceFuzzTest()
|
/arkcompiler/ets_runtime/ecmascript/base/ |
H A D | string_helper.h | 68 static inline CString Replace(CString str, const CString &oldValue, in Replace() function in panda::ecmascript::base::StringHelper
|
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapcommon_fuzzer/ |
H A D | containerstreemapcommon_fuzzer.h | 486 ContainersTreeMap::Replace(callInfo); in ContainersTreeMapReplaceFuzzTest()
|