/third_party/typescript/tests/baselines/reference/ |
D | commentOnBinaryOperator1.types | 2 var a = 'some' 4 >'some' // comment + 'text' : string 5 >'some' : "some" 11 var b = 'some' 13 >'some' /* comment */ + 'text' : string 14 >'some' : "some" 20 var c = 'some' 22 >'some' /* comment */ + /*comment1*/ 'text' : string 23 >'some' : "some"
|
D | commentOnBinaryOperator2.types | 2 var a = 'some' 4 >'some' // comment + 'text' : string 5 >'some' : "some" 11 var b = 'some' 13 >'some' /* comment */ + 'text' : string 14 >'some' : "some" 20 var c = 'some' 22 >'some' /* comment */ + /*comment1*/ 'text' : string 23 >'some' : "some"
|
D | decoratorsOnComputedProperties.types | 287 ["some" + "method"]() {} 288 >["some" + "method"] : () => void 289 >"some" + "method" : string 290 >"some" : "some" 295 …ameA]: any; @x [fieldNameB]: any; @x [fieldNameC]: any = null; ["some" + "method"]() {}} … 296 …ameA]: any; @x [fieldNameB]: any; @x [fieldNameC]: any = null; ["some" + "method"]() {}} … 380 ["some" + "method"]() {} 381 >["some" + "method"] : () => void 382 >"some" + "method" : string 383 >"some" : "some" [all …]
|
D | jsDeclarationsTypeReassignmentFromDeclaration2.symbols | 2 const items = require("./some-mod")(); 5 >"./some-mod" : Symbol("tests/cases/conformance/jsdoc/declarations/some-mod", Decl(some-mod.d.ts, 0… 13 === tests/cases/conformance/jsdoc/declarations/some-mod.d.ts === 15 >Item : Symbol(Item, Decl(some-mod.d.ts, 0, 0)) 18 >x : Symbol(Item.x, Decl(some-mod.d.ts, 0, 16)) 21 >getItems : Symbol(getItems, Decl(some-mod.d.ts, 2, 1)) 22 >Item : Symbol(Item, Decl(some-mod.d.ts, 0, 0)) 25 >getItems : Symbol(getItems, Decl(some-mod.d.ts, 2, 1))
|
D | unaryPlus.types | 15 enum E { some, thing }; 17 >some : E.some 20 var c = +E.some; 22 >+E.some : number 23 >E.some : E.some 25 >some : E.some
|
D | typeGuardsAsAssertions.types | 13 export interface Some<a> { readonly some: a; } 14 >some : a 26 return 'some' in value; 27 >'some' in value : boolean 28 >'some' : "some" 32 function someFrom<a>(some: a) { 33 >someFrom : <a>(some: a) => { some: a; } 34 >some : a 36 return { some }; 37 >{ some } : { some: a; } [all …]
|
D | unaryPlus.symbols | 9 enum E { some, thing }; 11 >some : Symbol(E.some, Decl(unaryPlus.ts, 3, 8)) 14 var c = +E.some; 16 >E.some : Symbol(E.some, Decl(unaryPlus.ts, 3, 8)) 18 >some : Symbol(E.some, Decl(unaryPlus.ts, 3, 8))
|
D | jsDeclarationsTypeReassignmentFromDeclaration.symbols | 1 === /some-mod.d.ts === 3 >Item : Symbol(Item, Decl(some-mod.d.ts, 0, 0)) 6 >x : Symbol(Item.x, Decl(some-mod.d.ts, 0, 16)) 9 >items : Symbol(items, Decl(some-mod.d.ts, 3, 13)) 10 >Item : Symbol(Item, Decl(some-mod.d.ts, 0, 0)) 13 >items : Symbol(items, Decl(some-mod.d.ts, 3, 13)) 16 /** @type {typeof import("/some-mod")} */
|
D | controlFlowArrayErrors.errors.txt | 1 …Errors.ts(4,9): error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its… 3 …rrors.ts(11,9): error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its… 5 …rrors.ts(19,9): error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its… 11 …rors.ts(60,11): error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its… 19 let x = []; // Implicit any[] error in some locations 21 !!! error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its type cannot … 30 let x; // Implicit any[] error in some locations 32 !!! error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its type cannot … 42 let x = []; // Implicit any[] error in some locations 44 !!! error TS7034: Variable 'x' implicitly has type 'any[]' in some locations where its type cannot … [all …]
|
D | crashInGetTextOfComputedPropertyName.types | 12 const itemId = 'some-id' 13 >itemId : "some-id" 14 >'some-id' : "some-id" 23 >itemId : "some-id" 49 >itemId : "some-id" 58 >itemId : "some-id"
|
D | typeGuardsAsAssertions.js | 9 export interface Some<a> { readonly some: a; } 17 function someFrom<a>(some: a) { 18 return { some }; 26 result = someFrom(isSome(result) ? result.some : makeSome()); 140 function someFrom(some) { argument 141 return { some: some }; 148 result = someFrom(isSome(result) ? result.some : makeSome());
|
D | mappedTypePartialNonHomomorphicBaseConstraint.types | 11 return { base: ["some base error"] }; 12 >{ base: ["some base error"] } : { base: string[]; } 14 >["some base error"] : string[] 15 >"some base error" : "some base error"
|
D | mixinPrivateAndProtected.errors.txt | 4 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 6 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 8 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 10 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 12 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 14 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 16 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 18 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 20 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. 79 …s reduced to 'never' because property 'pvt' exists in multiple constituents and is private in some. [all …]
|
D | privateNamesAndFields.types | 29 this.#foo = "some string"; 30 >this.#foo = "some string" : "some string" 33 >"some string" : "some string"
|
/third_party/rust/crates/clap/clap_complete/tests/snapshots/ |
D | special_commands.elvish | 21 cand -c 'some config file' 22 cand -C 'some config file' 23 cand --config 'some config file' 24 cand --conf 'some config file' 31 cand some-cmd-with-hyphens 'some-cmd-with-hyphens' 32 cand some-hidden-cmd 'some-hidden-cmd' 49 &'my-app;some-cmd-with-hyphens'= { 55 &'my-app;some-hidden-cmd'= { 64 cand some-cmd-with-hyphens 'some-cmd-with-hyphens' 65 cand some-hidden-cmd 'some-hidden-cmd' [all …]
|
D | special_commands.fish | 1 complete -c my-app -n "__fish_use_subcommand" -s c -s C -l config -l conf -d 'some config file' 6 complete -c my-app -n "__fish_use_subcommand" -f -a "some-cmd-with-hyphens" 7 complete -c my-app -n "__fish_use_subcommand" -f -a "some-hidden-cmd" 15 complete -c my-app -n "__fish_seen_subcommand_from some-cmd-with-hyphens" -s h -l help -d 'Print he… 16 complete -c my-app -n "__fish_seen_subcommand_from some-cmd-with-hyphens" -s V -l version -d 'Print… 17 complete -c my-app -n "__fish_seen_subcommand_from some-hidden-cmd" -s h -l help -d 'Print help' 18 complete -c my-app -n "__fish_seen_subcommand_from some-hidden-cmd" -s V -l version -d 'Print versi… 19 …ome_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand… 20 …ome_cmd; and not __fish_seen_subcommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand… 21 …ommand_from some-cmd-with-hyphens; and not __fish_seen_subcommand_from some-hidden-cmd; and not __… [all …]
|
D | special_commands.zsh | 18 '*-c[some config file]' \ 19 '*-C[some config file]' \ 20 '*--config[some config file]' \ 21 '*--conf[some config file]' \ 26 '::file -- some input file:_files' \ 56 (some-cmd-with-hyphens) 64 (some-hidden-cmd) 92 (some-cmd-with-hyphens) 96 (some-hidden-cmd) 118 'some-cmd-with-hyphens:' \ [all …]
|
/third_party/jerryscript/tests/jerry/ |
D | array-prototype-some.js | 23 assert(array.some(f) === false); 34 assert(arr1.some(g) === false); 37 assert(arr2.some(g) === true); 40 var obj = { some : Array.prototype.some }; property 44 obj.some(f); 52 var obj = { some : Array.prototype.some, length : 1}; property 56 obj.some(f);
|
/third_party/libabigail/tests/data/test-abidiff/ |
D | test-PR18791-report0.txt | 12 60 functions with some indirect sub-type change: 14 [C] 'method bool sigc::connection::block(bool)' has some indirect sub-type changes: 45 [C] 'method bool sigc::connection::blocked()' has some indirect sub-type changes: 50 …[C] 'method sigc::connection::connection(const sigc::connection&)' has some indirect sub-type chan… 57 [C] 'method sigc::connection::connection()' has some indirect sub-type changes: 61 [C] 'method sigc::connection::connection(sigc::slot_base&)' has some indirect sub-type changes: 67 [C] 'method void sigc::connection::disconnect()' has some indirect sub-type changes: 71 [C] 'method bool sigc::connection::empty()' has some indirect sub-type changes: 76 [C] 'method bool sigc::connection::operator bool()' has some indirect sub-type changes: 80 …[C] 'method sigc::connection& sigc::connection::operator=(const sigc::connection&)' has some indir… [all …]
|
/third_party/libabigail/tests/data/test-diff-dwarf/ |
D | test30-vtable-changes-report-0.txt | 9 4 functions with some indirect sub-type change: 11 [C] 'method virtual void S::fn0()' has some indirect sub-type changes: 18 'method virtual S::~S(int)' has some sub-type changes: 21 'method virtual S::~S(int)' has some sub-type changes: 24 'method virtual S::~S(int)' has some sub-type changes: 27 'method virtual void S::fn0()' has some sub-type changes: 30 'method virtual void S::fn1()' has some sub-type changes: 36 [C] 'method virtual void S::fn1()' has some indirect sub-type changes: 42 [C] 'method virtual S::~S(int)' has some indirect sub-type changes: 46 [C] 'method virtual S::~S(int)' has some indirect sub-type changes:
|
D | test41-PR20476-hidden-report-0.txt | 4 3 functions with some indirect sub-type change: 6 [C] 'method virtual Interface::~Interface(int)' has some indirect sub-type changes: 13 'method virtual Interface::~Interface(int)' has some sub-type changes: 16 'method virtual Interface::~Interface(int)' has some sub-type changes: 19 'method virtual Interface::~Interface(int)' has some sub-type changes: 22 'method virtual void Interface::method1()' has some sub-type changes: 25 'method virtual void Interface::method3()' has some sub-type changes: 31 [C] 'method virtual Interface::~Interface(int)' has some indirect sub-type changes: 35 [C] 'function Interface* make_interface()' has some indirect sub-type changes:
|
D | test29-vtable-changes-report-0.txt | 9 3 functions with some indirect sub-type change: 11 [C] 'method virtual void S::fn0()' has some indirect sub-type changes: 18 'method virtual S::~S(int)' has some sub-type changes: 21 'method virtual S::~S(int)' has some sub-type changes: 24 'method virtual S::~S(int)' has some sub-type changes: 27 'method virtual void S::fn0()' has some sub-type changes: 31 [C] 'method virtual S::~S(int)' has some indirect sub-type changes: 35 [C] 'method virtual S::~S(int)' has some indirect sub-type changes:
|
D | PR25058-liblttng-ctl-report-1.txt | 86 50 functions with some indirect sub-type change: 88 [C] 'function void lttng_action_destroy(lttng_action*)' has some indirect sub-type changes: 117 …[C] 'function lttng_action_type lttng_action_get_type(lttng_action*)' has some indirect sub-type c… 121 [C] 'function lttng_action* lttng_action_notify_create()' has some indirect sub-type changes: 125 …ntext(lttng_handle*, lttng_event_context*, const char*, const char*)' has some indirect sub-type c… 136 …_buffer_usage_get_channel_name(const lttng_condition*, const char**)' has some indirect sub-type c… 183 …er_usage_get_domain_type(const lttng_condition*, lttng_domain_type*)' has some indirect sub-type c… 188 …_buffer_usage_get_session_name(const lttng_condition*, const char**)' has some indirect sub-type c… 193 …dition_buffer_usage_get_threshold(const lttng_condition*, uint64_t*)' has some indirect sub-type c… 198 …on_buffer_usage_get_threshold_ratio(const lttng_condition*, double*)' has some indirect sub-type c… [all …]
|
D | test31-vtable-changes-report-0.txt | 9 3 functions with some indirect sub-type change: 11 [C] 'method virtual void S::fn1()' has some indirect sub-type changes: 20 'method virtual S::~S(int)' has some sub-type changes: 23 'method virtual S::~S(int)' has some sub-type changes: 26 'method virtual S::~S(int)' has some sub-type changes: 29 'method virtual void S::fn1()' has some sub-type changes: 35 [C] 'method virtual S::~S(int)' has some indirect sub-type changes: 39 [C] 'method virtual S::~S(int)' has some indirect sub-type changes:
|
/third_party/node/deps/npm/node_modules/infer-owner/ |
D | README.md | 10 inferOwner('/some/cache/folder/file').then(owner => { 12 // the /some/cache/folder/file, based on ownership 13 // of /some/cache/folder, /some/cache, /some, or /, 18 const owner = inferOwner.sync('/some/cache/folder/file')
|