/third_party/typescript/tests/baselines/reference/ |
H A D | omitTypeTestErrors01.js | 8 export type Bar = Omit<Foo, "c">; 9 export type Baz = Omit<Foo, "b" | "c">; 41 export type Bar = Omit<Foo, "c">;
42 export type Baz = Omit<Foo, "b" | "c">;
|
H A D | omitTypeTests01.js | 8 export type Bar = Omit<Foo, "c">; 9 export type Baz = Omit<Foo, "b" | "c">; 41 export type Bar = Omit<Foo, "c">;
42 export type Baz = Omit<Foo, "b" | "c">;
|
H A D | mappedTypeUnionConstraintInferences.js | 2 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; 3 export declare type PartialProperties<T, K extends keyof T> = Partial<Pick<T, K>> & Omit<T, K>; 37 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
38 export declare type PartialProperties<T, K extends keyof T> = Partial<Pick<T, K>> & Omit<T, K>;
|
H A D | indexedAccessRetainsIndexSignature.js | 4 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> 10 type O = Omit<{ a: number, b: string }, 'a'>
|
H A D | circularlySimplifyingConditionalTypesNoCrash.js | 2 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; 18 ): ComponentClass<Omit<P, keyof Shared<TInjectedProps, P>> & TNeedsProps> & { WrappedComponent: ComponentClass<P> } 19 } // Then intersected with and indexed via Omit and &
|
H A D | complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.js | 18 type Omit<T, K extends keyof T> = Pick< 29 Partial<Omit<T, 'type' | 'id'>> & { localChannelId: string };
|
H A D | identicalTypesNoDifferByCheckOrder.js | 8 type SomePropsX = Required<Pick<SomeProps, "x">> & Omit<SomeProps, "x">; 16 type SomePropsCloneX = Required<Pick<SomePropsClone, "x">> & Omit<SomePropsClone, "x">;
|
H A D | omitTypeHelperModifiers01.js | 9 type B = Omit<A, 'a'>;
|
H A D | intersectionsAndOptionalProperties.js | 16 type From = { field: null } & Omit<To, 'field'>;
|
H A D | jsxComplexSignatureHasApplicabilityError.js | 17 Omit<WrappedProps, "multi">, 45 export type Omit<T, K extends keyof any> = T extends any ? Pick<T, Exclude<keyof T, K>> : never; 46 export type Overwrite<T, U> = Omit<T, keyof T & keyof U> & U;
|
H A D | reactReduxLikeDeferredInferenceAllowsAssignment.js | 69 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; 77 Omit<GetProps<C>, keyof Shared<TInjectedProps, GetProps<C>>> & TNeedsProps
|
H A D | unionAndIntersectionInference3.js | 72 ): ComponentClass<Omit<P, keyof RouteComponentProps>>;
|
H A D | conditionalTypes1.js | 296 type Omit<T extends object> = { [P in keyof T]: If<Eq<T[P], never>, never, P>; }[keyof T]; 298 type A = Omit<{ a: void; b: never; }>; // 'a'
|
H A D | ramdaToolsNoInfinite2.js | 29 declare module "Object/Omit" { 36 export type Omit<O extends object, K extends Key> = O extends unknown ? _Omit<O, K> : never; 103 import { _Omit } from "Object/Omit"; 120 import { _Omit } from "Object/Omit";
|
/third_party/node/deps/v8/src/codegen/ |
H A D | source-position-table.cc | 157 if (Omit()) return; in AddPosition() 177 DCHECK(!Omit()); in ToSourcePositionTable() 206 DCHECK(!Omit()); in ToSourcePositionTableVector()
|
H A D | source-position-table.h | 62 inline bool Omit() const { return mode_ != RECORD_SOURCE_POSITIONS; } in Omit() function in v8::internal::SourcePositionTableBuilder
|
/third_party/mesa3d/.gitlab-ci/common/ |
H A D | intel-gpu-freq.sh | 589 Omit min/max prefix to set both frequencies.
|
/third_party/node/deps/v8/src/interpreter/ |
H A D | bytecode-array-writer.cc | 71 source_position_table_builder_.Omit() in ToSourcePositionTable()
|