/arkcompiler/ets_runtime/test/typeinfer/automatedcases/ |
D | vueLikeDataAndPropsInference.ts | 51 … return { bar: true } }, watch: { foo(newVal: string, oldVal: s… 52 … return { bar: true } }, watch: { foo(newVal: string, oldVal: s… 79 AssertType({ foo(newVal: string, oldVal: string): void { this.bar = false … 81 foo(newVal: string, oldVal: string): void { 83 AssertType(newVal, "string");
|
D | vueLikeDataAndPropsInference2.ts | 52 … return { bar: true } }, watch: { foo(newVal: string, oldVal: s… 53 … return { bar: true } }, watch: { foo(newVal: string, oldVal: s… 80 AssertType({ foo(newVal: string, oldVal: string): void { this.bar = false … 82 foo(newVal: string, oldVal: string): void { 84 AssertType(newVal, "string");
|
/arkcompiler/ets_runtime/ecmascript/ |
D | js_hclass.h | 414 uint32_t newVal = ObjectTypeBits::Update(bits, type); in SetObjectType() local 415 SetBitField(newVal); in SetObjectType() 1483 uint32_t newVal = ElementsKindBits::Update(bits, kind); in SetElementsKind() local 1484 SetBitField(newVal); in SetElementsKind() 1496 uint32_t newVal = LevelBit::Update(bits, level); in SetLevel() local 1497 SetBitField(newVal); in SetLevel() 1508 uint32_t newVal = DictionaryElementBits::Update(GetBitField(), value); in SetIsDictionaryElement() local 1509 SetBitField(newVal); in SetIsDictionaryElement() 1517 uint32_t newVal = IsStableElementsBit::Update(GetBitField(), value); in SetIsStableElements() local 1518 SetBitField(newVal); in SetIsStableElements() [all …]
|
/arkcompiler/ets_runtime/ecmascript/builtins/ |
D | builtins_atomics.cpp | 481 int64_t newVal = 0; in HandleWithBigInt64() local 482 BigInt::BigIntToInt64(thread, newValue, &newVal, &lossless); in HandleWithBigInt64() 486 arg[1] = newVal; in HandleWithBigInt64() 506 uint64_t newVal = 0; in HandleWithBigUint64() local 507 BigInt::BigIntToUint64(thread, newValue, &newVal, &lossless); in HandleWithBigUint64() 510 arg[1] = newVal; in HandleWithBigUint64()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | stub_builder-inl.h | 1477 GateRef newVal = Int32Or(Int32And(attr, Int32Not(mask)), in SetDictionaryOrderFieldInPropAttr() local 1479 return newVal; in SetDictionaryOrderFieldInPropAttr() 1538 GateRef newVal = Int32Or(Int32And(bitfield1, Int32Not(mask)), in SetIsAllTaggedProp() local 1540 Store(VariableType::INT32(), glue, hclass, IntPtr(JSHClass::BIT_FIELD1_OFFSET), newVal); in SetIsAllTaggedProp() 1581 GateRef newVal = Int32Or(Int32And(bitfield, Int32Not(mask)), in SetIsProtoTypeToHClass() local 1583 SetBitFieldToHClass(glue, hClass, newVal); in SetIsProtoTypeToHClass() 2020 GateRef newVal = Int32Or(Int32And(attr, Int32Not(mask)), in SetOffsetFieldInPropAttr() local 2022 return newVal; in SetOffsetFieldInPropAttr() 2031 GateRef newVal = Int32Or(Int32And(attr, Int32Not(mask)), in SetIsInlinePropsFieldInPropAttr() local 2033 return newVal; in SetIsInlinePropsFieldInPropAttr() [all …]
|
/arkcompiler/toolchain/tooling/agent/ |
D | debugger_impl.h | 163 …eScopeObject(const FrameHandler *frameHandler, std::string_view varName, Local<JSValueRef> newVal);
|
D | debugger_impl.cpp | 1348 std::string_view varName, Local<JSValueRef> newVal) in UpdateScopeObject() argument 1362 PropertyAttribute descriptor(newVal, true, true, true); in UpdateScopeObject()
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
D | debugger_api.cpp | 338 JSTaggedValue newVal = JSNApiHelper::ToJSTaggedValue(*value); in SetGlobalValue() local 341 result = SlowRuntimeStub::TryUpdateGlobalRecord(thread, key, newVal); in SetGlobalValue() 347 result = SlowRuntimeStub::StGlobalVar(thread, key, newVal); in SetGlobalValue()
|