/third_party/vixl/test/aarch64/ |
H A D | test-api-aarch64.cc | 1398 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(Registe in TEST() [all...] |
/third_party/typescript/tests/baselines/reference/ |
H A D | conditionalTypes2.js | 95 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>> 180 [K in Union]: Exclude<ProductUnion, { f1: K }> 187 [K in Union]: Exclude<ProductUnion, Exclude<ProductUnion, { f1: K }>> 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<Unio [all...] |
H A D | infiniteConstraints.js | 4 type T1<B extends { [K in keyof B]: Extract<B[Exclude<keyof B, K>], { val: string }>["val"] }> = B; 5 type T2<B extends { [K in keyof B]: B[Exclude<keyof B, K>]["val"] }> = B; 22 [K in keyof T]: Extract<T[K], Value>["val"] extends Extract<T[Exclude<keyof T, K>], Value>["val"]
|
H A D | ramdaToolsNoInfinite2.js | 31 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>>; 76 declare module "Union/Exclude" { 79 export type Exclude<U extends Union, M extends Union> = U extends M ? never : U; 108 export type _ObjectOf<L extends object> = Has<keyof L, keyof List> extends 1 ? number extends At<L, 'length'> ? _Omit<L, Exclude<keyof any[], number>> : _Omit<L, keyof any[]> : L; 113 import { Exclude } from "Union/Exclude"; 117 export type Keys<L extends List> = Exclude<UKey [all...] |
H A D | mappedTypeAsClauses.js | 140 type TS3<T> = keyof { [P in keyof T as Exclude<P, 'a' | 'b' | 'c'>]: string }; 150 type TN3<T> = keyof { [P in keyof T as Exclude<Exclude<Exclude<P, 'c'>, 'b'>, 'a'>]: string }; 307 [P in keyof T as Exclude<P, 'a' | 'b' | 'c'>]: string;
328 [P in keyof T as Exclude<Exclude<Exclude<P, 'c'>, 'b'>, 'a'>]: string;
|
H A D | mappedTypeUnionConstraintInferences.js | 2 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; 37 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
H A D | twiceNestedKeyofIndexInference.js | 2 type Set1<T, K1 extends keyof T> = T extends any[] ? T : Pick<T, Exclude<keyof T, K1>> & { 6 type Set2<T, K1 extends keyof T, K2 extends keyof T[K1]> = T extends any[] ? T : Pick<T, Exclude<keyof T, K1>> & {
|
H A D | conditionalTypes1.js | 2 type T00 = Exclude<"a" | "b" | "c" | "d", "a" | "c" | "f">; // "b" | "d" 5 type T02 = Exclude<string | number | (() => void), Function>; // string | number 37 type T10 = Exclude<Options, { k: "a" | "b" }>; // { k: "c", c: boolean } 40 type T12 = Exclude<Options, { k: "a" } | { k: "b" }>; // { k: "c", c: boolean } 43 type T14 = Exclude<Options, { q: "a" }>; // Options 327 type NonFooKeys2<T extends object> = Exclude<keyof T, 'foo'>; 463 type T00 = Exclude<"a" | "b" | "c" | "d", "a" | "c" | "f">;
465 type T02 = Exclude<string | number | (() => void), Function>;
485 type T10 = Exclude<Options, {
491 type T12 = Exclude<Option [all...] |
H A D | conditionalTypesSimplifyWhenTrivial.js | 3 params: Pick<Params, Exclude<keyof Params, never>>, 6 function fn2<T>(x: Exclude<T, never>) {
|
H A D | mappedTypeConstraints.js | 6 function f1<T extends { a: string, b: string }>(obj: Pick<T, Exclude<keyof T, 'a'>>) { 20 function f4<T extends { a: string, b: string }>(obj: Record<Exclude<keyof T, 'b'> | 'c', string>) {
|
H A D | keyRemappingKeyofResult.js | 5 type Okay = Exclude<keyof Orig, never> 15 type Oops = Exclude<keyof Remapped, never>
|
H A D | propTypeValidatorInference.js | 8 export type RequiredKeys<V> = { [K in keyof V]-?: Exclude<V[K], undefined> extends Validator<infer T> ? IsOptional<T> extends true ? never : K : never }[keyof V]; 9 export type OptionalKeys<V> = Exclude<keyof V, RequiredKeys<V>>;
|
H A D | overloadedConstructorFixesInferencesAppropriately.js | 12 readonly children: (result: Exclude<TResult, ErrorResult>) => string;
|
H A D | circularlySimplifyingConditionalTypesNoCrash.js | 2 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
|
H A D | intersectionWithIndexSignatures.js | 22 type constr<Source, Tgt> = { [K in keyof Source]: string } & Pick<Tgt, Exclude<keyof Tgt, keyof Source>>;
|
H A D | inferTypeConstraintInstantiationCircularity.js | 40 type requiredKeys<T extends object> = Exclude<keyof T, optionalKeys<T>>;
|
H A D | jsxNamespaceGlobalReexport.js | 9 Pick<Props, Exclude<keyof Props, keyof Defaults>>
|
/third_party/skia/third_party/externals/tint/tools/src/glob/ |
H A D | glob.go | 134 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopRerollPass.cpp | 412 const SmallInstructionSet &Exclude, 416 const SmallInstructionSet &Exclude, 421 const SmallInstructionSet &Exclude, 685 Instruction *Root, const SmallInstructionSet &Exclude, in collectInLoopUserSet() 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() 727 collectInLoopUserSet(Root, Exclude, Final, Users); in collectInLoopUserSet() 1018 SmallInstructionSet Exclude; in collectUsedInstructions() local 1020 Exclude in collectUsedInstructions() 684 collectInLoopUserSet( Instruction *Root, const SmallInstructionSet &Exclude, const SmallInstructionSet &Final, DenseSet<Instruction *> &Users) collectInLoopUserSet() argument 721 collectInLoopUserSet( const SmallInstructionVector &Roots, const SmallInstructionSet &Exclude, const SmallInstructionSet &Final, DenseSet<Instruction *> &Users) collectInLoopUserSet() argument 1078 nextInstr(int Val, UsesTy &In, const SmallInstructionSet &Exclude, UsesTy::iterator *StartI) nextInstr() argument [all...] |
/third_party/node/deps/v8/tools/dev/ |
H A D | gen-tags.py | 60 def Exclude(fullpath, exclude_arches): function 86 if Exclude(fullpath, exclude_arches): continue
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceRegistersX8632.h | 345 TargetLowering::RegSetMask Exclude) { in getRegisterSet() 359 if (scratch && (Exclude & ::Ice::TargetLowering::RegSet_CallerSave)) \ in getRegisterSet() 361 if (preserved && (Exclude & ::Ice::TargetLowering::RegSet_CalleeSave)) \ in getRegisterSet() 363 if (stackptr && (Exclude & ::Ice::TargetLowering::RegSet_StackPointer)) \ in getRegisterSet() 365 if (frameptr && (Exclude & ::Ice::TargetLowering::RegSet_FramePointer)) \ in getRegisterSet() 343 getRegisterSet(const ::Ice::ClFlags & , TargetLowering::RegSetMask Include, TargetLowering::RegSetMask Exclude) getRegisterSet() argument
|
H A D | IceRegistersX8664.h | 349 TargetLowering::RegSetMask Exclude) { in getRegisterSet() 363 if (scratch && (Exclude & TargetLowering::RegSet_CallerSave)) \ in getRegisterSet() 365 if (preserved && (Exclude & TargetLowering::RegSet_CalleeSave)) \ in getRegisterSet() 367 if (stackptr && (Exclude & TargetLowering::RegSet_StackPointer)) \ in getRegisterSet() 369 if (frameptr && (Exclude & TargetLowering::RegSet_FramePointer)) \ in getRegisterSet() 347 getRegisterSet(const ::Ice::ClFlags &Flags, TargetLowering::RegSetMask Include, TargetLowering::RegSetMask Exclude) getRegisterSet() argument
|
/third_party/vixl/test/ |
H A D | test-use-scratch-register-scope.cc | 213 local_temps.Exclude(r1, r2); in TEST_AARCH32() 214 local_temps.Exclude(s1, q1); in TEST_AARCH32() 242 local_temps.Exclude(s2, d3); in TEST_AARCH32()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/ |
H A D | ArgList.cpp | 124 ArrayRef<OptSpecifier> Exclude = None; in AddAllArgs() local 125 AddAllArgsExcept(Output, Ids, Exclude); in AddAllArgs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Transforms/ |
H A D | Instrumentation.h | 84 std::string Exclude; member
|