Home
last modified time | relevance | path

Searched defs:newValue (Results 1 – 24 of 24) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dmethod.h123 uint64_t newValue = SetNumArgsWithCallField(callField, numargs); in SetNumArgsWithCallField() local
130 uint64_t newValue = SetNativeBit(callField, isNative); in SetNativeBit() local
137 uint64_t newValue = SetAotCodeBit(callField, isCompiled); in SetAotCodeBit() local
144 uint64_t newValue = SetFastBuiltinBit(callField, isFastBuiltin); in SetFastBuiltinBit() local
238 uint64_t newValue = MethodLiteral::SetHotnessCounter(literalInfo, counter); in SetHotnessCounter() local
292 uint64_t newValue = SetDeoptType(extraLiteralInfo, type); in SetDeoptType() local
310 uint64_t newValue = SetFunctionKind(extraLiteralInfo, kind); in SetFunctionKind() local
329 uint64_t newValue = SetIsFastCall(callFiled, isFastCall); in SetIsFastCall() local
342 uint64_t newValue = SetCallNapi(extraLiteralInfo, isCallNapi); in SetCallNapi() local
355 uint64_t newValue = SetBuiltinId(extraLiteralInfo, id); in SetBuiltinId() local
[all …]
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/base/
Dindex.js35 set message(newValue) { argument
/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DnoCrashOnThisTypeUsage.ts33 const newValue: T = value; constant
/arkcompiler/ets_runtime/ecmascript/jspandafile/tests/quickfix/multi_file/patch/
Dindex.js36 set message(newValue) { argument
/arkcompiler/ets_frontend/es2panda/lexer/regexp/
Dregexp.cpp536 uint32_t newValue = decimalValue * MULTIPLIER + DigitValue(Next()); in ParseDecimalEscape() local
577 uint32_t newValue = octalValue * 8 + DigitValue(Peek()); in ParseLegacyOctalEscape() local
765 uint32_t newValue = leftValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
786 uint32_t newValue = rightValue * MULTIPLIER + DigitValue(Next()); in ParseBracedQuantifier() local
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_atomics.cpp351 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithUint8() local
372 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithInt8() local
393 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithUint16() local
414 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithInt16() local
435 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithUint32() local
456 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithInt32() local
480 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithBigInt64() local
505 …JSHandle<JSTaggedValue> newValue = BuiltinsBase::GetCallArg(argv, BuiltinsBase::ArgsPosition::FOUR… in HandleWithBigUint64() local
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_hashmap.cpp96 JSTaggedValue JSAPIHashMap::Replace(JSThread *thread, JSTaggedValue key, JSTaggedValue newValue) in Replace()
/arkcompiler/ets_runtime/ecmascript/ic/tests/
Dprofile_type_info_test.cpp76 JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(1)); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_hashmap.cpp340 JSHandle<JSTaggedValue> newValue = GetCallArg(argv, 1); in Replace() local
/arkcompiler/ets_runtime/test/moduletest/stubbuilder/
Dstubbuilder.js728 newValue: array2.find(o => o.id === id.id).value + 2 property
/arkcompiler/ets_runtime/ecmascript/base/
Dstring_helper.h56 const CString &newValue) in RepalceAll()
/arkcompiler/ets_runtime/ecmascript/containers/tests/
Dcontainers_plainarray_test.cpp68 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means the value in TestForEachFunc() local
Dcontainers_linked_list_test.cpp69 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means mul by 2 in TestForEachFunc() local
Dcontainers_list_test.cpp69 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means mul by 2 in TestForEachFunc() local
Dcontainers_vector_test.cpp86 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means mul by 2 in TestReplaceAllElementsFunc() local
Dcontainers_hashmap_test.cpp69 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means mul by 2 in TestForEachFunc() local
Dcontainers_treemap_test.cpp69 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means mul by 2 in TestForEachFunc() local
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_hclass_test.cpp219 JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(i)); in HWTEST_F_L0() local
Dobject_operator_test.cpp702 JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(i)); in HWTEST_F_L0() local
1061 JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(i)); in HWTEST_F_L0() local
/arkcompiler/ets_runtime/test/fuzztest/arraylist_fuzzer/
Darraylist_fuzzer.cpp114 … JSHandle<JSTaggedValue> newValue(thread, JSTaggedValue(value->GetInt() * 2)); // 2 means mul by 2 in TestReplaceAllElementsFunc() local
/arkcompiler/ets_runtime/test/fuzztest/containersplainarray_fuzzer/
Dcontainersplainarray_fuzzer.cpp311 JSHandle<JSTaggedValue> newValue(thread, value.GetTaggedValue()); in TestForEachFunc() local
/arkcompiler/ets_frontend/ts2panda/ts2abc/
Dts2abc.cpp1039 …void ReplaceAllDistinct(std::string &str, const std::string &oldValue, const std::string &newValue) in ReplaceAllDistinct()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder-inl.h289 GateRef newValue = env->GetBuilder()->TruncInt64ToInt16(value); in SetHotnessCounter() local
1656 GateRef newValue = Int32LSR(value, Int32(JSHClass::NumberOfPropsBits::START_BIT)); in SetNumberOfPropsToHClass() local
/arkcompiler/ets_frontend/es2panda/parser/transformer/
Dtransformer.cpp1026 … auto newValue = AllocNode<ir::BinaryExpression>(callExpr, AllocNode<ir::Identifier>(varName), in CreateMethodDecorators() local