/ark/js_runtime/ecmascript/tooling/base/ |
D | pt_params.cpp | 22 std::string error; in Create() local 30 error += "Unknown 'maxScriptsCacheSize';"; in Create() 33 if (!error.empty()) { in Create() 34 LOG(ERROR, DEBUGGER) << "EnableParams::Create " << error; in Create() 44 std::string error; in Create() local 52 error += "Unknown 'callFrameId';"; in Create() 59 error += "Unknown 'expression';"; in Create() 66 error += "Unknown 'objectGroup';"; in Create() 73 error += "Unknown 'includeCommandLineAPI';"; in Create() 80 error += "Unknown 'silent';"; in Create() [all …]
|
D | pt_types.cpp | 362 std::string error; in Create() local 372 error += "'type' is invalid;"; in Create() 375 error += "Unknown 'type';"; in Create() 384 error += "'subtype' is invalid;"; in Create() 387 error += "Unknown 'subtype';"; in Create() 395 error += "Unknown 'className';"; in Create() 403 error += "Unknown 'unserializableValue';"; in Create() 411 error += "Unknown 'description';"; in Create() 419 error += "Unknown 'objectId';"; in Create() 422 if (!error.empty()) { in Create() [all …]
|
/ark/runtime_core/libpandabase/os/unix/ |
D | thread.cpp | 40 #error "Unsupported platform" in GetCurrentThreadId() 49 #error "Unsupported platform" in SetPriority() 58 #error "Unsupported platform" in GetPriority() 70 #error "Unsupported platform" in SetThreadName() 79 #error "Unsupported platform" in GetNativeHandle() 88 #error "Unsupported platform" in Yield() 97 #error "Unsupported platform" in NativeSleep() 106 #error "Unsupported platform" in ThreadDetach() 115 #error "Unsupported platform" in ThreadExit() 124 #error "Unsupported platform" in ThreadJoin()
|
/ark/js_runtime/ecmascript/builtins/tests/ |
D | builtins_errors_test.cpp | 142 JSHandle<JSFunction> error(env->GetErrorFunction()); in HWTEST_F_L0() local 144 …auto ecmaRuntimeCallInfo = TestHelper::CreateEcmaRuntimeCallInfo(thread, JSTaggedValue(*error), 4); in HWTEST_F_L0() 145 ecmaRuntimeCallInfo->SetFunction(error.GetTaggedValue()); in HWTEST_F_L0() 146 ecmaRuntimeCallInfo->SetThis(JSTaggedValue(*error)); in HWTEST_F_L0() 180 JSHandle<JSFunction> error(env->GetErrorFunction()); in HWTEST_F_L0() local 183 …auto ecmaRuntimeCallInfo = TestHelper::CreateEcmaRuntimeCallInfo(thread, JSTaggedValue(*error), 6); in HWTEST_F_L0() 184 ecmaRuntimeCallInfo->SetFunction(error.GetTaggedValue()); in HWTEST_F_L0() 185 ecmaRuntimeCallInfo->SetThis(JSTaggedValue(*error)); in HWTEST_F_L0() 221 …JSHandle<JSObject> error = factory->NewJSObjectByConstructor(JSHandle<JSFunction>(errorObject), er… in HWTEST_F_L0() local 225 ecmaRuntimeCallInfo->SetThis(JSTaggedValue(*error)); in HWTEST_F_L0() [all …]
|
/ark/ts2abc/test262/ |
D | babel-preprocessor.js | 24 } catch (error) { 26 stderr: `${error.name}: ${error.message}\n`, 28 error field
|
D | harness.patch | 183 + console.error(err); 216 - message: `Expected no error, got ${result.error.name}: ${result.error.message}`, 217 + message: `Expected no error, but got ${result.error.name}: \n ${result.stderr}`, 226 + message: `Expected no error, but got : \n ${result.stderr}`, 234 … message: `Expected test to throw error of type ${test.attrs.negative.type}, got ${result.error.n… 235 + message: `Expected test to throw error of type ${test.attrs.negative.type}, but got ${re…
|
D | eshost.patch | 85 result.error = this.parseError(result.stderr); 142 + // Syntax errors don't have nice error messages... 143 + let error = null; 147 + error = { 156 + error.stack.push(stack); 157 + error.message = stack.message; 161 + if (error) { 162 + return error;
|
/ark/runtime_core/tests/cts-generator/generator/ |
D | test_case.rb | 123 LOG.error 'Cannot substitute values to template' 124 LOG.error "Template: #{template}" 125 LOG.error "Values: #{@current_case[Generator::CASE_VALUES]}" 126 LOG.error "Instruction: #{@instruction}" 127 LOG.error "Command: #{@command}" 128 LOG.error e
|
/ark/js_runtime/ecmascript/compiler/ |
D | llvm_codegen.cpp | 256 char *error = nullptr; in ~LLVMAssembler() local 257 LLVMRemoveModule(engine_, module_, &module_, &error); in ~LLVMAssembler() 258 if (error != nullptr) { in ~LLVMAssembler() 259 LLVMDisposeMessage(error); in ~LLVMAssembler() 271 char *error = nullptr; in Run() local 277 LLVMPrintModuleToFile(module_, "stub.ll", &error); in Run() 278 LLVMVerifyModule(module_, LLVMAbortProcessAction, &error); in Run() 279 LLVMDisposeMessage(error); in Run() 285 LLVMPrintModuleToFile(module_, "opt_stub.ll", &error); in Run()
|
/ark/ts2abc/ts2panda/src/ |
D | log.ts | 31 console.error(tag + ": " + args); 33 console.error(args);
|
/ark/js_runtime/ecmascript/ |
D | ecma_exceptions.cpp | 24 void SetException(JSThread *thread, JSObject *error) in SetException() argument 27 thread->SetException(JSTaggedValue(error)); in SetException()
|
D | ecma_macros.h | 218 #define THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, value) \ argument 221 (thread)->SetException(error); \ 239 #define THROW_NEW_ERROR_AND_RETURN_EXCEPTION(thread, error) \ argument 240 THROW_NEW_ERROR_AND_RETURN_VALUE(thread, error, JSTaggedValue::Exception()); 307 #define THROW_NEW_ERROR_AND_RETURN(thread, error) \ argument 310 (thread)->SetException(error); \
|
/ark/runtime_core/tests/cts-generator/ |
D | verifier.debug.config | 10 error-in-exception-handler 18 error {
|
/ark/runtime_core/verification/debug/handlers/ |
D | config_handler_method_options.cpp | 68 bool error = s.name == "error"; in ProcessSectionMsg() local 72 error ? MethodOption::MsgClass::ERROR in ProcessSectionMsg() 175 bool error = s.name == "error"; in MethodOptionsProcessor() local 188 if (warning || error || hidden) { in MethodOptionsProcessor()
|
/ark/runtime_core/tests/cts-assembly/ |
D | math-67.pa | 29 jnez error 32 error:
|
/ark/js_runtime/ecmascript/tooling/ |
D | dispatcher.cpp | 95 DispatchResponse DispatchResponse::Create(std::optional<std::string> error) in Create() argument 98 if (error.has_value()) { in Create() 100 response.errorMsg_ = error.value(); in Create()
|
/ark/runtime_core/runtime/interpreter/arch/ |
D | global_regs.h | 22 #error "Unsupported target arch"
|
/ark/runtime_core/runtime/arch/arm/ |
D | memory.h | 27 #error "Unsupported target"
|
/ark/js_runtime/ecmascript/napi/test/ |
D | jsnapi_tests.cpp | 585 Local<JSValueRef> error = Exception::Error(vm_, message); in HWTEST_F_L0() local 586 ASSERT_TRUE(error->IsError()); in HWTEST_F_L0() 588 JSNApi::ThrowException(vm_, error); in HWTEST_F_L0() 596 Local<JSValueRef> error = Exception::RangeError(vm_, message); in HWTEST_F_L0() local 597 ASSERT_TRUE(error->IsError()); in HWTEST_F_L0() 599 JSNApi::ThrowException(vm_, error); in HWTEST_F_L0() 607 Local<JSValueRef> error = Exception::TypeError(vm_, message); in HWTEST_F_L0() local 608 ASSERT_TRUE(error->IsError()); in HWTEST_F_L0() 610 JSNApi::ThrowException(vm_, error); in HWTEST_F_L0() 618 Local<JSValueRef> error = Exception::ReferenceError(vm_, message); in HWTEST_F_L0() local [all …]
|
/ark/runtime_core/runtime/arch/ |
D | memory_helpers.h | 28 #error "Unsupported target"
|
/ark/js_runtime/test/moduletest/globalrecord/ |
D | globalrecord.js | 35 } catch (error) {
|
/ark/runtime_core/runtime/interpreter/ |
D | interpreter.cpp | 23 #error "arch/global_reg.h must not be included as it can broke ABI"
|
/ark/runtime_core/tests/verifier-tests/ |
D | bug_2084.pa | 32 # Check that verifier reports error if source registers are not initialized 68 ldobj.64 v0, R.fu64 # verifier error expected, because the register is not initialized
|
/ark/runtime_core/libpandabase/os/ |
D | library_loader.h | 22 #error "Unsupported platform"
|
/ark/runtime_core/verification/verifier/ |
D | verifier.config | 12 error-in-exception-handler
|