Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/test/fuzztest/booleanrefnewbool_fuzzer/
Dbooleanrefnewbool_fuzzer.cpp36 [[maybe_unused]] Local<BooleanRef> ref = BooleanRef::New(vm, input); in BooleanRefNewBoolFuzzTest()
/arkcompiler/ets_runtime/
Dlibark_jsruntime.map16 panda::BooleanRef::*;
/arkcompiler/ets_runtime/ecmascript/napi/
Djsnapi.cpp1181 Local<BooleanRef> BooleanRef::New(const EcmaVM *vm, bool input) in New()
1186 return JSNApiHelper::ToLocal<BooleanRef>(boolean); in New()
1189 bool BooleanRef::Value() in Value()
2418 Local<JSValueRef> jsValue = BooleanRef::New(vm, result); in IsGlobal()
2429 Local<JSValueRef> jsValue = BooleanRef::New(vm, result); in IsIgnoreCase()
2440 Local<JSValueRef> jsValue = BooleanRef::New(vm, result); in IsMultiline()
2451 Local<JSValueRef> jsValue = BooleanRef::New(vm, result); in IsDotAll()
2462 Local<JSValueRef> jsValue = BooleanRef::New(vm, result); in IsUtf16()
2473 Local<JSValueRef> jsValue = BooleanRef::New(vm, result); in IsStick()
2971 Local<BooleanRef> JSValueRef::ToBoolean(const EcmaVM *vm) in ToBoolean()
[all …]
/arkcompiler/ets_runtime/ecmascript/napi/include/
Djsnapi.h50 class BooleanRef; variable
401 Local<BooleanRef> ToBoolean(const EcmaVM *vm);
541 class PUBLIC_API BooleanRef : public PrimitiveRef {
543 static Local<BooleanRef> New(const EcmaVM *vm, bool input);
/arkcompiler/toolchain/tooling/agent/
Druntime_impl.cpp554 jsValueRef = BooleanRef::New(vm_, genFuncRef->IsGenerator()); in GetGeneratorFunctionValue()
881 Local<JSValueRef> isRevoked = BooleanRef::New(vm_, proxyRef->IsRevoked()); in GetProxyValue()
/arkcompiler/ets_runtime/ecmascript/module/
Djs_module_source_text.cpp327 arguments.emplace_back(BooleanRef::New(vm, true)); in MakeAppArgs()
334 arguments.emplace_back(BooleanRef::New(vm, false)); in MakeInternalArgs()
/arkcompiler/ets_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp1378 Local<BooleanRef> res = BooleanRef::New(vm_, input); in HWTEST_F_L0()