Home
last modified time | relevance | path

Searched refs:elementRef (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DnonNullReferenceMatching.ts24 elementRef?: ElementRef;
35 …typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elementRef(ref…
36 AssertType(typeof this.props.thumbYProps!.elementRef === 'function' && this.props.thumbYProps!.elem…
37 AssertType(typeof this.props.thumbYProps!.elementRef === 'function', "boolean");
38 AssertType(typeof this.props.thumbYProps!.elementRef, "union");
39 AssertType(this.props.thumbYProps!.elementRef, "union");
45 AssertType(this.props.thumbYProps!.elementRef(ref), "void");
46 AssertType(this.props.thumbYProps!.elementRef, "ElementRef");
53 …typeof (this.props.thumbYProps!.elementRef) === 'function' && this.props.thumbYProps!.elementRef(r…
54 AssertType(typeof (this.props.thumbYProps!.elementRef) === 'function' && this.props.thumbYProps!.el…
[all …]
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp661 Local<JSValueRef> elementRef = setRef->GetValue(vm_, i); in GetSetValue() local
662 if (elementRef->IsHole()) { in GetSetValue()
664 } else if (elementRef->IsObject()) { in GetSetValue()
666 objRef->Set(vm_, StringRef::NewFromUtf8(vm_, "value"), elementRef); in GetSetValue()
670 ArrayRef::SetValueAt(vm_, jsValueRef, index++, elementRef); in GetSetValue()
688 Local<JSValueRef> elementRef = weakSetRef->GetValue(vm_, i); in GetWeakSetValue() local
689 if (elementRef->IsHole()) { in GetWeakSetValue()
691 } else if (elementRef->IsObject()) { in GetWeakSetValue()
693 objRef->Set(vm_, StringRef::NewFromUtf8(vm_, "value"), elementRef); in GetWeakSetValue()
697 ArrayRef::SetValueAt(vm_, jsValueRef, index++, elementRef); in GetWeakSetValue()