Home
last modified time | relevance | path

Searched refs:Errors (Results 1 – 25 of 2317) sorted by relevance

12345678910>>...93

/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
DErrors.cpp63 Napi::Error Errors::HierarchyRequestError(Napi::Env env) { in HierarchyRequestError()
67 Napi::Error Errors::WrongDocumentError(Napi::Env env) { in WrongDocumentError()
71 Napi::Error Errors::InvalidCharacterError(Napi::Env env) { in InvalidCharacterError()
75 Napi::Error Errors::NoModificationAllowedError(Napi::Env env) { in NoModificationAllowedError()
79 Napi::Error Errors::NotFoundError(Napi::Env env) { in NotFoundError()
83 Napi::Error Errors::NotSupportedError(Napi::Env env) { in NotSupportedError()
87 Napi::Error Errors::InUseAttributeError(Napi::Env env) { in InUseAttributeError()
91 Napi::Error Errors::InvalidStateError(Napi::Env env) { in InvalidStateError()
95 Napi::Error Errors::SyntaxError(Napi::Env env) { in SyntaxError()
99 Napi::Error Errors::InvalidModificationError(Napi::Env env) { in InvalidModificationError()
[all …]
DGPUBuffer.cpp51 promise.Reject(Errors::OperationError(env)); in mapAsync()
57 promise.Reject(Errors::OperationError(env)); in mapAsync()
90 c->promise.Reject(Errors::OperationError(c->env)); in mapAsync()
94 c->promise.Reject(Errors::AbortError(c->env)); in mapAsync()
100 c->promise.Reject(Errors::UnknownError(c->env)); in mapAsync()
113 Errors::OperationError(env).ThrowAsJavaScriptException(); in getMappedRange()
123 Errors::OperationError(env).ThrowAsJavaScriptException(); in getMappedRange()
132 Errors::OperationError(env).ThrowAsJavaScriptException(); in getMappedRange()
/third_party/e2fsprogs/tests/m_error_behavior/
Dexpect2 Errors behavior: Continue
4 Errors behavior: Continue
6 Errors behavior: Panic
8 Errors behavior: Remount read-only
11 Errors behavior: Continue
13 Errors behavior: Panic
15 Errors behavior: Remount read-only
18 Errors behavior: Continue
20 Errors behavior: Panic
22 Errors behavior: Remount read-only
[all …]
Dscript36 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
40 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
44 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
48 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
53 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
59 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
64 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
69 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
75 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
81 $DUMPE2FS $TMPFILE 2>&1 | grep 'Errors behavior' >> $OUT
[all …]
/third_party/typescript/tests/baselines/reference/
DundefinedAssignableToGenericMappedIntersection.types2 type Errors<T> = { [P in keyof T]: string | undefined } & {all: string | undefined};
3 >Errors : Errors<T>
9 let obj!: Errors<T>
10 >obj : Errors<T>
17 >obj[x] : Errors<T>[keyof T]
18 >obj : Errors<T>
DmappedTypePartialNonHomomorphicBaseConstraint.symbols2 export type Errors<D> = { readonly [K in keyof D | "base"]?: string[] };
3 >Errors : Symbol(Errors, Decl(mappedTypePartialNonHomomorphicBaseConstraint.ts, 0, 0))
12 getErrors(): Errors<D> {
14 >Errors : Symbol(Errors, Decl(mappedTypePartialNonHomomorphicBaseConstraint.ts, 0, 0))
DundefinedAssignableToGenericMappedIntersection.symbols2 type Errors<T> = { [P in keyof T]: string | undefined } & {all: string | undefined};
3 >Errors : Symbol(Errors, Decl(undefinedAssignableToGenericMappedIntersection.ts, 0, 0))
13 let obj!: Errors<T>
15 >Errors : Symbol(Errors, Decl(undefinedAssignableToGenericMappedIntersection.ts, 0, 0))
DmappedTypePartialNonHomomorphicBaseConstraint.types2 export type Errors<D> = { readonly [K in keyof D | "base"]?: string[] };
3 >Errors : Errors<D>
8 getErrors(): Errors<D> {
9 >getErrors : () => Errors<D>
DvariableDeclaratorResolvedDuringContextualTyping.js85 module Errors {
123 return WinJS.Promise.wrapError(new Errors.ConnectionError(xhr));
132 var Errors; variable
133 (function (Errors) { argument
139 Errors.ConnectionError = ConnectionError;
140 })(Errors || (Errors = {}));
159 return WinJS.Promise.wrapError(new Errors.ConnectionError(xhr));
DundefinedAssignableToGenericMappedIntersection.errors.txt1 …ntersection.ts(5,5): error TS2322: Type 'undefined' is not assignable to type 'Errors<T>[keyof T]'.
5 type Errors<T> = { [P in keyof T]: string | undefined } & {all: string | undefined};
7 let obj!: Errors<T>
11 !!! error TS2322: Type 'undefined' is not assignable to type 'Errors<T>[keyof T]'.
DcallSignatureAssignabilityInInheritance3.js5 module Errors {
134 var Errors; variable
135 (function (Errors) { argument
162 })(Errors || (Errors = {}));
DconstructSignatureAssignabilityInInheritance3.js5 module Errors {
132 var Errors; variable
133 (function (Errors) { argument
160 })(Errors || (Errors = {}));
DvariableDeclaratorResolvedDuringContextualTyping.types219 module Errors {
220 >Errors : typeof Errors
270 …: XMLHttpRequest) => { return WinJS.Promise.wrapError(new Errors.ConnectionError(xh…
342 >(xhr: XMLHttpRequest) => { return WinJS.Promise.wrapError(new Errors.ConnectionErro…
345 return WinJS.Promise.wrapError(new Errors.ConnectionError(xhr));
346 >WinJS.Promise.wrapError(new Errors.ConnectionError(xhr)) : WinJS.Promise
352 >new Errors.ConnectionError(xhr) : Errors.ConnectionError
353 >Errors.ConnectionError : typeof Errors.ConnectionError
354 >Errors : typeof Errors
355 >ConnectionError : typeof Errors.ConnectionError
DmappedTypePartialNonHomomorphicBaseConstraint.js2 export type Errors<D> = { readonly [K in keyof D | "base"]?: string[] };
5 getErrors(): Errors<D> { field in Model
DundefinedAssignableToGenericMappedIntersection.js2 type Errors<T> = { [P in keyof T]: string | undefined } & {all: string | undefined};
4 let obj!: Errors<T>
DassignmentCompatWithCallSignatures4.js4 module Errors {
118 var Errors; variable
119 (function (Errors) { argument
203 })(Errors || (Errors = {}));
DassignmentCompatWithConstructSignatures4.js4 module Errors {
118 var Errors; variable
119 (function (Errors) { argument
203 })(Errors || (Errors = {}));
DsubtypingWithConstructSignatures3.js5 module Errors {
141 var Errors; variable
142 (function (Errors) { argument
212 })(Errors || (Errors = {}));
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cGetTextureSubImageTests.cpp48 addChild(new GetTextureSubImage::Errors(m_context)); in Tests()
68 gl4cts::GetTextureSubImage::Errors::Errors(deqp::Context& context) in Errors() function in gl4cts::GetTextureSubImage::Errors
85 gl4cts::GetTextureSubImage::Errors::~Errors(void) in ~Errors()
91 tcu::TestNode::IterateResult gl4cts::GetTextureSubImage::Errors::iterate(void) in iterate()
153 void gl4cts::GetTextureSubImage::Errors::prepare() in prepare()
254 bool gl4cts::GetTextureSubImage::Errors::testExistingTextureObjectError() in testExistingTextureObjectError()
312 bool gl4cts::GetTextureSubImage::Errors::testBufferOrMultisampledTargetError() in testBufferOrMultisampledTargetError()
347 bool gl4cts::GetTextureSubImage::Errors::testNegativeOffsetError() in testNegativeOffsetError()
401 bool gl4cts::GetTextureSubImage::Errors::testBoundsError() in testBoundsError()
463 bool gl4cts::GetTextureSubImage::Errors::testOneDimmensionalTextureErrors() in testOneDimmensionalTextureErrors()
[all …]
Dgl4cGetTextureSubImageTests.hpp105 class Errors : public deqp::TestCase class
108 Errors(deqp::Context& context);
109 ~Errors(void);
/third_party/typescript/tests/cases/compiler/
DmappedTypePartialNonHomomorphicBaseConstraint.ts1 export type Errors<D> = { readonly [K in keyof D | "base"]?: string[] }; alias
4 getErrors(): Errors<D> {
DundefinedAssignableToGenericMappedIntersection.ts2 type Errors<T> = { [P in keyof T]: string | undefined } & {all: string | undefined}; alias
4 let obj!: Errors<T>
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/
Dperf_puppeteer_render_skps_test.go47 require.Empty(t, res.Errors)
92 require.Empty(t, res.Errors)
125 require.Empty(t, res.Errors)
167 require.Empty(t, res.Errors)
211 require.Empty(t, res.Errors)
243 require.Empty(t, res.Errors)
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_canvas/
Dperf_puppeteer_canvas_test.go42 require.Empty(t, res.Errors)
82 require.Empty(t, res.Errors)
118 require.Empty(t, res.Errors)
151 require.Empty(t, res.Errors)
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_skottie_frames/
Dperf_puppeteer_skottie_frames_test.go42 require.Empty(t, res.Errors)
87 require.Empty(t, res.Errors)
129 require.Empty(t, res.Errors)
164 require.Empty(t, res.Errors)
264 require.Empty(t, res.Errors)

12345678910>>...93