Home
last modified time | relevance | path

Searched refs:CreateDataProperty (Results 1 – 11 of 11) 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_json.cpp70 bool success = JSObject::CreateDataProperty(thread, root, rootName, result); in Parse()
Dbuiltins_regexp.cpp487 JSObject::CreateDataProperty(thread, array, resultNum, matchValue); in Match()
825 JSObject::CreateDataProperty(thread, resultsList, resultsIndex, execResult); in Replace()
1209 JSObject::CreateDataProperty(thread, array, 0, jsString); in Split()
1252 JSObject::CreateDataProperty(thread, array, aLength, tValue); in Split()
1285 JSObject::CreateDataProperty(thread, array, aLength, nextCapture); in Split()
1313 JSObject::CreateDataProperty(thread, array, aLength, tValue); in Split()
1477 JSObject::CreateDataProperty(thread, results, indexKey, indexValue); in RegExpBuiltinExec()
1482 JSObject::CreateDataProperty(thread, results, inputKey, inputValue); in RegExpBuiltinExec()
1485 JSObject::CreateDataProperty(thread, results, 0, zeroValue); in RegExpBuiltinExec()
1497 JSObject::CreateDataProperty(thread, results, groupsKey, groups); in RegExpBuiltinExec()
[all …]
Dbuiltins_array.cpp90 JSObject::CreateDataProperty(thread, newArrayHandle, key0, len); in ArrayConstructor()
124 JSObject::CreateDataProperty(thread, newArrayHandle, key, itemK); in ArrayConstructor()
2719 JSObject::CreateDataProperty(thread, unscopableList, copyWithKey, trueVal); in Unscopables()
2722 JSObject::CreateDataProperty(thread, unscopableList, entriesKey, trueVal); in Unscopables()
2725 JSObject::CreateDataProperty(thread, unscopableList, fillKey, trueVal); in Unscopables()
2728 JSObject::CreateDataProperty(thread, unscopableList, findKey, trueVal); in Unscopables()
2731 JSObject::CreateDataProperty(thread, unscopableList, findIndexKey, trueVal); in Unscopables()
2734 JSObject::CreateDataProperty(thread, unscopableList, flatKey, trueVal); in Unscopables()
2737 JSObject::CreateDataProperty(thread, unscopableList, flatMapKey, trueVal); in Unscopables()
2740 JSObject::CreateDataProperty(thread, unscopableList, includesKey, trueVal); in Unscopables()
[all …]
Dbuiltins_string.cpp1412 JSObject::CreateDataProperty(thread, resultArray, 0, JSHandle<JSTaggedValue>(thisString)); in Split()
1421 JSObject::CreateDataProperty(thread, resultArray, 0, JSHandle<JSTaggedValue>(thisString)); in Split()
1431 JSObject::CreateDataProperty(thread, resultArray, arrayLength, elementTag); in Split()
1445 JSObject::CreateDataProperty(thread, resultArray, arrayLength, elementTag); in Split()
1456 JSObject::CreateDataProperty(thread, resultArray, arrayLength, elementTag); in Split()
/arkcompiler/ets_runtime/ecmascript/
Djs_collator.cpp425 JSObject::CreateDataProperty(thread, options, globalConst->GetHandledUsageString(), usageValue); in ResolvedOptions()
430 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledSensitivityString(), sensitiv… in ResolvedOptions()
434 JSObject::CreateDataProperty(thread, options, globalConst->GetHandledIgnorePunctuationString(), in ResolvedOptions()
442 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledCollationString(), collationV… in ResolvedOptions()
446 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledNumericString(), numericValue… in ResolvedOptions()
453 …JSObject::CreateDataProperty(thread, options, globalConst->GetHandledCaseFirstString(), caseFirstV… in ResolvedOptions()
Djs_object.cpp741 return CreateDataProperty(thread, JSHandle<JSObject>(receiver), key, value); in SetProperty()
1363 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<J… in CreateDataProperty() function in panda::ecmascript::JSObject
1377 bool JSObject::CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index, in CreateDataProperty() function in panda::ecmascript::JSObject
1397 bool success = CreateDataProperty(thread, obj, key, value); in CreateDataPropertyOrThrow()
1409 bool success = CreateDataProperty(thread, obj, index, value); in CreateDataPropertyOrThrow()
1798 bool success = CreateDataProperty(thread, objHandle, valueStr, desc.GetValue()); in FromPropertyDescriptor()
1805 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, writableStr, writable); in FromPropertyDescriptor()
1811 bool success = CreateDataProperty(thread, objHandle, getStr, desc.GetGetter()); in FromPropertyDescriptor()
1817 bool success = CreateDataProperty(thread, objHandle, setStr, desc.GetSetter()); in FromPropertyDescriptor()
1825 … [[maybe_unused]] bool success = CreateDataProperty(thread, objHandle, enumerableStr, enumerable); in FromPropertyDescriptor()
[all …]
Djs_object.h387 …static bool CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, const JSHandle<JST…
390 static bool CreateDataProperty(JSThread *thread, const JSHandle<JSObject> &obj, uint32_t index,
/arkcompiler/ets_runtime/ecmascript/base/
Djson_parser.cpp81 changeResult = JSObject::CreateDataProperty(thread, holder, name, value); in RecurseAndApply()
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_object_test.cpp229 HWTEST_F_L0(JSObjectTest, CreateDataProperty) in HWTEST_F_L0() argument
240 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()