Home
last modified time | relevance | path

Searched refs:CompileError (Results 1 – 25 of 31) sorted by relevance

12

/third_party/python/Lib/distutils/command/
Dconfig.py179 from distutils.ccompiler import CompileError
184 except CompileError:
222 from distutils.ccompiler import CompileError
227 except CompileError:
240 from distutils.ccompiler import CompileError, LinkError
246 except (CompileError, LinkError):
259 from distutils.ccompiler import CompileError, LinkError
266 except (CompileError, LinkError, DistutilsExecError):
Dbuild_ext.py480 except (CCompilerError, DistutilsError, CompileError) as e:
/third_party/node/test/fixtures/wpt/wasm/webapi/
Dempty-body.any.js12 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly[method](argument));
17 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly[method](argument));
Dinvalid-code.any.js13 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly[method](response));
19 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly[method](response));
/third_party/node/test/parallel/
Dtest-vm-codegen.js41 const CompileError = runInContext('WebAssembly.CompileError', ctx); constant
44 }, CompileError);
/third_party/node/test/fixtures/wpt/wasm/jsapi/module/
Dconstructor.any.js48 assert_throws_js(WebAssembly.CompileError, () => new WebAssembly.Module(buffer));
53 assert_throws_js(WebAssembly.CompileError, () => new WebAssembly.Module(buffer));
/third_party/python/Lib/distutils/
D_msvccompiler.py21 CompileError, LibError, LinkError
313 raise CompileError("Don't know how to compile {}".format(p))
361 raise CompileError(msg)
386 raise CompileError(msg)
390 raise CompileError("Don't know how to compile {} to {}"
403 raise CompileError(msg)
Dbcppcompiler.py18 CompileError, LibError, LinkError, UnknownFileError
115 raise CompileError(msg)
139 raise CompileError(msg)
391 raise CompileError(msg)
Dmsvccompiler.py14 CompileError, LibError, LinkError
328 raise CompileError ("Don't know how to compile %s" % src_name)
383 raise CompileError(msg)
410 raise CompileError(msg)
414 raise CompileError("Don't know how to compile %s to %s"
423 raise CompileError(msg)
Dcygwinccompiler.py57 CompileError, UnknownFileError)
164 raise CompileError(msg)
170 raise CompileError(msg)
Dmsvc9compiler.py21 CompileError, LibError, LinkError
440 raise CompileError ("Don't know how to compile %s" % src_name)
495 raise CompileError(msg)
522 raise CompileError(msg)
526 raise CompileError("Don't know how to compile %s to %s"
535 raise CompileError(msg)
Dunixccompiler.py23 DistutilsExecError, CompileError, LibError, LinkError
109 raise CompileError(msg)
120 raise CompileError(msg)
Derrors.py85 class CompileError (CCompilerError): class
Dccompiler.py793 except CompileError:
/third_party/node/test/fixtures/wpt/wasm/jsapi/constructor/
Dcompile.any.js63 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly.compile(buffer));
68 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly.compile(buffer));
Dinstantiate.any.js138 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly.instantiate(buffer));
143 return promise_rejects_js(t, WebAssembly.CompileError, WebAssembly.instantiate(buffer));
/third_party/node/deps/v8/src/wasm/
Dwasm-result.h128 PRINTF_FORMAT(2, 3) void CompileError(const char* fmt, ...);
134 CompileError("%s @+%u", error.message().c_str(), error.offset()); in CompileFailed()
Dwasm-result.cc88 void ErrorThrower::CompileError(const char* format, ...) { in CompileError() function in v8::internal::wasm::ErrorThrower
Dwasm-js.cc226 thrower->CompileError("BufferSource argument is empty"); in GET_FIRST_ARGUMENT_AS()
516 thrower.CompileError("Wasm code generation disallowed by embedder"); in WebAssemblyCompile()
593 thrower.CompileError("Wasm code generation disallowed by embedder"); in WebAssemblyCompileStreaming()
702 thrower.CompileError("Wasm code generation disallowed by embedder"); in WebAssemblyModule()
883 thrower.CompileError("Wasm code generation disallowed by embedder"); in WebAssemblyInstantiateStreaming()
1010 thrower.CompileError("Wasm code generation disallowed by embedder"); in WebAssemblyInstantiate()
/third_party/node/test/fixtures/wpt/wasm/jsapi/
Derror-interfaces-no-symbol-tostringtag.js4 assert_not_own_property(WebAssembly.CompileError.prototype, Symbol.toStringTag);
/third_party/PyYAML/
Dsetup.py77 from distutils.errors import DistutilsError, CompileError, LinkError, DistutilsPlatformError
236 except (CompileError, LinkError):
/third_party/python/Lib/distutils/tests/
Dtest_build_ext.py13 CompileError, DistutilsPlatformError, DistutilsSetupError,
175 self.assertRaises((UnknownFileError, CompileError),
534 except CompileError:
/third_party/node/lib/internal/
Dfreeze_intrinsics.js228 WebAssembly.CompileError.prototype,
/third_party/node/doc/api/
Dvm.md271 module will throw a `WebAssembly.CompileError`. **Default:** `true`.
1065 module will throw a `WebAssembly.CompileError`. **Default:** `true`.
1333 module will throw a `WebAssembly.CompileError`. **Default:** `true`.
/third_party/typescript/lib/
Dlib.webworker.d.ts5839 interface CompileError extends Error { interface
5842 var CompileError: { variable
5843 prototype: CompileError;
5844 new(message?: string): CompileError;
5845 (message?: string): CompileError;

12