Home
last modified time | relevance | path

Searched defs:two (Results 1 – 25 of 238) sorted by relevance

12345678910

/third_party/typescript/tests/baselines/reference/
DreadonlyPropertySubtypeRelationDirected.js6 const two: { a: string } = { a: 'two' }; variable
25 const two: { a: string } = { a: 'two' }; variable
46 const two: { a: string } = { a: 'two' }; variable
66 const two: { a: string } = { a: 'two' }; variable
86 var two = { a: 'two' }; variable
102 var two = { a: 'two' }; variable
119 var two = { a: 'two' }; variable
135 var two = { a: 'two' }; variable
DassignmentCompatability15.js7 export var obj = {two: true}; property
22 __test2__.obj = { two: true }; property
DassignmentCompatability21.js7 export var obj = {two: ["1"]}; property
22 __test2__.obj = { two: ["1"] }; property
DassignmentCompatability11.js7 export var obj = {two: 1}; property
22 __test2__.obj = { two: 1 }; property
DassignmentCompatability19.js7 export var obj = {two: [1]}; property
22 __test2__.obj = { two: [1] }; property
DassignmentCompatability17.js7 export var obj = {two: <any[]>[1]}; property
22 __test2__.obj = { two: [1] }; property
DassignmentCompatability13.js7 export var obj = {two: "1"}; property
22 __test2__.obj = { two: "1" }; property
DassignmentCompatability23.js7 export var obj = {two: [true]}; property
22 __test2__.obj = { two: [true] }; property
DassignmentCompatability43.js7 …export interface interfaceTwo<T,U> { one: T; two: U; }; var obj2: interfaceTwo… property
23 var obj2 = { one: 1, two: "a" }; property
DthisInGenericStaticMembers.js37 A.two = function (source) { function in A
48 B.two = function (source) { function in B
DunderscoreTest1.js658 _.each({ one: 1, two: 2, three: 3 }, (value: number, key?: string) => alert(value.toString())); property
661 _.map({ one: 1, two: 2, three: 3 }, (value: number, key?: string) => value * 3); property
707 _.size({ one: 1, two: 2, three: 3 }); property
794 _.keys({ one: 1, two: 2, three: 3 }); property
795 _.values({ one: 1, two: 2, three: 3 }); property
796 _.pairs({ one: 1, two: 2, three: 3 }); property
909 _.each({ one: 1, two: 2, three: 3 }, function (value, key) { return alert(value.toString()); }); property
911 _.map({ one: 1, two: 2, three: 3 }, function (value, key) { return value * 3; }); property
937 _.size({ one: 1, two: 2, three: 3 }); property
1011 _.keys({ one: 1, two: 2, three: 3 }); property
[all …]
/third_party/typescript/tests/cases/compiler/
DreadonlyPropertySubtypeRelationDirected.ts5 const two: { a: string } = { a: 'two' }; constant
24 const two: { a: string } = { a: 'two' }; constant
45 const two: { a: string } = { a: 'two' }; constant
65 const two: { a: string } = { a: 'two' }; constant
DthisInGenericStaticMembers.ts9 static two<T>(source: T): T { method in A
20 static two(source: B): B { method in B
DassignmentCompatability43.ts2 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
6 …export interface interfaceTwo<T,U> { one: T; two: U; }; var obj2: interfaceTwo… property
DassignmentCompatability7.ts2 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
6 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
DassignmentCompatability42.ts2 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
6 …export class classWithPublicPrivate<T,U> { constructor(public one: T, private two: U) {} } v… property in classWithPublicPrivate
DassignmentCompatability41.ts2 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
6 …export class classWithTwoPrivate<T,U> { constructor(private one: T, private two: U) {} } v… property in classWithTwoPrivate
DassignmentCompatability39.ts2 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
6 …export class classWithTwoPublic<T,U> { constructor(public one: T, public two: U) {} } v… property in classWithTwoPublic
DassignmentCompatability10.ts2 …export interface interfaceWithPublicAndOptional<T,U> { one: T; two?: U; }; var obj4: interfaceWit… property
6 …export class classWithPublicAndOptional<T,U> { constructor(public one: T, public two?: U) {} } v… property in classWithPublicAndOptional
/third_party/node/test/parallel/
Dtest-stream2-objects.js55 const r = fromArray([{ one: '1' }, { two: '2' }]); property
62 assert.deepStrictEqual(v2, { two: '2' }); property
68 const r = fromArray([{ one: '1' }, { two: '2' }]); property
73 { two: '2' }, property
80 const r = fromArray([{ one: '1' }, { two: '2' }]); property
89 const list = [{ one: '1' }, { two: '2' }]; property
98 { two: '2' }, property
106 const list = [{ one: '1' }, { two: '2' }]; property
117 { two: '2' }, property
/third_party/skia/src/pathops/
DSkIntersections.cpp34 int SkIntersections::insert(double one, double two, const SkDPoint& pt) { in insert()
107 void SkIntersections::insertNear(double one, double two, const SkDPoint& pt1, const SkDPoint& pt2) { in insertNear()
116 int SkIntersections::insertCoincident(double one, double two, const SkDPoint& pt) { in insertCoincident()
/third_party/skia/docs/examples/
Dpathops.cpp11 SkColor blend(SkColor one, SkColor two) { in blend()
40 SkPath one, two; in draw() local
/third_party/mesa3d/src/compiler/nir/tests/
Dnegative_equal_tests.cpp137 nir_ssa_def *two = nir_imm_float(&bld, 2.0f); local
151 nir_ssa_def *two = nir_imm_int(&bld, 2); in TEST_F() local
169 nir_ssa_def *two = nir_imm_float(&bld, 2.0f); in TEST_F() local
189 nir_ssa_def *two = nir_imm_int(&bld, 2); in TEST_F() local
/third_party/skia/src/effects/
DSkOpPathEffect.cpp15 sk_sp<SkPathEffect> SkMergePathEffect::Make(sk_sp<SkPathEffect> one, sk_sp<SkPathEffect> two, in Make()
20 SkOpPE::SkOpPE(sk_sp<SkPathEffect> one, sk_sp<SkPathEffect> two, SkPathOp op) in SkOpPE()
25 SkPath one, two; in onFilterPath() local
89 auto two = buffer.readPathEffect(); in CreateProc() local
/third_party/gn/src/gn/
Dmetadata_walk_unittest.cc29 TestTarget two(setup, "//foo:two", Target::SOURCE_SET); in TEST() local
85 TestTarget two(setup, "//foo:two", Target::SOURCE_SET); in TEST() local
135 TestTarget two(setup, "//foo:two", Target::SOURCE_SET); in TEST() local

12345678910