Home
last modified time | relevance | path

Searched refs:error (Results 1 – 25 of 84) sorted by relevance

1234

/ark/js_runtime/ecmascript/tooling/base/
Dpt_params.cpp22 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 …]
Dpt_types.cpp362 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/
Dthread.cpp40 #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/
Dbuiltins_errors_test.cpp142 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/
Dbabel-preprocessor.js24 } catch (error) {
26 stderr: `${error.name}: ${error.message}\n`,
28 error field
Dharness.patch183 + 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…
Deshost.patch85 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/
Dtest_case.rb123 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/
Dllvm_codegen.cpp256 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/
Dlog.ts31 console.error(tag + ": " + args);
33 console.error(args);
/ark/js_runtime/ecmascript/
Decma_exceptions.cpp24 void SetException(JSThread *thread, JSObject *error) in SetException() argument
27 thread->SetException(JSTaggedValue(error)); in SetException()
Decma_macros.h218 #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/
Dverifier.debug.config10 error-in-exception-handler
18 error {
/ark/runtime_core/verification/debug/handlers/
Dconfig_handler_method_options.cpp68 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/
Dmath-67.pa29 jnez error
32 error:
/ark/js_runtime/ecmascript/tooling/
Ddispatcher.cpp95 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/
Dglobal_regs.h22 #error "Unsupported target arch"
/ark/runtime_core/runtime/arch/arm/
Dmemory.h27 #error "Unsupported target"
/ark/js_runtime/ecmascript/napi/test/
Djsnapi_tests.cpp585 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/
Dmemory_helpers.h28 #error "Unsupported target"
/ark/js_runtime/test/moduletest/globalrecord/
Dglobalrecord.js35 } catch (error) {
/ark/runtime_core/runtime/interpreter/
Dinterpreter.cpp23 #error "arch/global_reg.h must not be included as it can broke ABI"
/ark/runtime_core/tests/verifier-tests/
Dbug_2084.pa32 # 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/
Dlibrary_loader.h22 #error "Unsupported platform"
/ark/runtime_core/verification/verifier/
Dverifier.config12 error-in-exception-handler

1234