/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | Errors.cpp | 63 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 …]
|
D | GPUBuffer.cpp | 51 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/node/deps/undici/src/types/ |
D | dispatcher.d.ts | 8 import Errors from './errors' 42 …on(eventName: 'disconnect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.… 43 …onError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 48 …connect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 49 …onError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 54 …connect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 55 …onError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 60 …connect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 61 …onError', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… 65 …connect', callback: (origin: URL, targets: readonly Dispatcher[], error: Errors.UndiciError) => vo… [all …]
|
D | mock-errors.d.ts | 1 import Errors from './errors' 7 export class MockNotMatchedError extends Errors.UndiciError {
|
/third_party/typescript/tests/baselines/reference/config/tsconfigParsingWatchOptions/ |
D | different options with json api.js | 11 Result: Errors:: 23 Result: Errors:: 35 Result: Errors:: 47 Result: Errors:: 63 Result: Errors:: 79 Result: Errors:: 93 Result: Errors:: 108 Result: Errors::
|
D | different options with jsonSourceFile api.js | 10 Result: Errors:: 21 Result: Errors:: 32 Result: Errors:: 43 Result: Errors:: 58 Result: Errors:: 73 Result: Errors:: 86 Result: Errors:: 103 Result: Errors::
|
D | when extending config file without watchOptions with jsonSourceFile api.js | 11 Result: Errors:: 18 Result: Errors::
|
D | when extending config file with watchOptions with json api.js | 13 Result: Errors:: 24 Result: Errors::
|
D | watch options extending passed in watch options with json api.js | 11 Result: Errors:: 18 Result: Errors::
|
/third_party/typescript/tests/baselines/reference/ |
D | undefinedAssignableToGenericMappedIntersection.types | 2 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>
|
D | mappedTypePartialNonHomomorphicBaseConstraint.symbols | 2 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))
|
D | undefinedAssignableToGenericMappedIntersection.symbols | 2 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))
|
D | mappedTypePartialNonHomomorphicBaseConstraint.types | 2 export type Errors<D> = { readonly [K in keyof D | "base"]?: string[] }; 3 >Errors : Errors<D> 8 getErrors(): Errors<D> { 9 >getErrors : () => Errors<D>
|
D | variableDeclaratorResolvedDuringContextualTyping.js | 85 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));
|
D | undefinedAssignableToGenericMappedIntersection.errors.txt | 1 …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]'.
|
D | variableDeclaratorResolvedDuringContextualTyping.types | 219 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
|
D | callSignatureAssignabilityInInheritance3.js | 5 module Errors { 134 var Errors; variable 135 (function (Errors) { argument 162 })(Errors || (Errors = {}));
|
D | constructSignatureAssignabilityInInheritance3.js | 5 module Errors { 132 var Errors; variable 133 (function (Errors) { argument 160 })(Errors || (Errors = {}));
|
/third_party/vk-gl-cts/external/openglcts/modules/gl/ |
D | gl4cGetTextureSubImageTests.cpp | 48 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 …]
|
/third_party/rust/crates/libc/ci/ |
D | style.rs | 48 let mut errors = Errors { errs: false }; in main() 58 fn walk(path: &Path, err: &mut Errors) { in walk() argument 82 struct Errors { struct 98 fn check_style(file: &str, path: &Path, err: &mut Errors) { in check_style() argument 202 impl Errors { implementation
|
/third_party/rust/crates/cxx/syntax/ |
D | report.rs | 5 pub struct Errors { struct 9 impl Errors { implementation 11 Errors { errors: Vec::new() } in new()
|
D | toposort.rs | 2 use crate::syntax::report::Errors; 10 pub fn sort<'a>(cx: &mut Errors, apis: &'a [Api], types: &Types<'a>) -> Vec<&'a Struct> { in sort() argument 22 cx: &mut Errors, in visit() argument
|
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/ |
D | error_support_test.cc | 15 EXPECT_TRUE(errors.Errors().empty()); in TEST() 42 std::string out(errors.Errors().begin(), errors.Errors().end()); in TEST()
|
/third_party/rust/crates/cxx/gen/src/ |
D | check.rs | 2 use crate::syntax::report::Errors; 9 pub(super) fn precheck(cx: &mut Errors, apis: &[Api], opt: &Opt) { in precheck() argument 15 fn check_dot_includes(cx: &mut Errors, apis: &[Api]) { in check_dot_includes() argument
|
/third_party/skia/infra/bots/task_drivers/perf_puppeteer_render_skps/ |
D | perf_puppeteer_render_skps_test.go | 47 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)
|