Home
last modified time | relevance | path

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

12345678910>>...17

/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/vk-gl-cts/external/vulkan-docs/src/chapters/
Draytraversal.txt27 [[ray-intersection-candidate-determination]]
120 An _intersection candidate_ is a unique point of intersection between a ray
135 (where latexmath:[t = {-{z_r}\over{||\mathbf{d}||}}]), an intersection
151 [[raytraversal-ray-intersection-candidate-diagram]]
152 image::{images}/ray_intersection_candidate.svg[align="center",title="Ray intersection candidate",op…
172 an intersection may be detected on the emitting surface.
177 For a motion primitive or a motion instance, the positions for intersection
190 For triangle intersection candidates, the [eq]#b# and [eq]#c#
199 Once an intersection candidate is determined, it proceeds through the
202 . <<ray-intersection-culling>>
[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; }
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 …]
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 …]
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 '…
8 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(25,1): error TS2322: Type '…
12 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(26,1): error TS2322: Type '…
15 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(27,1): error TS2322: Type '…
17 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(28,1): error TS2322: Type '…
20 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(29,1): error TS2322: Type '…
22 tests/cases/conformance/types/intersection/intersectionAndUnionTypes.ts(31,1): error TS2322: Type '…
25 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; }
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…
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(23,15): error TS2540: Cannot…
4 tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts(25,15): error TS2540: Cannot…
7 ==== tests/cases/conformance/types/intersection/intersectionTypeReadonly.ts (4 errors) ====
DintersectionTypeInference.errors.txt1 tests/cases/conformance/types/intersection/intersectionTypeInference.ts(5,5): error TS2322: Type 'T…
4 tests/cases/conformance/types/intersection/intersectionTypeInference.ts(6,5): error TS2322: Type 'U…
9 ==== tests/cases/conformance/types/intersection/intersectionTypeInference.ts (2 errors) ====
19 !!! related TS2208 tests/cases/conformance/types/intersection/intersectionTypeInference.ts:1:17: Th…
25 !!! related TS2208 tests/cases/conformance/types/intersection/intersectionTypeInference.ts:1:20: Th…
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/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
77 p2p_channels_intersect(own, &dev->channels, &intersection); in p2p_peer_channels_check()
81 (int) intersection.reg_classes); in p2p_peer_channels_check()
82 if (intersection.reg_classes == 0) { in p2p_peer_channels_check()
383 struct p2p_channels *intersection) in p2p_reselect_channel() argument
397 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel()
408 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel()
419 !p2p_channels_includes(intersection, p2p->op_reg_class, in p2p_reselect_channel()
423 p2p_channels_includes(intersection, op_reg_class, op_channel)) { in p2p_reselect_channel()
432 !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/gstreamer/gstreamer/docs/random/wtay/
Dcapsnego2-docs101 GstCaps intersection
167 is at least READY. The intersection between two pads is made at connect time,
175 Then the intersection between those caps is made, this will give us all the
177 application can provide additional caps, the pad intersection is also made with
180 The intersection and the optional application caps are stored in the two pads.
182 If the intersection is NULL, the two pads have no common types and the connection
185 If the intersection is a fixed caps, this means there is only one possible media type
189 intersection. Depending on the result of the connect function the connection is
192 If the intersection is fixed and the pad connect functions agreed to the caps,
209 ! 2. when performing the connection, the intersection between the two sets of caps
[all …]

12345678910>>...17