Home
last modified time | relevance | path

Searched refs:some (Results 1 – 25 of 5788) sorted by relevance

12345678910>>...232

/third_party/typescript/tests/baselines/reference/
DcommentOnBinaryOperator2.types2 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"
DcommentOnBinaryOperator1.types2 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"
DjsDeclarationsTypeReassignmentFromDeclaration2.symbols2 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))
DunaryPlus.types15 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
DdecoratorsOnComputedProperties.types287 ["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 …]
DunaryPlus.symbols9 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))
DjsDeclarationsTypeReassignmentFromDeclaration.symbols1 === /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")} */
DtypeGuardsAsAssertions.types13 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 …]
DmappedTypePartialNonHomomorphicBaseConstraint.types11 return { base: ["some base error"] };
12 >{ base: ["some base error"] } : { base: string[]; }
14 >["some base error"] : string[]
15 >"some base error" : "some base error"
DprivateNamesAndFields.types29 this.#foo = "some string";
30 >this.#foo = "some string" : "some string"
33 >"some string" : "some string"
DcrashInGetTextOfComputedPropertyName.types12 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"
DcontrolFlowArrayErrors.errors.txt1 …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 …]
DtypeGuardsAsAssertions.js9 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());
DvariableDeclarationInnerCommentEmit.types2 var a = /*some comment*/ null;
6 var b /*some comment*/ = null;
10 var /*some comment*/ c = null;
15 var a=/*some comment*/null;
DderivedClasses.types28 public shade() { return "some shade"; }
30 >"some shade" : "some shade"
32 public hue() { return "some hue"; }
34 >"some hue" : "some hue"
DmixinPrivateAndProtected.errors.txt4 …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 …]
DprivateNamesAndStaticFields.types40 B.#foo = "some string";
41 >B.#foo = "some string" : "some string"
44 >"some string" : "some string"
DvariableDeclarationInnerCommentEmit.symbols2 var a = /*some comment*/ null;
5 var b /*some comment*/ = null;
8 var /*some comment*/ c = null;
12 var a=/*some comment*/null;
/third_party/boost/libs/graph/example/
Dinterior_property_map.expected1 Jeremy owes Rich some money
2 Jeremy owes Andrew some money
3 Jeremy owes Jeff some money
4 Jeremy owes Kinis some money
5 Andrew owes Jeremy some money
6 Andrew owes Kinis some money
7 Jeff owes Jeremy some money
8 Jeff owes Rich some money
9 Jeff owes Kinis some money
10 Kinis owes Jeremy some money
[all …]
Dexterior_property_map.expected1 Jeremy owes Rich some money
2 Jeremy owes Andrew some money
3 Jeremy owes Jeff some money
4 Jeremy owes Kinis some money
5 Andrew owes Jeremy some money
6 Andrew owes Kinis some money
7 Jeff owes Jeremy some money
8 Jeff owes Rich some money
9 Jeff owes Kinis some money
10 Kinis owes Jeremy some money
[all …]
/third_party/jerryscript/tests/jerry/
Darray-prototype-some.js23 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/node/deps/npm/node_modules/infer-owner/
DREADME.md10 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')
/third_party/node/deps/npm/node_modules/pseudomap/test/
Dbasic.js40 m.set(akey, { some: 'data' }) property
41 m.set(bkey, { some: 'other data' }) property
42 t.same(m.get(akey), { some: 'data' }) property
43 t.same(m.get(bkey), { some: 'other data' }) property
71 { value: { some: 'data' }, key: {} }, property
72 { value: { some: 'other data' }, key: {} }, property
/third_party/mindspore/mindspore/ccsrc/minddata/dataset/
DCMakeLists.txt227 set(some-file "${CMAKE_SOURCE_DIR}/mindspore/ccsrc/minddata/dataset/${linkso}.txt")
228 set(some-file1 "${CMAKE_SOURCE_DIR}/mindspore/ccsrc/minddata/dataset/${linkso}1.txt")
229 set(some-file2 "${CMAKE_SOURCE_DIR}/mindspore/ccsrc/minddata/dataset/${linkso}2.txt")
232 ${some-file}
234 otool -L ${targetso} | grep ${linkso} > ${some-file}
240 ${some-file1}
242 cat ${some-file} | cut -d " " -f 1 | sed -E "s/^.//g" > ${some-file1}
244 ${some-file}
250 ${some-file2}
252 awk -F "/" "{print $NF}" ${some-file1} > ${some-file2}
[all …]
/third_party/node/test/parallel/
Dtest-trace-events-metadata.js27 assert(traces.some((trace) =>
30 assert(traces.some((trace) =>
33 assert(traces.some((trace) =>
37 assert(traces.some((trace) =>
70 assert(traces.some((trace) =>
72 assert(traces.some((trace) =>

12345678910>>...232