Home
last modified time | relevance | path

Searched refs:bound2 (Results 1 – 10 of 10) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DnonPrimitiveInGeneric.js22 function bound2<T extends object>() {}
24 bound2<{}>();
25 bound2<Object>();
26 bound2<number>(); // expect error
27 bound2<string>(); // expect error
64 function bound2() { } function
65 bound2();
66 bound2();
67 bound2(); // expect error
68 bound2(); // expect error
[all …]
DnonPrimitiveInGeneric.types67 function bound2<T extends object>() {}
68 >bound2 : <T extends object>() => void
70 bound2<{}>();
71 >bound2<{}>() : void
72 >bound2 : <T extends object>() => void
74 bound2<Object>();
75 >bound2<Object>() : void
76 >bound2 : <T extends object>() => void
78 bound2<number>(); // expect error
79 >bound2<number>() : void
[all …]
DnonPrimitiveInGeneric.symbols57 function bound2<T extends object>() {}
58 >bound2 : Symbol(bound2, Decl(nonPrimitiveInGeneric.ts, 18, 9))
61 bound2<{}>();
62 >bound2 : Symbol(bound2, Decl(nonPrimitiveInGeneric.ts, 18, 9))
64 bound2<Object>();
65 >bound2 : Symbol(bound2, Decl(nonPrimitiveInGeneric.ts, 18, 9))
68 bound2<number>(); // expect error
69 >bound2 : Symbol(bound2, Decl(nonPrimitiveInGeneric.ts, 18, 9))
71 bound2<string>(); // expect error
72 >bound2 : Symbol(bound2, Decl(nonPrimitiveInGeneric.ts, 18, 9))
DnonPrimitiveInGeneric.errors.txt42 function bound2<T extends object>() {}
44 bound2<{}>();
45 bound2<Object>();
46 bound2<number>(); // expect error
49 bound2<string>(); // expect error
/third_party/typescript/tests/cases/conformance/types/nonPrimitive/
DnonPrimitiveInGeneric.ts22 function bound2<T extends object>() {} function
24 bound2<{}>();
25 bound2<Object>();
26 bound2<number>(); // expect error
27 bound2<string>(); // expect error
/third_party/skia/gm/
Dbigtileimagefilter.cpp85 const SkRect bound2 = SkRect::MakeIWH(kBitmapSize, kBitmapSize); in onDraw() local
95 canvas->saveLayer(&bound2, &p2); in onDraw()
101 canvas->drawImageRect(fGreenImage.get(), bound2, bound3, SkSamplingOptions(), nullptr, in onDraw()
/third_party/flutter/skia/gm/
Dbigtileimagefilter.cpp85 const SkRect bound2 = SkRect::MakeIWH(kBitmapSize, kBitmapSize); in onDraw() local
95 canvas->saveLayer(&bound2, &p2); in onDraw()
101 canvas->drawImageRect(fGreenImage.get(), bound2, bound3, nullptr, in onDraw()
/third_party/python/Lib/
Dfractions.py250 bound2 = Fraction(p1, q1)
251 if abs(bound2 - self) <= abs(bound1-self):
252 return bound2
/third_party/mesa3d/src/mesa/main/
Darrayobj.c636 const GLbitfield bound2 = enabled & binding2->_BoundArrays; in _mesa_update_vao_derived_arrays() local
637 scanmask &= ~bound2; in _mesa_update_vao_derived_arrays()
656 eff_bound_arrays |= bound2; in _mesa_update_vao_derived_arrays()
/third_party/nghttp2/tests/
Dnghttp2_hd_test.c1215 size_t bound, bound2; in test_nghttp2_hd_deflate_bound() local
1233 bound2 = nghttp2_hd_deflate_bound(&deflater, nva, ARRLEN(nva)); in test_nghttp2_hd_deflate_bound()
1235 CU_ASSERT(bound == bound2); in test_nghttp2_hd_deflate_bound()