Home
last modified time | relevance | path

Searched refs:intersection (Results 1 – 25 of 410) sorted by relevance

12345678910>>...17

/third_party/flutter/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DGlyphGroup.java60 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/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
DGlyphGroup.java60 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/typescript/tests/baselines/reference/
DspreadIntersection.symbols2 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))
DspreadIntersection.types2 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; }
DunparenthesizedConstructorTypeInUnionOrIntersection.errors.txt7 …): 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 …]
DunparenthesizedFunctionTypeInUnionOrIntersection.errors.txt7 …,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 …]
DspreadIntersection.js2 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 });
DintersectionAndUnionTypes.errors.txt1 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 …]
DrestIntersection.symbols2 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))
DintersectionTypeAssignment.errors.txt1 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: '…
DrestIntersection.js2 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"]);
DmixinAccessModifiers.errors.txt2 …The intersection 'Private & Private2' was reduced to 'never' because property 'p' exists in multip…
4 …The intersection 'Private & Protected' was reduced to 'never' because property 'p' exists in multi…
6 …The intersection 'Private & Public' was reduced to 'never' because property 'p' exists in multiple…
8 …TS2509: Base constructor return type 'never' is not an object type or intersection of object types…
9 …The intersection 'Private & Private2' was reduced to 'never' because property 'p' exists in multip…
10 …TS2509: Base constructor return type 'never' is not an object type or intersection of object types…
11 …The intersection 'Private & Protected' was reduced to 'never' because property 'p' exists in multi…
12 …TS2509: Base constructor return type 'never' is not an object type or intersection of object types…
13 …The intersection 'Private & Public' was reduced to 'never' because property 'p' exists in multiple…
21 …The intersection 'ProtectedGeneric<{ a: void; }> & ProtectedGeneric2<{ a: void; b: void; }>' was r…
[all …]
DmixinPrivateAndProtected.errors.txt4 …The intersection 'mixB<typeof A>.(Anonymous class) & A' was reduced to 'never' because property 'p…
6 …The intersection 'mixB<typeof A>.(Anonymous class) & A' was reduced to 'never' because property 'p…
8 …The intersection 'mixB<typeof A>.(Anonymous class) & A' was reduced to 'never' because property 'p…
10 …The intersection 'mixC<{ new (...args: any[]): mixB<typeof A>.(Anonymous class); prototype: mixB<a…
12 …The intersection 'mixC<{ new (...args: any[]): mixB<typeof A>.(Anonymous class); prototype: mixB<a…
14 …The intersection 'mixC<{ new (...args: any[]): mixB<typeof A>.(Anonymous class); prototype: mixB<a…
16 …The intersection 'mixC<{ new (...args: any[]): mixB2<typeof A>.(Anonymous class); prototype: mixB2…
18 …The intersection 'mixC<{ new (...args: any[]): mixB2<typeof A>.(Anonymous class); prototype: mixB2…
20 …The intersection 'mixC<{ new (...args: any[]): mixB2<typeof A>.(Anonymous class); prototype: mixB2…
79 !!! error TS2339: The intersection 'mixB<typeof A>.(Anonymous class) & A' was reduced to 'never' …
[all …]
DrestIntersection.types2 var intersection: { x: number, y: number } & { w: string, z: string };
3 >intersection : { x: number; y: number; } & { w: string; z: string; }
15 var {x, ...rest1 } = intersection;
18 >intersection : { x: number; y: number; } & { w: string; z: string; }
DintersectionTypeReadonly.errors.txt1 tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts(17,6): error TS2540: Cannot …
2 tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts(19,11): error TS2540: Cannot…
3 tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts(21,9): error TS2540: Cannot …
4 tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts(23,15): error TS2540: Cannot…
5 tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts(25,15): error TS2540: Cannot…
8 ==== tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts (5 errors) ====
DintersectionWithIndexSignatures.errors.txt1 tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts(17,1): error TS2322: …
4 tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts(27,10): error TS2339:…
5 tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts(29,7): error TS2322: …
8 tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts(35,1): error TS2322: …
13 ==== tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts (4 errors) ====
35 !!! related TS2728 tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts:1:…
54 !!! related TS2728 tests/cases/conformance/types/intersection/intersectionWithIndexSignatures.ts:29…
DtypeParameterAsBaseType.errors.txt3 …s(7,24): error TS2312: An interface can only extend an object type or intersection of object types…
4 …s(8,28): error TS2312: An interface can only extend an object type or intersection of object types…
20 !!! error TS2312: An interface can only extend an object type or intersection of object types with …
23 !!! error TS2312: An interface can only extend an object type or intersection of object types with …
/third_party/flutter/skia/third_party/externals/sdl/test/
Dtestautomation_rect.c19 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/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/table/
DRangeException.java32 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/wpa_supplicant/wpa_supplicant-2.9/src/p2p/
Dp2p_invitation.c186 struct p2p_channels all_channels, intersection, *channels = NULL; in p2p_process_invitation_req() local
253 &intersection); in p2p_process_invitation_req()
254 p2p_channels_dump(p2p, "intersection", &intersection); in p2p_process_invitation_req()
260 &go, group_bssid, &op_freq, persistent, &intersection, in p2p_process_invitation_req()
266 &intersection); in p2p_process_invitation_req()
267 p2p_channels_dump(p2p, "intersection(GO)", &intersection); in p2p_process_invitation_req()
268 if (intersection.reg_classes == 0) { in p2p_process_invitation_req()
285 if (!p2p_channels_includes(&intersection, reg_class, channel)) in p2p_process_invitation_req()
294 channels = &intersection; in p2p_process_invitation_req()
313 p2p_channels_includes(&intersection, in p2p_process_invitation_req()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/p2p/
Dp2p_invitation.c186 struct p2p_channels all_channels, intersection, *channels = NULL; in p2p_process_invitation_req() local
253 &intersection); in p2p_process_invitation_req()
254 p2p_channels_dump(p2p, "intersection", &intersection); in p2p_process_invitation_req()
260 &go, group_bssid, &op_freq, persistent, &intersection, in p2p_process_invitation_req()
266 &intersection); in p2p_process_invitation_req()
267 p2p_channels_dump(p2p, "intersection(GO)", &intersection); in p2p_process_invitation_req()
268 if (intersection.reg_classes == 0) { in p2p_process_invitation_req()
285 if (!p2p_channels_includes(&intersection, reg_class, channel)) in p2p_process_invitation_req()
294 channels = &intersection; in p2p_process_invitation_req()
313 p2p_channels_includes(&intersection, in p2p_process_invitation_req()
[all …]
Dp2p_go_neg.c42 struct p2p_channels intersection; in p2p_peer_channels_check() local
78 p2p_channels_intersect(own, &dev->channels, &intersection); in p2p_peer_channels_check()
82 (int) intersection.reg_classes); in p2p_peer_channels_check()
83 if (intersection.reg_classes == 0) { in p2p_peer_channels_check()
384 struct p2p_channels *intersection) in p2p_reselect_channel() argument
398 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel()
409 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel()
420 !p2p_channels_includes(intersection, p2p->op_reg_class, in p2p_reselect_channel()
424 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel()
433 !p2p_channels_includes(intersection, p2p->op_reg_class, in p2p_reselect_channel()
[all …]
/third_party/typescript/tests/cases/compiler/
DspreadIntersection.ts1 var intersection: { a: number } & { b: string }; variable
4 var o1 = { ...intersection };
7 var o2 = { ...intersection, c: false };
/third_party/gstreamer/gstplugins_good/gst/shapewipe/
Dgstshapewipe.c358 GstCaps *intersection; in gst_shape_wipe_video_sink_getcaps() local
360 intersection = gst_caps_intersect (tmp, ret); in gst_shape_wipe_video_sink_getcaps()
363 ret = intersection; in gst_shape_wipe_video_sink_getcaps()
388 GstCaps *intersection, *tmp2; in gst_shape_wipe_video_sink_getcaps() local
392 intersection = gst_caps_intersect (tmp, tmp2); in gst_shape_wipe_video_sink_getcaps()
395 tmp = intersection; in gst_shape_wipe_video_sink_getcaps()
407 intersection = gst_caps_intersect (tmp, ret); in gst_shape_wipe_video_sink_getcaps()
410 ret = intersection; in gst_shape_wipe_video_sink_getcaps()
481 GstCaps *intersection; in gst_shape_wipe_mask_sink_getcaps() local
483 intersection = gst_caps_intersect (ret, tmp); in gst_shape_wipe_mask_sink_getcaps()
[all …]
/third_party/node/deps/npm/node_modules/fs-vacuum/test/
Dother-directories-no-purge.js68 var intersection = path.join(testBase, 'of')
70 stat = statSync(intersection)
71 }, intersection + ' can be statted')
72 t.ok(stat && stat.isDirectory(), intersection + ' is still a directory')

12345678910>>...17