Home
last modified time | relevance | path

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

/ark/js_runtime/ecmascript/napi/include/
Djsnapi.h40 class BooleanRef; variable
271 Local<BooleanRef> ToBoolean(const EcmaVM *vm);
376 class PUBLIC_API BooleanRef : public PrimitiveRef {
378 static Local<BooleanRef> New(const EcmaVM *vm, bool input);
/ark/js_runtime/ecmascript/napi/
Djsnapi.cpp635 Local<BooleanRef> BooleanRef::New(const EcmaVM *vm, bool input) in New()
639 return JSNApiHelper::ToLocal<BooleanRef>(boolean); in New()
642 bool BooleanRef::Value() in Value()
1727 Local<BooleanRef> JSValueRef::ToBoolean(const EcmaVM *vm) in ToBoolean()
1732 return JSNApiHelper::ToLocal<BooleanRef>(booleanObj); in ToBoolean()