/third_party/boost/boost/spirit/home/classic/core/composite/impl/ |
D | intersection.ipp | 20 // intersection class implementation 24 inline intersection<A, B> 27 return intersection<A, B>(a.derived(), b.derived()); 31 inline intersection<A, chlit<char> > 34 return intersection<A, chlit<char> >(a.derived(), b); 38 inline intersection<chlit<char>, B> 41 return intersection<chlit<char>, B>(a, b.derived()); 45 inline intersection<A, strlit<char const*> > 48 return intersection<A, strlit<char const*> >(a.derived(), b); 52 inline intersection<strlit<char const*>, B> [all …]
|
/third_party/boost/boost/spirit/home/classic/core/composite/ |
D | intersection.hpp | 43 struct intersection struct 44 : public binary<A, B, parser<intersection<A, B> > > 46 typedef intersection<A, B> self_t; argument 51 intersection(A const& a, B const& b) in intersection() argument 80 intersection< 88 static intersection< 94 return intersection<BOOST_DEDUCED_TYPENAME as_parser<A>::type, in generate() 101 intersection<A, B> 105 intersection<A, chlit<char> > 109 intersection<chlit<char>, B> [all …]
|
/third_party/boost/libs/geometry/doc/generated/ |
D | intersection.qbk | 16 [section:intersection_4_with_strategy intersection (with strategy)] 18 '''<indexterm><primary>intersection</primary></indexterm>''' 19 Calculate the intersection of two geometries. 22 The free function intersection calculates the spatial set theoretic intersection of two geometries. 26 bool intersection(Geometry1 const & geometry1, Geometry2 const & geometry2, GeometryOut & geometry_… 35 … either a multi_point, multi_polygon, multi_linestring, or a box (for intersection of two boxes) ]] 36 …tion Strategy Concept ] [strategy] [The strategy which will be used for intersection calculations]] 48 `#include <boost/geometry/algorithms/intersection.hpp>` 50 [include reference/algorithms/intersection.qbk] 55 [section:intersection_3 intersection] [all …]
|
D | de9im_static_mask.qbk | 19 DE-9IM model intersection mask (static version). 38 [[char II] ['*'] [Interior/Interior intersection mask element ]] 39 [[char IB] ['*'] [Interior/Boundary intersection mask element ]] 40 [[char IE] ['*'] [Interior/Exterior intersection mask element ]] 41 [[char BI] ['*'] [Boundary/Interior intersection mask element ]] 42 [[char BB] ['*'] [Boundary/Boundary intersection mask element ]] 43 [[char BE] ['*'] [Boundary/Exterior intersection mask element ]] 44 [[char EI] ['*'] [Exterior/Interior intersection mask element ]] 45 [[char EB] ['*'] [Exterior/Boundary intersection mask element ]] 46 [[char EE] ['*'] [Exterior/Exterior intersection mask element]]
|
/third_party/boost/boost/geometry/algorithms/detail/intersection/ |
D | interface.hpp | 45 struct intersection struct 79 struct intersection struct 85 : intersection<Geometry2, Geometry1, Tag2, Tag1, false> 95 return intersection in apply() 111 struct intersection struct 136 return dispatch::intersection in apply() 171 return dispatch::intersection in apply() 187 struct intersection struct 198 return resolve_strategy::intersection::apply(geometry1, in apply() 207 struct intersection<variant<BOOST_VARIANT_ENUM_PARAMS(T)>, Geometry2> struct [all …]
|
D | areal_areal.hpp | 22 namespace detail { namespace intersection namespace 269 struct intersection struct 275 : detail::intersection::intersection_areal_areal 282 struct intersection struct 288 : detail::intersection::intersection_areal_areal 295 struct intersection struct 301 : detail::intersection::intersection_areal_areal 308 struct intersection struct 314 : detail::intersection::intersection_areal_areal 321 struct intersection struct [all …]
|
D | multi.hpp | 44 namespace detail { namespace intersection namespace 205 strategy::intersection::liang_barsky<Box, point_type> lb_strategy; in apply() 210 out = detail::intersection::clip_range_with_box in apply() 243 > : detail::intersection::intersection_multi_linestring_multi_linestring_point 265 > : detail::intersection::intersection_linestring_multi_linestring_point 287 > : detail::intersection::clip_multi_linestring 309 > : detail::intersection::intersection_of_linestring_with_areal 336 > : detail::intersection::intersection_of_areal_with_multi_linestring 361 > : detail::intersection::intersection_of_multi_linestring_with_areal 385 > : detail::intersection::intersection_of_multi_linestring_with_areal [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | GlyphGroup.java | 60 GlyphGroup intersection(GlyphGroup other) { in intersection() method in GlyphGroup 61 GlyphGroup intersection = new GlyphGroup(); in intersection() local 63 intersection.or(other); in intersection() 64 intersection.andNot(this); in intersection() 66 intersection.or(this); in intersection() 67 intersection.andNot(other); in intersection() 69 intersection.inverse = true; in intersection() 70 intersection.or(this); in intersection() 71 intersection.or(other); in intersection() 73 intersection.or(this); in intersection() [all …]
|
/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/ |
D | GlyphGroup.java | 60 GlyphGroup intersection(GlyphGroup other) { in intersection() method in GlyphGroup 61 GlyphGroup intersection = new GlyphGroup(); in intersection() local 63 intersection.or(other); in intersection() 64 intersection.andNot(this); in intersection() 66 intersection.or(this); in intersection() 67 intersection.andNot(other); in intersection() 69 intersection.inverse = true; in intersection() 70 intersection.or(this); in intersection() 71 intersection.or(other); in intersection() 73 intersection.or(this); in intersection() [all …]
|
/third_party/boost/libs/hana/test/set/ |
D | intersection.cpp | 17 hana::intersection( in main() 24 hana::intersection( in main() 31 hana::intersection( in main() 39 hana::intersection( in main() 46 hana::intersection( in main() 54 hana::intersection( in main() 61 hana::intersection( in main() 68 hana::intersection( in main() 76 hana::intersection( in main() 84 hana::intersection( in main()
|
/third_party/typescript/tests/baselines/reference/ |
D | spreadIntersection.symbols | 2 var intersection: { a: number } & { b: string }; 3 >intersection : Symbol(intersection, Decl(spreadIntersection.ts, 0, 3)) 12 var o1 = { ...intersection }; 14 >intersection : Symbol(intersection, Decl(spreadIntersection.ts, 0, 3)) 22 var o2 = { ...intersection, c: false }; 24 >intersection : Symbol(intersection, Decl(spreadIntersection.ts, 0, 3))
|
D | spreadIntersection.types | 2 var intersection: { a: number } & { b: string }; 3 >intersection : { a: number; } & { b: string; } 12 var o1 = { ...intersection }; 14 >{ ...intersection } : { a: number; b: string; } 15 >intersection : { a: number; } & { b: string; } 23 var o2 = { ...intersection, c: false }; 25 >{ ...intersection, c: false } : { c: boolean; a: number; b: string; } 26 >intersection : { a: number; } & { b: string; }
|
D | spreadIntersection.js | 2 var intersection: { a: number } & { b: string }; variable 5 var o1 = { ...intersection }; 8 var o2 = { ...intersection, c: false }; 22 var intersection; variable 24 var o1 = __assign({}, intersection); 26 var o2 = __assign(__assign({}, intersection), { c: false });
|
D | unparenthesizedConstructorTypeInUnionOrIntersection.errors.txt | 7 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 8 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 9 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 10 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 11 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 12 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 14 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 15 …): error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 45 !!! error TS1388: Constructor type notation must be parenthesized when used in an intersection type. 48 !!! error TS1388: Constructor type notation must be parenthesized when used in an intersection type. [all …]
|
D | unparenthesizedFunctionTypeInUnionOrIntersection.errors.txt | 7 …,19): error TS1387: Function type notation must be parenthesized when used in an intersection type. 8 …,19): error TS1387: Function type notation must be parenthesized when used in an intersection type. 9 …,12): error TS1387: Function type notation must be parenthesized when used in an intersection type. 10 …,12): error TS1387: Function type notation must be parenthesized when used in an intersection type. 11 …,19): error TS1387: Function type notation must be parenthesized when used in an intersection type. 12 …8,4): error TS1387: Function type notation must be parenthesized when used in an intersection type. 14 …,31): error TS1387: Function type notation must be parenthesized when used in an intersection type. 15 …,16): error TS1387: Function type notation must be parenthesized when used in an intersection type. 45 !!! error TS1387: Function type notation must be parenthesized when used in an intersection type. 48 !!! error TS1387: Function type notation must be parenthesized when used in an intersection type. [all …]
|
D | restIntersection.symbols | 2 var intersection: { x: number, y: number } & { w: string, z: string }; 3 >intersection : Symbol(intersection, Decl(restIntersection.ts, 0, 3)) 15 var {x, ...rest1 } = intersection; 18 >intersection : Symbol(intersection, Decl(restIntersection.ts, 0, 3))
|
D | intersectionAndUnionTypes.errors.txt | 1 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(19,1): error TS2322: Type '… 3 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(20,1): error TS2322: Type '… 5 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(23,1): error TS2322: Type '… 9 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(25,1): error TS2322: Type '… 13 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(26,1): error TS2322: Type '… 16 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(27,1): error TS2322: Type '… 19 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(28,1): error TS2322: Type '… 22 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(29,1): error TS2322: Type '… 25 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(31,1): error TS2322: Type '… 28 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(32,1): error TS2322: Type '… [all …]
|
D | intersectionTypeAssignment.errors.txt | 1 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts(8,1): error TS2741: Proper… 2 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts(9,1): error TS2322: Type '… 4 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts(13,1): error TS2741: Prope… 5 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts(14,1): error TS2322: Type … 9 ==== tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts (4 errors) ==== 20 !!! related TS2728 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts:3:21: '… 25 !!! related TS2728 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts:4:26: '… 32 !!! related TS2728 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts:3:10: '… 37 !!! related TS2728 tests/cases/conformance/types/intersection/intersectionTypeAssignment.ts:4:10: '…
|
D | restIntersection.js | 2 var intersection: { x: number, y: number } & { w: string, z: string }; variable 5 var {x, ...rest1 } = intersection; 20 var intersection; variable 22 var x = intersection.x, rest1 = __rest(intersection, ["x"]);
|
/third_party/flutter/skia/third_party/externals/sdl/test/ |
D | testautomation_rect.c | 19 SDL_bool intersection, SDL_bool expectedIntersection, in _validateIntersectRectAndLineResults() argument 24 SDLTest_AssertCheck(intersection == expectedIntersection, in _validateIntersectRectAndLineResults() 27 (intersection == SDL_TRUE) ? "SDL_TRUE" : "SDL_FALSE", in _validateIntersectRectAndLineResults() 309 SDL_bool intersection, SDL_bool expectedIntersection, in _validateHasIntersectionResults() argument 312 SDLTest_AssertCheck(intersection == expectedIntersection, in _validateHasIntersectionResults() 315 (intersection == SDL_TRUE) ? "SDL_TRUE" : "SDL_FALSE", in _validateHasIntersectionResults() 332 SDL_bool intersection, SDL_bool expectedIntersection, in _validateIntersectRectResults() argument 336 …_validateHasIntersectionResults(intersection, expectedIntersection, rectA, rectB, refRectA, refRec… in _validateIntersectRectResults() 424 SDL_bool intersection; in rect_testIntersectRectInside() local 433 intersection = SDL_IntersectRect(&rectA, &rectB, &result); in rect_testIntersectRectInside() [all …]
|
/third_party/boost/libs/hana/test/map/ |
D | intersection.cpp | 26 hana::intersection( in main() 34 hana::intersection( in main() 42 hana::intersection( in main() 50 hana::intersection( in main() 58 hana::intersection( in main() 73 hana::intersection( in main() 88 hana::intersection( in main()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/ |
D | RangeException.java | 32 RangeTree intersection = existing.intersect(ranges); in checkDisjoint() local 33 if (!intersection.isEmpty()) { in checkDisjoint() 35 throw new RangeException(column, value, existing, ranges, intersection, mode); in checkDisjoint() 43 RangeTree intersection, in RangeException() argument 45 super(explain(checkNotNull(column), value, existing, ranges, intersection, checkNotNull(mode))); in RangeException() local 53 RangeTree intersection, in explain() argument 60 value, column, mode, toLines(intersection), toLines(existing), toLines(ranges)); in explain()
|
/third_party/boost/libs/icl/doc/ |
D | functions_intersection.qbk | 25 Functions and operators that are related to ['*intersection*] on *icl* objects 31 [[`Sets`][Intersection on Sets implements ['*set intersection*]]] 32 …[`Maps`][Intersection on Maps implements a ['*map intersection*] function similar to /set intersec… 33 If, on intersection, an element value pair `(k,v)` it's key `k` is in the map 34 already, the intersection function is propagated to the associated value, 37 If the codomain_type has no intersection operation, associated 39 results in an addition on the intersection of the domains of 40 the intersected sets. For total maps intersection and 44 ….semantics.quantifiers__maps_of_numbers.intersection_on_quantifiers ['intersection on Maps of numb… 62 allows to accumulate the intersection of `y` and `x` in the first argument `result`. [all …]
|
/third_party/boost/libs/geometry/test/cs_undefined/ |
D | setops.cpp | 20 bg::intersection(g1, g2, g3, s); in set_idsu() 29 bg::intersection(g1, g2, g3, s); in set_ids() 37 bg::intersection(g1, g2, g3, s); in set_id() 44 bg::intersection(g1, g2, g3, s); in set_i() 72 ::set_idsu(g1, g2, g3, bg::strategy::intersection::cartesian_segments<>()); in set_idsu_ss() 73 ::set_idsu(g1, g2, g3, bg::strategy::intersection::spherical_segments<>()); in set_idsu_ss() 74 ::set_idsu(g1, g2, g3, bg::strategy::intersection::geographic_segments<>()); in set_idsu_ss() 96 ::set_ids(g1, g2, g3, bg::strategy::intersection::cartesian_segments<>()); in set_ids_ss() 97 ::set_ids(g1, g2, g3, bg::strategy::intersection::spherical_segments<>()); in set_ids_ss() 98 ::set_ids(g1, g2, g3, bg::strategy::intersection::geographic_segments<>()); in set_ids_ss() [all …]
|
/third_party/boost/libs/date_time/test/gregorian/ |
D | testperiod.cpp | 64 std::cout << i1.intersection(i2) << std::endl; in main() 65 check("intersect case1", i1.intersection(i2) == r1); in main() 66 check("intersect case1", i2.intersection(i1) == r1); in main() 69 check("intersect case2", i1.intersection(i3) == i1); in main() 70 check("intersect case2", i3.intersection(i1) == i1); in main() 74 check("intersect case3", i1.intersection(i4) == r2); in main() 75 check("intersect case3", i4.intersection(i1) == r2); in main() 78 check("intersect case4", i1.intersection(i5) == i5); in main() 79 check("intersect case4", i5.intersection(i1) == i5); in main() 81 check("no intersection", i2.intersection(i4).is_null()); in main()
|