Home
last modified time | relevance | path

Searched refs:CreateDataProperty (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_proxy.cpp70 JSObject::CreateDataProperty(thread, result, proxyKey, JSHandle<JSTaggedValue>(proxy)); in Revocable()
74 JSObject::CreateDataProperty(thread, result, revokeKey, JSHandle<JSTaggedValue>(revoker)); in Revocable()
Dbuiltins_array.cpp93 JSObject::CreateDataProperty(thread, newArrayHandle, key0, len); in ArrayConstructor()
131 JSObject::CreateDataProperty(thread, newArrayHandle, key, itemK); in ArrayConstructor()
2731 JSObject::CreateDataProperty(thread, unscopableList, atKey, trueVal); in Unscopables()
2734 JSObject::CreateDataProperty(thread, unscopableList, copyWithKey, trueVal); in Unscopables()
2737 JSObject::CreateDataProperty(thread, unscopableList, entriesKey, trueVal); in Unscopables()
2740 JSObject::CreateDataProperty(thread, unscopableList, fillKey, trueVal); in Unscopables()
2743 JSObject::CreateDataProperty(thread, unscopableList, findKey, trueVal); in Unscopables()
2746 JSObject::CreateDataProperty(thread, unscopableList, findIndexKey, trueVal); in Unscopables()
2749 JSObject::CreateDataProperty(thread, unscopableList, findLastKey, trueVal); in Unscopables()
2752 JSObject::CreateDataProperty(thread, unscopableList, findLastIndexKey, trueVal); in Unscopables()
[all …]
Dbuiltins_json.cpp71 bool success = JSObject::CreateDataProperty(thread, root, rootName, result); in Parse()
Dbuiltins_ark_tools.h75 …V("createDataProperty", CreateDataProperty, 3, INVAL…
245 static JSTaggedValue CreateDataProperty(EcmaRuntimeCallInfo *info);
Dbuiltins_regexp.cpp640 JSObject::CreateDataProperty(thread, array, resultNum, matchValue); in Match()
1013 JSObject::CreateDataProperty(thread, resultsList, resultsIndex, execResult); in ReplaceInternal()
1431 JSObject::CreateDataProperty(thread, array, 0, jsString); in Split()
1474 JSObject::CreateDataProperty(thread, array, aLength, tValue); in Split()
1507 JSObject::CreateDataProperty(thread, array, aLength, nextCapture); in Split()
1535 JSObject::CreateDataProperty(thread, array, aLength, tValue); in Split()
1810 JSObject::CreateDataProperty(thread, results, groupsKey, groups); in MakeMatchIndicesIndexPairArray()
1833 JSObject::CreateDataProperty(thread, results, i, matchIndexPair); in MakeMatchIndicesIndexPairArray()
1838 JSObject::CreateDataProperty(thread, groupObject, groupName, matchIndexPair); in MakeMatchIndicesIndexPairArray()
1924 JSObject::CreateDataProperty(thread, results, indexKey, indexValue); in RegExpBuiltinExec()
[all …]
Dbuiltins_string.cpp1472 JSObject::CreateDataProperty(thread, resultArray, 0, JSHandle<JSTaggedValue>(thisString)); in Split()
1489 JSObject::CreateDataProperty(thread, resultArray, i, elementTag); in CreateArrayFromString()
1510 … JSObject::CreateDataProperty(thread, resultArray, 0, JSHandle<JSTaggedValue>(thisString)); in CreateArrayBySplitString()
Dbuiltins_ark_tools.cpp721 JSTaggedValue BuiltinsArkTools::CreateDataProperty([[maybe_unused]] EcmaRuntimeCallInfo *info) in CreateDataProperty() function in panda::ecmascript::builtins::BuiltinsArkTools
/arkcompiler/ets_runtime/ecmascript/
Djs_collator.cpp432 JSObject::CreateDataProperty(thread, options, globalConst->GetHandledUsageString(), usageValue); in ResolvedOptions()
437 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledSensitivityString(), sensitiv… in ResolvedOptions()
441 JSObject::CreateDataProperty(thread, options, globalConst->GetHandledIgnorePunctuationString(), in ResolvedOptions()
449 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledCollationString(), collationV… in ResolvedOptions()
453 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledNumericString(), numericValue… in ResolvedOptions()
460 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledCaseFirstString(), caseFirstV… in ResolvedOptions()
Djs_object.cpp856 return CreateDataProperty(thread, JSHandle<JSObject>(receiver), key, value); in SetPropertyForDataDescriptorProxy()
1607 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<J… in CreateDataProperty() function in panda::ecmascript::JSObject
1622 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index, in CreateDataProperty() function in panda::ecmascript::JSObject
1643 bool success = CreateDataProperty(thread, obj, key, value, sCheckMode); in CreateDataPropertyOrThrow()
1655 bool success = CreateDataProperty(thread, obj, index, value); in CreateDataPropertyOrThrow()
2064 bool success = CreateDataProperty(thread, objHandle, valueStr, desc.GetValue()); in FromPropertyDescriptor()
2071 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, writableStr, writable); in FromPropertyDescriptor()
2077 bool success = CreateDataProperty(thread, objHandle, getStr, desc.GetGetter()); in FromPropertyDescriptor()
2083 bool success = CreateDataProperty(thread, objHandle, setStr, desc.GetSetter()); in FromPropertyDescriptor()
2091 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, enumerableStr, enumerable); in FromPropertyDescriptor()
[all …]
Djs_object.h432 …static bool CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JST…
435 static bool CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index,
/arkcompiler/ets_runtime/ecmascript/base/
Djson_parser.cpp82 changeResult = JSObject::CreateDataProperty(thread, holder, name, value); in RecurseAndApply()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_object_test.cpp230 HWTEST_F_L0(JSObjectTest, CreateDataProperty) in HWTEST_F_L0() argument
241 bool success = JSObject::CreateDataProperty(thread, obj, key, value); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/builtins/tests/
Dbuiltins_object_test.cpp306 JSObject::CreateDataProperty(thread, attHandle, writableStr, writable); in HWTEST_F_L0()