Lines Matching full:from
63 static inline Local<T> ToLocal(ecmascript::JSHandle<ecmascript::JSTaggedValue> from) in ToLocal() argument
65 return Local<T>(from.GetAddress()); in ToLocal()
68 static inline ecmascript::JSTaggedValue ToJSTaggedValue(JSValueRef *from) in ToJSTaggedValue() argument
70 ASSERT(from != nullptr); in ToJSTaggedValue()
71 return *reinterpret_cast<ecmascript::JSTaggedValue *>(from); in ToJSTaggedValue()
74 static inline ecmascript::JSHandle<ecmascript::JSTaggedValue> ToJSHandle(Local<JSValueRef> from) in ToJSHandle() argument
76 ASSERT(!from.IsEmpty()); in ToJSHandle()
77 return ecmascript::JSHandle<ecmascript::JSTaggedValue>(reinterpret_cast<uintptr_t>(*from)); in ToJSHandle()
80 static inline ecmascript::JSHandle<ecmascript::JSTaggedValue> ToJSHandle(JSValueRef *from) in ToJSHandle() argument
82 ASSERT(from != nullptr); in ToJSHandle()
83 return ecmascript::JSHandle<ecmascript::JSTaggedValue>(reinterpret_cast<uintptr_t>(from)); in ToJSHandle()