Home
last modified time | relevance | path

Searched refs:intersect (Results 1 – 25 of 520) sorted by relevance

12345678910>>...21

/third_party/typescript/tests/cases/fourslash/
DfindAllRefsRootSymbols.ts12 const intersect = { definition: "(property) x: {} & string", ranges: [r3] }; constant
13 verify.referenceGroups(r0, [i, intersect]);
14 verify.referenceGroups(r1, [j, intersect]);
15 verify.referenceGroups(r2, [anon, intersect]);
16 verify.referenceGroups(r3, [i, j, anon, intersect]);
/third_party/boost/libs/geometry/test/algorithms/overlay/
Dtraverse_ccw.cpp40 intersect(Geometry1 const& g1, Geometry2 const& g2, std::string const& name, in intersect() function
200 inline typename bg::coordinate_type<Geometry1>::type intersect(std::string const& wkt1, std::string… in intersect() function
212 return intersect(geometry1, geometry2, name, op); in intersect()
223 T area1 = intersect<clock, clock>(wkt1, wkt2, name, ov::operation_intersection); in test_polygon()
224 T area2 = intersect<counter, counter>(wkt1, wkt2, name, ov::operation_intersection); in test_polygon()
225 T area3 = intersect<clock, counter>(wkt1, wkt2, name, ov::operation_intersection); in test_polygon()
226 T area4 = intersect<counter, clock>(wkt1, wkt2, name, ov::operation_intersection); in test_polygon()
232 area1 = intersect<clock, clock>(wkt1, wkt2, name, ov::operation_union); in test_polygon()
233 area2 = intersect<counter, counter>(wkt1, wkt2, name, ov::operation_union); in test_polygon()
234 area3 = intersect<clock, counter>(wkt1, wkt2, name, ov::operation_union); in test_polygon()
[all …]
/third_party/skia/src/pathops/
DSkIntersections.h79 return intersect(conic, line); in conicLine()
103 return intersect(cubic, line); in cubicLine()
152 return intersect(aLine, bLine); in lineLine()
188 return intersect(quad, line); in quadLine()
258 int intersect(const SkDLine&, const SkDLine&);
259 int intersect(const SkDQuad&, const SkDLine&);
260 int intersect(const SkDQuad&, const SkDQuad&);
261 int intersect(const SkDConic&, const SkDLine&);
262 int intersect(const SkDConic&, const SkDQuad&);
263 int intersect(const SkDConic&, const SkDConic&);
[all …]
/third_party/flutter/skia/src/pathops/
DSkIntersections.h79 return intersect(conic, line); in conicLine()
103 return intersect(cubic, line); in cubicLine()
152 return intersect(aLine, bLine); in lineLine()
188 return intersect(quad, line); in quadLine()
258 int intersect(const SkDLine&, const SkDLine&);
259 int intersect(const SkDQuad&, const SkDLine&);
260 int intersect(const SkDQuad&, const SkDQuad&);
261 int intersect(const SkDConic&, const SkDLine&);
262 int intersect(const SkDConic&, const SkDQuad&);
263 int intersect(const SkDConic&, const SkDConic&);
[all …]
/third_party/skia/tests/
DGrClipStackTest.cpp108 ElementsBuilder& intersect() { fOp = SkClipOp::kIntersect; return *this; } in intersect() function in __anon14e25fe30111::ElementsBuilder
249 bool intersect = (e.fOp == SkClipOp::kIntersect && !e.fShape.inverted()) || in getOptimalBounds() local
254 if (intersect) { in getOptimalBounds()
517 SkAssertResult(fracIntersect.intersect(fracRect1, fracRect2)); in DEF_TEST()
519 SkAssertResult(alignedIntersect.intersect(pixelAligned, fracRect1)); in DEF_TEST()
523 .actual().aa().intersect() in DEF_TEST()
526 .expect().aa().intersect().rect(fracIntersect).finishElements() in DEF_TEST()
532 .actual().nonAA().intersect() in DEF_TEST()
535 .expect().nonAA().intersect().rect(fracIntersect).finishElements() in DEF_TEST()
541 .actual().intersect() in DEF_TEST()
[all …]
DPathOpsThreeWayTest.cpp59 i->intersect(oLine, iLine); in testSetTest()
61 i->intersect(iCurve, oLine); in testSetTest()
63 i->intersect(oCurve, iLine); in testSetTest()
65 i->intersect(oCurve, iCurve); in testSetTest()
/third_party/grpc/tools/mkowners/
Dmkowners.py167 intersect = files_have.intersection(files_add)
168 if intersect:
170 if f not in intersect:
187 intersect = files_parent.intersection(files_child)
189 if intersect:
192 if f not in intersect:
222 intersect = files.intersection(files1) variable
223 if files == intersect:
227 elif intersect:
/third_party/gstreamer/gstplugins_good/gst/rtp/
Dgstrtpg726pay.c188 GstCaps *filter, *intersect; in gst_rtp_g726_pay_setcaps() local
206 intersect = gst_caps_intersect (peercaps, filter); in gst_rtp_g726_pay_setcaps()
210 GST_DEBUG_OBJECT (payload, "intersected to %" GST_PTR_FORMAT, intersect); in gst_rtp_g726_pay_setcaps()
212 if (!intersect) in gst_rtp_g726_pay_setcaps()
214 if (gst_caps_is_empty (intersect)) { in gst_rtp_g726_pay_setcaps()
215 gst_caps_unref (intersect); in gst_rtp_g726_pay_setcaps()
219 structure = gst_caps_get_structure (intersect, 0); in gst_rtp_g726_pay_setcaps()
237 gst_caps_unref (intersect); in gst_rtp_g726_pay_setcaps()
Dgstrtph263ppay.c196 GstCaps *intersect = gst_caps_intersect (peercaps, tcaps); in gst_rtp_h263p_pay_setcaps() local
200 if (!gst_caps_is_empty (intersect)) { in gst_rtp_h263p_pay_setcaps()
201 GstStructure *s = gst_caps_get_structure (intersect, 0); in gst_rtp_h263p_pay_setcaps()
204 gst_caps_unref (intersect); in gst_rtp_h263p_pay_setcaps()
249 GstCaps *intersect = NULL; in gst_rtp_h263p_pay_sink_getcaps() local
281 intersect = gst_caps_intersect (peercaps, templ); in gst_rtp_h263p_pay_sink_getcaps()
285 if (gst_caps_is_empty (intersect)) in gst_rtp_h263p_pay_sink_getcaps()
286 return intersect; in gst_rtp_h263p_pay_sink_getcaps()
289 for (i = 0; i < gst_caps_get_size (intersect); i++) { in gst_rtp_h263p_pay_sink_getcaps()
290 GstStructure *s = gst_caps_get_structure (intersect, i); in gst_rtp_h263p_pay_sink_getcaps()
[all …]
/third_party/flutter/skia/tests/
DPathOpsThreeWayTest.cpp59 i->intersect(oLine, iLine); in testSetTest()
61 i->intersect(iCurve, oLine); in testSetTest()
63 i->intersect(oCurve, iLine); in testSetTest()
65 i->intersect(oCurve, iCurve); in testSetTest()
/third_party/mesa3d/src/gallium/drivers/zink/
Dzink_blit.c359 struct u_rect intersect = {0, width, 0, height}; in zink_blit_region_fills() local
361 if (!u_rect_test_intersection(&region, &intersect)) in zink_blit_region_fills()
365 u_rect_find_intersection(&region, &intersect); in zink_blit_region_fills()
366 if (intersect.x0 != 0 || intersect.y0 != 0 || in zink_blit_region_fills()
367 intersect.x1 != width || intersect.y1 != height) in zink_blit_region_fills()
376 struct u_rect intersect; in zink_blit_region_covers() local
380 u_rect_union(&intersect, &region, &covers); in zink_blit_region_covers()
381 return intersect.x0 == covers.x0 && intersect.y0 == covers.y0 && in zink_blit_region_covers()
382 intersect.x1 == covers.x1 && intersect.y1 == covers.y1; in zink_blit_region_covers()
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Drasterizer_impl.h1080 OSALIGNSIMD(SWR_RECT) intersect;
1081 intersect.xmin = std::max(bbox.xmin, scissorInFixedPoint.xmin);
1082 intersect.xmax = std::min(bbox.xmax - 1, scissorInFixedPoint.xmax);
1083 intersect.ymin = std::max(bbox.ymin, scissorInFixedPoint.ymin);
1084 intersect.ymax = std::min(bbox.ymax - 1, scissorInFixedPoint.ymax);
1097 intersect.xmin = std::max(intersect.xmin, macroBoxLeft);
1098 intersect.ymin = std::max(intersect.ymin, macroBoxTop);
1099 intersect.xmax = std::min(intersect.xmax, macroBoxRight);
1100 intersect.ymax = std::min(intersect.ymax, macroBoxBottom);
1102 SWR_ASSERT(intersect.xmin <= intersect.xmax && intersect.ymin <= intersect.ymax &&
[all …]
/third_party/skia/src/gpu/
DGrScissorState.h31 return this->intersect(rect); in set()
34 bool SK_WARN_UNUSED_RESULT intersect(const SkIRect& rect) { in intersect() function
35 if (!fRect.intersect(rect)) { in intersect()
/third_party/flutter/skia/third_party/externals/wuffs/internal/cgen/base/
Drange-public.h57 inline wuffs_base__range_ii_u32__struct intersect(
138 wuffs_base__range_ii_u32::intersect(wuffs_base__range_ii_u32 s) const { in intersect() function
168 inline wuffs_base__range_ie_u32__struct intersect(
255 wuffs_base__range_ie_u32::intersect(wuffs_base__range_ie_u32 s) const { in intersect() function
290 inline wuffs_base__range_ii_u64__struct intersect(
371 wuffs_base__range_ii_u64::intersect(wuffs_base__range_ii_u64 s) const { in intersect() function
401 inline wuffs_base__range_ie_u64__struct intersect(
488 wuffs_base__range_ie_u64::intersect(wuffs_base__range_ie_u64 s) const { in intersect() function
534 inline wuffs_base__rect_ii_u32__struct intersect(
627 wuffs_base__rect_ii_u32::intersect(wuffs_base__rect_ii_u32 s) const { in intersect() function
[all …]
/third_party/flutter/engine/flutter/flow/layers/
Dclip_rrect_layer.cc19 if (context->cull_rect.intersect(clip_rrect_bounds)) { in Preroll()
24 if (child_paint_bounds.intersect(clip_rrect_bounds)) { in Preroll()
64 if (dst_rect.intersect(clip_rect)) { in MapRect()
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/
DRangeTreeTest.java145 assertThat(a.intersect(a)).isEqualTo(a); in testIntersection()
146 assertThat(a.intersect(RangeTree.empty())).isSameInstanceAs(RangeTree.empty()); in testIntersection()
147 assertThat(RangeTree.empty().intersect(a)).isSameInstanceAs(RangeTree.empty()); in testIntersection()
150 assertThat(a.intersect(b)).containsExactly("1234", "456xx"); in testIntersection()
151 assertThat(b.intersect(a)).containsExactly("1234", "456xx"); in testIntersection()
192 RangeTree intAB = a.intersect(b); in testVennDiagram()
197 assertThat(subAB.intersect(intAB)).isSameInstanceAs(RangeTree.empty()); in testVennDiagram()
198 assertThat(subBA.intersect(intAB)).isSameInstanceAs(RangeTree.empty()); in testVennDiagram()
199 assertThat(subAB.intersect(subBA)).isSameInstanceAs(RangeTree.empty()); in testVennDiagram()
202 assertThat(subAB.union(subBA).intersect(intAB)).isSameInstanceAs(RangeTree.empty()); in testVennDiagram()
DPrefixTreeTest.java130 assertThat(prefixes("1234").intersect(prefixes("12"))).containsExactly("1234"); in testIntersection()
132 assertThat(prefixes("12").intersect(prefixes("12"))).containsExactly("12"); in testIntersection()
134 assertThat(prefixes("123").intersect(prefixes("124"))).isEmpty(); in testIntersection()
136 assertThat(prefixes("1234", "45x", "800").intersect(prefixes("12x", "4x67"))) in testIntersection()
/third_party/boost/boost/geometry/algorithms/detail/disjoint/
Dsegment_box.hpp60 intersect, enumerator
94 disjoint_box_box_strategy) != disjoint_info::intersect; in apply()
131 return disjoint_info::intersect; in apply()
191 return disjoint_info::intersect; in apply()
235 return disjoint_info::intersect; in apply()
/third_party/skia/src/effects/imagefilters/
DSkCropImageFilter.cpp91 if (!cropBounds.intersect(context.desiredOutput())) { in onFilterImage()
123 if (!requiredInput.intersect(desiredOutput)) { in onGetInputLayerBounds()
145 if (output.intersect(childOutput)) { in onGetOutputLayerBounds()
170 if (!inputBounds.intersect(SkRect(fCropRect))) { in computeFastBounds()
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
DDisjointRangeMap.java112 RangeTree overlap = assignedRanges.intersect(ranges); in assign()
167 DisjointRangeMap<T> intersect(RangeTree bounds) { in intersect() method in DisjointRangeMap
169 column, transformValues(map, r -> r.intersect(bounds)), assignedRanges.intersect(bounds)); in intersect()
/third_party/flutter/engine/flutter/testing/dart/
Dpath_test.dart23 final Rect c1IntersectC2 = c1.intersect(c2);
36 final Path intersect = Path.combine(PathOperation.intersect, pathCircle1, pathCircle2);
37 expect(intersect.getBounds(), equals(c1IntersectC2));
48 final Rect c1IntersectC2 = c1.intersect(c2);
62 final Path intersect = Path.combine(PathOperation.intersect, pathCircle1, pathCircle2);
63 expect(intersect.getBounds(), equals(c1IntersectC2));
/third_party/flutter/skia/src/core/
DSkRect.cpp96 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) { in intersect() function in SkRect
102 bool SkRect::intersect(const SkRect& r) { in intersect() function in SkRect
103 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom); in intersect()
106 bool SkRect::intersect(const SkRect& a, const SkRect& b) { in intersect() function in SkRect
/third_party/flutter/flutter/packages/flutter/test/rendering/
Drelative_rect_test.dart28 test('RelativeRect.intersect', () {
31 final RelativeRect r3 = r1.intersect(r2);
32 final RelativeRect r4 = r2.intersect(r1);
/third_party/flutter/skia/src/gpu/
DGrScissorState.h19 bool SK_WARN_UNUSED_RESULT intersect(const SkIRect& rect) { in intersect() function
24 return fRect.intersect(rect); in intersect()
/third_party/boost/libs/numeric/interval/examples/
Dnewton-raphson.cpp53 if (overlap(x1, x)) x1 = intersect(x, x1); in newton_raphson()
57 if (overlap(x2, x)) x2 = intersect(x, x2); in newton_raphson()
100 x1 = intersect(x, xx - division_part1(vf, vd, x2_used)); in newton_raphson()
101 x2 = intersect(x, xx - division_part2(vf, vd, x2_used)); in newton_raphson()

12345678910>>...21