Home
last modified time | relevance | path

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

/third_party/typescript/src/linter/
DTypeScriptLinterConfig.ts59 LinterConfig.nodeDesc[FaultID.IntersectionType] = "intersection types and type literals";
181 [SyntaxKind.IntersectionType, FaultID.IntersectionType],
DProblems.ts23 ImportFromPath, FunctionExpression, IntersectionType, enumerator
63 faultsAttrs[FaultID.IntersectionType] = { cookBookRef: "19", };
/third_party/typescript/src/compiler/
Dtracing.ts255 …intersectionTypes: (type.flags & TypeFlags.Intersection) ? (type as IntersectionType).types.map(t …
Dchecker.ts4692 …ags & TypeFlags.Union ? formatUnionTypes((<UnionType>type).types) : (<IntersectionType>type).types;
7868 case SyntaxKind.IntersectionType:
9050 …rType.flags & TypeFlags.Intersection ? find((baseConstructorType as IntersectionType).types, t => …
9223 return some((<IntersectionType>type).types, check);
9566 … type.flags & TypeFlags.Intersection && every((<IntersectionType>type).types, isValidBaseType));
10204 …const types = sameMap((<IntersectionType>type).types, t => getTypeWithThisArgument(t, thisArgument…
10205 return types !== (<IntersectionType>type).types ? getIntersectionType(types) : type;
10647 function resolveIntersectionTypeMembers(type: IntersectionType) {
11034 resolveIntersectionTypeMembers(<IntersectionType>type);
11370 function getApparentTypeOfIntersectionType(type: IntersectionType) {
[all …]
Dtypes.ts225 IntersectionType, enumerator
662 | SyntaxKind.IntersectionType
1611 readonly kind: SyntaxKind.IntersectionType;
5204 export type ObjectFlagsType = NullableType | ObjectType | UnionType | IntersectionType;
5233 export type BaseType = ObjectType | IntersectionType | TypeVariable; // Also `any` and `object`
5346 export interface IntersectionType extends UnionOrIntersectionType {
5351 export type StructuredType = ObjectType | UnionType | IntersectionType;
DvisitorPublic.ts521 case SyntaxKind.IntersectionType:
Demitter.ts1393 case SyntaxKind.IntersectionType:
Dparser.ts191 case SyntaxKind.IntersectionType:
/third_party/typescript/src/compiler/factory/
DparenthesizerRules.ts371 case SyntaxKind.IntersectionType:
DnodeTests.ts197 return node.kind === SyntaxKind.IntersectionType;
DnodeFactory.ts1884 …UnionOrIntersectionTypeNode(kind: SyntaxKind.UnionType | SyntaxKind.IntersectionType, types: reado…
1909 …return <IntersectionTypeNode>createUnionOrIntersectionTypeNode(SyntaxKind.IntersectionType, types);
/third_party/typescript/src/services/formatting/
DsmartIndenter.ts642 case SyntaxKind.IntersectionType:
Drules.ts453 case SyntaxKind.IntersectionType:
/third_party/typescript/src/services/
Dtypes.ts67 isIntersection(): this is IntersectionType; property
Dservices.ts488 isIntersection(): this is IntersectionType {
/third_party/flutter/skia/src/gpu/
DGrDistanceFieldGenFromVector.cpp445 enum IntersectionType { enum
/third_party/skia/src/gpu/
DGrDistanceFieldGenFromVector.cpp430 enum IntersectionType { enum
/third_party/typescript/src/compiler/transformers/
Dts.ts396 case SyntaxKind.IntersectionType:
1569 case SyntaxKind.IntersectionType:
/third_party/typescript/tests/baselines/reference/api/
Dtypescript.d.ts291 IntersectionType = 184, enumerator
936 readonly kind: SyntaxKind.IntersectionType;
2614 export type BaseType = ObjectType | IntersectionType | TypeVariable;
2667 export interface IntersectionType extends UnionOrIntersectionType { interface
2669 export type StructuredType = ObjectType | UnionType | IntersectionType;
5594 isIntersection(): this is IntersectionType; property
7595 IntersectionType = 23,
Dtsserverlibrary.d.ts291 IntersectionType = 184, enumerator
936 readonly kind: SyntaxKind.IntersectionType;
2614 export type BaseType = ObjectType | IntersectionType | TypeVariable;
2667 export interface IntersectionType extends UnionOrIntersectionType { interface
2669 export type StructuredType = ObjectType | UnionType | IntersectionType;
5594 isIntersection(): this is IntersectionType; property
11378 IntersectionType = 23,
/third_party/typescript/lib/
Dtypescript.d.ts291 IntersectionType = 184, enumerator
925 readonly kind: SyntaxKind.IntersectionType;
2581 export type BaseType = ObjectType | IntersectionType | TypeVariable;
2634 export interface IntersectionType extends UnionOrIntersectionType { interface
2636 export type StructuredType = ObjectType | UnionType | IntersectionType;
5353 isIntersection(): this is IntersectionType; property
DtypescriptServices.d.ts291 IntersectionType = 184, enumerator
925 readonly kind: SyntaxKind.IntersectionType;
2581 export type BaseType = ObjectType | IntersectionType | TypeVariable;
2634 export interface IntersectionType extends UnionOrIntersectionType { interface
2636 export type StructuredType = ObjectType | UnionType | IntersectionType;
5353 isIntersection(): this is IntersectionType; property
Dtsserverlibrary.d.ts291 IntersectionType = 184, enumerator
925 readonly kind: SyntaxKind.IntersectionType;
2581 export type BaseType = ObjectType | IntersectionType | TypeVariable;
2634 export interface IntersectionType extends UnionOrIntersectionType { interface
2636 export type StructuredType = ObjectType | UnionType | IntersectionType;
5353 isIntersection(): this is IntersectionType; property
/third_party/typescript/doc/
Dspec-ARCHIVED.md1570 &emsp;&emsp;&emsp;*IntersectionType*
1748 &emsp;&emsp;*IntersectionType:*
6191 &emsp;&emsp;&emsp;*IntersectionType*
6261 &emsp;&emsp;*IntersectionType:*
/third_party/skia/third_party/externals/spirv-cross/
Dspirv_glsl.cpp12587 GLSL_RAY_QUERY_GET_OP2(IntersectionType); in emit_instruction()