Home
last modified time | relevance | path

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

12345678910>>...14

/third_party/vixl/test/aarch64/
Dtest-api-aarch64.cc1398 temps.Exclude(w0); in TEST()
1399 temps.Exclude(x1); in TEST()
1400 temps.Exclude(WRegister(2)); in TEST()
1401 temps.Exclude(XRegister(3)); in TEST()
1402 temps.Exclude(Register(w4)); in TEST()
1403 temps.Exclude(Register(x5)); in TEST()
1404 temps.Exclude(CPURegister(w6)); in TEST()
1405 temps.Exclude(CPURegister(x7)); in TEST()
1408 temps.Exclude(x8, w9, x10); in TEST()
1409 temps.Exclude(Register(w12), Register(x13), Register(w14)); in TEST()
[all …]
/third_party/typescript/tests/baselines/reference/
DmappedTypeConstraints.types14 function f1<T extends { a: string, b: string }>(obj: Pick<T, Exclude<keyof T, 'a'>>) {
15 >f1 : <T extends { a: string; b: string; }>(obj: Pick<T, Exclude<keyof T, 'a'>>) => void
18 >obj : Pick<T, Exclude<keyof T, "a">>
22 >obj : Pick<T, Exclude<keyof T, "a">>
64 function f4<T extends { a: string, b: string }>(obj: Record<Exclude<keyof T, 'b'> | 'c', string>) {
65 >f4 : <T extends { a: string; b: string; }>(obj: Record<Exclude<keyof T, 'b'> | 'c', string>) => vo…
68 >obj : Record<"c" | Exclude<keyof T, "b">, string>
72 >obj : Record<"c" | Exclude<keyof T, "b">, string>
77 >obj : Record<"c" | Exclude<keyof T, "b">, string>
DconditionalTypesSimplifyWhenTrivial.types3 >fn1 : <Params>(params: Pick<Params, Exclude<keyof Params, never>>) => Params
4 …arams>( params: Pick<Params, Exclude<keyof Params, never>>,): Params => params : <Params>(param…
6 params: Pick<Params, Exclude<keyof Params, never>>,
7 >params : Pick<Params, Exclude<keyof Params, never>>
10 >params : Pick<Params, Exclude<keyof Params, never>>
12 function fn2<T>(x: Exclude<T, never>) {
13 >fn2 : <T>(x: Exclude<T, never>) => void
14 >x : Exclude<T, never>
18 >x : Exclude<T, never>
22 >x : Exclude<T, never>
DsmartSelection_complex.baseline1 …> extends true ? K extends keyof T ? T[K] : P[/**/K] : P[K]; } & Pick<T, Exclude<keyof T, keyof P>…
10 …P[K]> extends true ? K extends keyof T ? T[K] : P[K] : P[K]; } & Pick<T, Exclude<keyof T, keyof P>…
11 …P[K]> extends true ? K extends keyof T ? T[K] : P[K] : P[K]; } & Pick<T, Exclude<keyof T, keyof P>…
12 …P[K]> extends true ? K extends keyof T ? T[K] : P[K] : P[K]; } & Pick<T, Exclude<keyof T, keyof P>…
13 …P[K]> extends true ? K extends keyof T ? T[K] : P[K] : P[K]; } & Pick<T, Exclude<keyof T, keyof P>…
DconditionalTypes2.js95 partition2<U extends T>(predicate:(v:T)=>v is U): [Vector<U>,Vector<Exclude<T, U>>];
166 [K in Union]: Exclude<Union, K>
173 [K in Union]: Exclude<Union, Exclude<Union, K>> field
180 [K in Union]: Exclude<ProductUnion, { f1: K }>
187 [K in Union]: Exclude<ProductUnion, Exclude<ProductUnion, { f1: K }>> field
371 partition2<U extends T>(predicate: (v: T) => v is U): [Vector<U>, Vector<Exclude<T, U>>];
430 [K in Union]: Exclude<Union, K>;
435 [K in Union]: Exclude<Union, Exclude<Union, K>>; field
440 [K in Union]: Exclude<ProductUnion, {
447 [K in Union]: Exclude<ProductUnion, Exclude<ProductUnion, { field
DmappedTypeWithAsClauseAndLateBoundProperty2.symbols2 export const thing = (null as any as { [K in keyof number[] as Exclude<K, "length">]: (number[])[K]…
5 >Exclude : Symbol(Exclude, Decl(lib.es5.d.ts, --, --))
DramdaToolsNoInfinite2.types57 import { Exclude } from "Union/Exclude";
58 >Exclude : any
66 export type _Omit<O extends object, K extends Key> = _Pick<O, Exclude<Keys<O>, K>>;
139 export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
148 declare module "Union/Exclude" {
149 >"Union/Exclude" : typeof import("Union/Exclude")
154 export type Exclude<U extends Union, M extends Union> = U extends M ? never : U;
155 >Exclude : Exclude<U, M>
211 …yof L, keyof List> extends 1 ? number extends At<L, 'length'> ? _Omit<L, Exclude<keyof any[], numb…
220 import { Exclude } from "Union/Exclude";
[all …]
DinfiniteConstraints.types4 type T1<B extends { [K in keyof B]: Extract<B[Exclude<keyof B, K>], { val: string }>["val"] }> = B;
8 type T2<B extends { [K in keyof B]: B[Exclude<keyof B, K>]["val"] }> = B;
42 … { [K in keyof T]: Extract<T[K], Value<string>>["val"] extends Extract<T[Exclude<keyof T, K>], Val…
45 … [K in keyof T]: Extract<T[K], Value>["val"] extends Extract<T[Exclude<keyof T, K>], Value>["val"]
55 … { [K in keyof T]: Extract<T[K], Value<string>>["val"] extends Extract<T[Exclude<keyof T, K>], Val…
69 … { [K in keyof T]: Extract<T[K], Value<string>>["val"] extends Extract<T[Exclude<keyof T, K>], Val…
79 … { [K in keyof T]: Extract<T[K], Value<string>>["val"] extends Extract<T[Exclude<keyof T, K>], Val…
DmappedTypeWithAsClauseAndLateBoundProperty.symbols5 declare let src2: { [K in keyof number[] as Exclude<K, "length">]: (number[])[K] };
8 >Exclude : Symbol(Exclude, Decl(lib.es5.d.ts, --, --))
DcomplicatedIndexesOfIntersectionsAreInferencable.types15 …donly<FormikConfig<Values> & ExtraProps>, "validate" | "initialValues" | Exclude<keyof ExtraProps,…
18 …donly<FormikConfig<Values> & ExtraProps>, "validate" | "initialValues" | Exclude<keyof ExtraProps,…
21 …: Pick<Readonly<FormikConfig<Values> & ExtraProps>, "validate" | "initialValues" | Exclude<keyof E…
27 …donly<FormikConfig<Values> & ExtraProps>, "validate" | "initialValues" | Exclude<keyof ExtraProps,…
DinfiniteConstraints.errors.txt1 …traints.ts(4,37): error TS2536: Type '"val"' cannot be used to index type 'B[Exclude<keyof B, K>]'.
10 …type T1<B extends { [K in keyof B]: Extract<B[Exclude<keyof B, K>], { val: string }>["val"] }> = B;
11 type T2<B extends { [K in keyof B]: B[Exclude<keyof B, K>]["val"] }> = B;
13 !!! error TS2536: Type '"val"' cannot be used to index type 'B[Exclude<keyof B, K>]'.
30 … [K in keyof T]: Extract<T[K], Value>["val"] extends Extract<T[Exclude<keyof T, K>], Value>["val"]
DinfiniteConstraints.symbols4 type T1<B extends { [K in keyof B]: Extract<B[Exclude<keyof B, K>], { val: string }>["val"] }> = B;
11 >Exclude : Symbol(Exclude, Decl(lib.es5.d.ts, --, --))
17 type T2<B extends { [K in keyof B]: B[Exclude<keyof B, K>]["val"] }> = B;
23 >Exclude : Symbol(Exclude, Decl(lib.es5.d.ts, --, --))
80 … [K in keyof T]: Extract<T[K], Value>["val"] extends Extract<T[Exclude<keyof T, K>], Value>["val"]
89 >Exclude : Symbol(Exclude, Decl(lib.es5.d.ts, --, --))
DramdaToolsNoInfinite2.js31 import { Exclude } from "Union/Exclude";
34 export type _Omit<O extends object, K extends Key> = _Pick<O, Exclude<Keys<O>, K>>;
71 export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
79 export type Exclude<U extends Union, M extends Union> = U extends M ? never : U;
108 …yof L, keyof List> extends 1 ? number extends At<L, 'length'> ? _Omit<L, Exclude<keyof any[], numb…
113 import { Exclude } from "Union/Exclude";
117 export type Keys<L extends List> = Exclude<UKeys<L>, keyof any[]> | number;
138 import { Exclude } from "Union/Exclude";
141 export type NonNullable<U extends Union> = Exclude<U, undefined | null>;
150 import { Exclude } from "Union/Exclude";
[all …]
/third_party/typescript/src/testRunner/unittests/services/
DtextChanges.ts141 …mentContaining("y", sourceFile), { leadingTriviaOption: textChanges.LeadingTriviaOption.Exclude });
144 …ntContaining("y", sourceFile), { trailingTriviaOption: textChanges.TrailingTriviaOption.Exclude });
147 …aOption: textChanges.LeadingTriviaOption.Exclude, trailingTriviaOption: textChanges.TrailingTrivia…
168 { leadingTriviaOption: textChanges.LeadingTriviaOption.Exclude });
172 { trailingTriviaOption: textChanges.TrailingTriviaOption.Exclude });
176 …aOption: textChanges.LeadingTriviaOption.Exclude, trailingTriviaOption: textChanges.TrailingTrivia…
253 …reateTestClass(), { leadingTriviaOption: textChanges.LeadingTriviaOption.Exclude, suffix: newLineC…
256 …ateTestClass(), { trailingTriviaOption: textChanges.TrailingTriviaOption.Exclude, suffix: newLineC…
259 …aOption: textChanges.LeadingTriviaOption.Exclude, trailingTriviaOption: textChanges.TrailingTrivia…
262 …aOption: textChanges.LeadingTriviaOption.Exclude, trailingTriviaOption: textChanges.TrailingTrivia…
[all …]
/third_party/node/deps/v8/build_overrides/
Dgtest.gni5 # Exclude support for registering main function in multi-process tests.
8 # Exclude support for platform-specific operations across unit tests.
11 # Exclude support for testing Objective C code on OS X and iOS.
14 # Exclude support for flushing coverage files on iOS.
/third_party/skia/third_party/externals/angle2/build_overrides/
Dgtest.gni7 # Exclude support for registering main function in multi-process tests.
10 # Exclude support for platform-specific operations across unit tests.
13 # Exclude support for testing Objective C code on OS X and iOS.
16 # Exclude support for flushing coverage files on iOS.
/third_party/skia/third_party/externals/tint/tools/src/glob/
Dglob.go134 Exclude []string
146 case len(rule.Include) > 0 && len(rule.Exclude) > 0:
165 case len(rule.Exclude) > 0:
166 tests := make([]match.Test, len(rule.Exclude))
167 for i, pattern := range rule.Exclude {
/third_party/spirv-tools/build_overrides/
Dgtest.gni15 # Exclude support for registering main function in multi-process tests.
18 # Exclude support for platform-specific operations across unit tests.
21 # Exclude support for testing Objective C code on OS X and iOS.
24 # Exclude support for flushing coverage files on iOS.
/third_party/typescript/tests/arkTSTest/testcase/arkts-no-utility-types/
Darkts-no-utility-types-3-error.ets17 type T0 = Exclude<"a" | "b" | "c", "a">;
19 type T1 = Exclude<"a" | "b" | "c", "a" | "b">;
21 type T2 = Exclude<string | number | (() => void), Function>;
28 type T3 = Exclude<Shape, { kind: "circle" }>
/third_party/skia/third_party/externals/spirv-tools/build_overrides/
Dgtest.gni15 # Exclude support for registering main function in multi-process tests.
18 # Exclude support for platform-specific operations across unit tests.
21 # Exclude support for testing Objective C code on OS X and iOS.
24 # Exclude support for flushing coverage files on iOS.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/build_overrides/
Dgtest.gni15 # Exclude support for registering main function in multi-process tests.
18 # Exclude support for platform-specific operations across unit tests.
21 # Exclude support for testing Objective C code on OS X and iOS.
24 # Exclude support for flushing coverage files on iOS.
/third_party/typescript/tests/cases/compiler/
DramdaToolsNoInfinite2.ts31 import { Exclude } from "Union/Exclude";
34 export type _Omit<O extends object, K extends Key> = _Pick<O, Exclude<Keys<O>, K>>;
71 export type Has<U extends Union, U1 extends Union> = Not<Extends<Exclude<U1, U>, U1>>;
79 export type Exclude<U extends Union, M extends Union> = U extends M ? never : U; alias
108 …yof L, keyof List> extends 1 ? number extends At<L, 'length'> ? _Omit<L, Exclude<keyof any[], numb…
113 import { Exclude } from "Union/Exclude";
117 export type Keys<L extends List> = Exclude<UKeys<L>, keyof any[]> | number;
138 import { Exclude } from "Union/Exclude";
141 export type NonNullable<U extends Union> = Exclude<U, undefined | null>;
150 import { Exclude } from "Union/Exclude";
[all …]
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes2.ts97 partition2<U extends T>(predicate:(v:T)=>v is U): [Vector<U>,Vector<Exclude<T, U>>];
168 [K in Union]: Exclude<Union, K>
175 [K in Union]: Exclude<Union, Exclude<Union, K>>
182 [K in Union]: Exclude<ProductUnion, { f1: K }>
189 [K in Union]: Exclude<ProductUnion, Exclude<ProductUnion, { f1: K }>>
/third_party/mesa3d/src/amd/ci/
Dradv-skips.txt1 # Exclude this test which might fail when a new extension is implemented.
4 # Exclude WSI related tests.
8 # Exclude this test which timeout most of the time.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLoopRerollPass.cpp412 const SmallInstructionSet &Exclude,
416 const SmallInstructionSet &Exclude,
421 const SmallInstructionSet &Exclude,
685 Instruction *Root, const SmallInstructionSet &Exclude, in collectInLoopUserSet() argument
703 if (L->contains(User) && !Exclude.count(User)) { in collectInLoopUserSet()
712 if (Op->hasOneUse() && L->contains(Op) && !Exclude.count(Op) && in collectInLoopUserSet()
723 const SmallInstructionSet &Exclude, in collectInLoopUserSet() argument
727 collectInLoopUserSet(Root, Exclude, Final, Users); in collectInLoopUserSet()
1018 SmallInstructionSet Exclude; in collectUsedInstructions() local
1020 Exclude.insert(DRS.Roots.begin(), DRS.Roots.end()); in collectUsedInstructions()
[all …]

12345678910>>...14