Home
last modified time | relevance | path

Searched refs:CreateErrorWithCode (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/test/unittest/common/
H A Djsi_interface_tdd_test.cpp1108 JSIValue errRef = JSI::CreateErrorWithCode(JSI_ERR_CODE_PERMISSION_DENIED, nullptr); in JSIInterfaceTest030()
1129 JSIValue errRef = JSI::CreateErrorWithCode(0, "this is error message"); in JSIInterfaceTest031()
1153 JSIValue errRef = JSI::CreateErrorWithCode(JSI_ERR_CODE_NOT_SUPPORTED, veryLongMessage); in JSIInterfaceTest032()
1174 JSIValue errResult = JSI::CreateErrorWithCode(JSI_ERR_CODE_PARAM_CHECK_FAILED, ""); in JSIInterfaceTest033()
1195 JSIValue errRef = JSI::CreateErrorWithCode(JSI_ERR_CODE_NOT_SUPPORTED, "error info", extraData); in JSIInterfaceTest034()
1220 JSIValue errRef = JSI::CreateErrorWithCode(JSI_ERR_CODE_NOT_SUPPORTED, errMsg, extraData); in JSIInterfaceTest035()
1250 …JSIValue errRef = JSI::CreateErrorWithCode(JSI_ERR_CODE_PARAM_CHECK_FAILED, errMsgContent, extraDa… in JSIInterfaceTest036()
1284 …JSIValue errRefToBeCheck = JSI::CreateErrorWithCode(JSI_ERR_CODE_NOT_SUPPORTED, notSupportedMsg, e… in JSIInterfaceTest037()
1321 …JSIValue errResult = JSI::CreateErrorWithCode(JSI_ERR_CODE_NOT_SUPPORTED, errorInfo, functionValue… in JSIInterfaceTest038()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/modules/
H A Drouter_module.cpp36 …return JSI::CreateErrorWithCode(JSI_ERR_CODE_PARAM_CHECK_FAILED, "params should only be one object… in Replace()
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/router/
H A Djs_page_state_machine.cpp189 jsRes = AS_JERRY_VALUE(JSI::CreateErrorWithCode(JSI_ERR_CODE_PARAM_CHECK_FAILED, in BindUri()
228 …jsRes = AS_JERRY_VALUE(JSI::CreateErrorWithCode(ERR_CODE_URL_NOTEXIST, "route target doesn't exist… in BindUri()
/ohos5.0/foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/jsi/
H A Djsi.h769 static JSIValue CreateErrorWithCode(uint32_t errCode,
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/native_engine/jsi/
H A Djsi.cpp1174 JSIValue JSI::CreateErrorWithCode(uint32_t errCode, in CreateErrorWithCode() function in OHOS::ACELite::JSI