• Home
  • Raw
  • Download

Lines Matching refs:JSValueRef

192     Local<JSValueRef> exception = DebuggerApi::GetAndClearException(vm_);  in NotifyPaused()
1180 runtime_->properties_[runtime_->curObjectId_++] = Global<JSValueRef>(vm_, localObj); in GetLocalScopeChain()
1182 Local<JSValueRef> thisVal = JSNApiHelper::ToLocal<JSValueRef>( in GetLocalScopeChain()
1223 runtime_->properties_[runtime_->curObjectId_++] = Global<JSValueRef>(vm_, moduleObj); in GetModuleScopeChain()
1233 const JSPandaFile *jsPandaFile, Local<JSValueRef> &thisVal, Local<ObjectRef> &localObj) in GetLocalVariables()
1236 Local<JSValueRef> value = JSValueRef::Undefined(vm_); in GetLocalVariables()
1258 Local<JSValueRef> name = JSValueRef::Undefined(vm_); in GetLocalVariables()
1279 void DebuggerImpl::GetClosureVariables(const FrameHandler *frameHandler, Local<JSValueRef> &thisVal, in GetClosureVariables()
1300 Local<JSValueRef> value = JSNApiHelper::ToLocal<JSValueRef>( in GetClosureVariables()
1309 Local<JSValueRef> name = StringRef::NewFromUtf8(vm_, varName.c_str()); in GetClosureVariables()
1311 value = JSValueRef::Undefined(vm_); in GetClosureVariables()
1325 thisVal = JSValueRef::Undefined(vm_); in GetClosureVariables()
1343 runtime_->properties_[runtime_->curObjectId_++] = Global<JSValueRef>(vm_, globalObj); in GetGlobalScopeChain()
1348 std::string_view varName, Local<JSValueRef> newVal) in UpdateScopeObject()
1359 Local<JSValueRef> name = StringRef::NewFromUtf8(vm_, varName.data()); in UpdateScopeObject()
1402 Local<JSValueRef> ret = DebuggerExecutor::GetValue(vm_, frameHandler, name); in CmptEvaluateValue()
1409 Local<JSValueRef> value = ConvertToLocal(varValue); in CmptEvaluateValue()
1428 Local<JSValueRef> DebuggerImpl::ConvertToLocal(const std::string &varValue) in ConvertToLocal()
1430 Local<JSValueRef> taggedValue; in ConvertToLocal()
1432 taggedValue = JSValueRef::False(vm_); in ConvertToLocal()
1434 taggedValue = JSValueRef::True(vm_); in ConvertToLocal()
1436 taggedValue = JSValueRef::Undefined(vm_); in ConvertToLocal()