Home
last modified time | relevance | path

Searched refs:Replace (Results 1 – 25 of 27) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashmap.h28 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
Dcontainers_treemap.h47 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
Dcontainers_hashmap.cpp323 JSTaggedValue ContainersHashMap::Replace(EcmaRuntimeCallInfo *argv) in Replace() function in panda::ecmascript::containers::ContainersHashMap
327 BUILTINS_API_TRACE(thread, HashMap, Replace); in Replace()
342 return jsHashMap->Replace(thread, key.GetTaggedValue(), newValue.GetTaggedValue()); in Replace()
Dcontainers_treemap.cpp343 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()
Dcontainers_private.cpp519 …SetFrozenFunction(thread, mapFuncPrototype, "replace", ContainersTreeMap::Replace, FuncLength::TWO… in InitializeTreeMap()
1129 …SetFrozenFunction(thread, hashMapFuncPrototype, "replace", ContainersHashMap::Replace, FuncLength:… in InitializeHashMap()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_tree_map.h47 …static bool Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTaggedVa…
Djs_api_hashmap.cpp96 JSTaggedValue JSAPIHashMap::Replace(JSThread *thread, JSTaggedValue key, JSTaggedValue newValue) in Replace() function in panda::ecmascript::JSAPIHashMap
176 if (hashMap->Replace(thread, key.GetTaggedValue(), value.GetTaggedValue()).IsFalse()) { in SetAllLinkedNode()
188 if (hashMap->Replace(thread, key.GetTaggedValue(), value.GetTaggedValue()).IsFalse()) { in SetAllRBTreeNode()
Djs_api_hashmap.h41 JSTaggedValue Replace(JSThread *thread, JSTaggedValue key, JSTaggedValue newValue);
Djs_api_tree_map.cpp102 bool JSAPITreeMap::Replace(JSThread *thread, const JSHandle<JSAPITreeMap> &map, const JSHandle<JSTa… in Replace() function in panda::ecmascript::JSAPITreeMap
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_string.h80 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
Dbuiltins_regexp.h74 static JSTaggedValue Replace(EcmaRuntimeCallInfo *argv);
Dbuiltins_regexp.cpp708 JSTaggedValue BuiltinsRegExp::Replace(EcmaRuntimeCallInfo *argv) in Replace() function in panda::ecmascript::builtins::BuiltinsRegExp
711 BUILTINS_API_TRACE(argv->GetThread(), RegExp, Replace); in Replace()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_string_test.cpp1011 HWTEST_F_L0(BuiltinsStringTest, Replace) in HWTEST_F_L0() argument
1026 JSTaggedValue result = BuiltinsString::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1042 JSTaggedValue result1 = BuiltinsString::Replace(ecmaRuntimeCallInfo1); in HWTEST_F_L0()
1059 JSTaggedValue result2 = BuiltinsString::Replace(ecmaRuntimeCallInfo2); in HWTEST_F_L0()
1076 JSTaggedValue result3 = BuiltinsString::Replace(ecmaRuntimeCallInfo3); in HWTEST_F_L0()
1094 JSTaggedValue result4 = BuiltinsString::Replace(ecmaRuntimeCallInfo4); in HWTEST_F_L0()
1117 JSTaggedValue result = BuiltinsString::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0()
1134 JSTaggedValue result2 = BuiltinsString::Replace(ecmaRuntimeCallInfo2); in HWTEST_F_L0()
1152 JSTaggedValue result3 = BuiltinsString::Replace(ecmaRuntimeCallInfo3); in HWTEST_F_L0()
1170 JSTaggedValue result4 = BuiltinsString::Replace(ecmaRuntimeCallInfo4); in HWTEST_F_L0()
[all …]
Dbuiltins_regexp_test.cpp589 JSTaggedValue results = BuiltinsRegExp::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0()
615 JSTaggedValue results = BuiltinsRegExp::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0()
640 JSTaggedValue results = BuiltinsRegExp::Replace(ecmaRuntimeCallInfo); in HWTEST_F_L0()
/arkcompiler/ets_runtime/test/fuzztest/containershashmapreplace_fuzzer/
Dcontainershashmapreplace_fuzzer.cpp110 ContainersHashMap::Replace(callInfo1); in ContainersHashMapReplaceFuzzTest()
/arkcompiler/ets_runtime/test/fuzztest/containerstreemapreplace_fuzzer/
Dcontainerstreemapreplace_fuzzer.cpp115 ContainersTreeMap::Replace(callInfo); in ContainersTreeMapReplaceFuzzTest()
/arkcompiler/runtime_core/compiler/docs/
Davoid-calculating-start-of-array.md24 array acesses instead of object address. Replace the `{Store, Load}Array`
/arkcompiler/runtime_core/cmake/
DClangTidy.cmake173 # NB! Replace with list(JOIN ...) after switching to CMake 3.12+
179 # NB! Replace with list(JOIN ...) after switching to CMake 3.12+
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_api_tree_map_test.cpp215 bool success = JSAPITreeMap::Replace(thread, tmap, key, value); in HWTEST_F_L0()
224 bool success = JSAPITreeMap::Replace(thread, tmap, key, value); in HWTEST_F_L0()
Djs_api_hashmap_test.cpp230 … JSTaggedValue success = hashMap->Replace(thread, key.GetTaggedValue(), value.GetTaggedValue()); in HWTEST_F_L0()
402 JSTaggedValue replaceResult = hashMap->Replace( in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/
Druntime_call_id.h643 V(RegExp, Replace) \
702 V(String, Replace) \
892 V(HashMap, Replace) \
926 V(TreeMap, Replace) \
/arkcompiler/runtime_core/
DREADME.md117 | --skip-string-literals | Replace string literals with their respective id's, thus shortening emit…
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_hashmap_test.cpp703 HWTEST_F_L0(ContainersHashMapTest, Replace) in HWTEST_F_L0() argument
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()
Dcontainers_treemap_test.cpp1011 HWTEST_F_L0(ContainersTreeMapTest, Replace) in HWTEST_F_L0() argument
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/
Dsnapshot_processor.cpp347 reinterpret_cast<uintptr_t>(RegExp::Replace),
494 reinterpret_cast<uintptr_t>(BuiltinsString::Replace),
761 reinterpret_cast<uintptr_t>(HashMap::Replace),
839 reinterpret_cast<uintptr_t>(TreeMap::Replace),

12