Home
last modified time | relevance | path

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

12345

/third_party/typescript/tests/baselines/reference/
DvarianceAnnotations.types49 type Invariant<in out T> = {
50 >Invariant : Invariant<T>
57 declare let super_invariant: Invariant<unknown>;
58 >super_invariant : Invariant<unknown>
60 declare let sub_invariant: Invariant<string>;
61 >sub_invariant : Invariant<string>
64 >super_invariant = sub_invariant : Invariant<string>
65 >super_invariant : Invariant<unknown>
66 >sub_invariant : Invariant<string>
69 >sub_invariant = super_invariant : Invariant<unknown>
[all …]
DvarianceAnnotations.js22 type Invariant<in out T> = {
26 declare let super_invariant: Invariant<unknown>;
27 declare let sub_invariant: Invariant<string>;
233 type Invariant<in out T> = {
236 declare let super_invariant: Invariant<unknown>;
237 declare let sub_invariant: Invariant<string>;
DconditionalTypes2.types12 interface Invariant<T> {
49 function f3<A, B extends A>(a: Invariant<A>, b: Invariant<B>) {
50 >f3 : <A, B extends A>(a: Invariant<A>, b: Invariant<B>) => void
51 >a : Invariant<A>
52 >b : Invariant<B>
55 >a = b : Invariant<B>
56 >a : Invariant<A>
57 >b : Invariant<B>
60 >b = a : Invariant<A>
61 >b : Invariant<B>
[all …]
DconditionalTypes2.errors.txt7 …al/conditionalTypes2.ts(24,5): error TS2322: Type 'Invariant<B>' is not assignable to type 'Invari…
20 …al/conditionalTypes2.ts(25,5): error TS2322: Type 'Invariant<A>' is not assignable to type 'Invari…
47 interface Invariant<T> {
71 function f3<A, B extends A>(a: Invariant<A>, b: Invariant<B>) {
74 !!! error TS2322: Type 'Invariant<B>' is not assignable to type 'Invariant<A>'.
89 !!! error TS2322: Type 'Invariant<A>' is not assignable to type 'Invariant<B>'.
DvarianceAnnotations.errors.txt5 …arianceAnnotations.ts(28,1): error TS2322: Type 'Invariant<string>' is not assignable to type 'Inv…
10 …rianceAnnotations.ts(29,1): error TS2322: Type 'Invariant<unknown>' is not assignable to type 'Inv…
96 type Invariant<in out T> = {
100 declare let super_invariant: Invariant<unknown>;
101 declare let sub_invariant: Invariant<string>;
105 !!! error TS2322: Type 'Invariant<string>' is not assignable to type 'Invariant<unknown>'.
112 !!! error TS2322: Type 'Invariant<unknown>' is not assignable to type 'Invariant<string>'.
DvarianceAnnotations.symbols53 type Invariant<in out T> = {
54 >Invariant : Symbol(Invariant, Decl(varianceAnnotations.ts, 18, 40))
64 declare let super_invariant: Invariant<unknown>;
66 >Invariant : Symbol(Invariant, Decl(varianceAnnotations.ts, 18, 40))
68 declare let sub_invariant: Invariant<string>;
70 >Invariant : Symbol(Invariant, Decl(varianceAnnotations.ts, 18, 40))
DconditionalTypes2.js10 interface Invariant<T> {
24 function f3<A, B extends A>(a: Invariant<A>, b: Invariant<B>) {
335 interface Invariant<T> {
340 declare function f3<A, B extends A>(a: Invariant<A>, b: Invariant<B>): void;
DconditionalTypes2.symbols22 interface Invariant<T> {
23 >Invariant : Symbol(Invariant, Decl(conditionalTypes2.ts, 6, 1))
27 >foo : Symbol(Invariant.foo, Decl(conditionalTypes2.ts, 8, 24))
75 function f3<A, B extends A>(a: Invariant<A>, b: Invariant<B>) {
81 >Invariant : Symbol(Invariant, Decl(conditionalTypes2.ts, 6, 1))
84 >Invariant : Symbol(Invariant, Decl(conditionalTypes2.ts, 6, 1))
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/
DvarianceAnnotations.ts24 type Invariant<in out T> = { alias
28 declare let super_invariant: Invariant<unknown>;
29 declare let sub_invariant: Invariant<string>;
/third_party/skia/third_party/externals/microhttpd/doc/
Dfdl-1.3.texi68 The ``Invariant Sections'' are certain Secondary Sections whose titles
69 are designated, as being those of Invariant Sections, in the notice
72 allowed to be designated as Invariant. The Document may contain zero
73 Invariant Sections. If the Document does not identify any Invariant
228 Preserve in that license notice the full lists of Invariant Sections
259 Preserve all the Invariant Sections of the Document,
269 to conflict in title with any Invariant Section.
279 list of Invariant Sections in the Modified Version's license notice.
308 Invariant Sections of all of the original documents, unmodified, and
309 list them all as Invariant Sections of your combined work in its
[all …]
/third_party/elfutils/doc/
DCOPYING-GFDL66 The "Invariant Sections" are certain Secondary Sections whose titles
67 are designated, as being those of Invariant Sections, in the notice
70 allowed to be designated as Invariant. The Document may contain zero
71 Invariant Sections. If the Document does not identify any Invariant
210 G. Preserve in that license notice the full lists of Invariant Sections
231 L. Preserve all the Invariant Sections of the Document,
237 or to conflict in title with any Invariant Section.
244 list of Invariant Sections in the Modified Version's license notice.
273 Invariant Sections of all of the original documents, unmodified, and
274 list them all as Invariant Sections of your combined work in its
[all …]
/third_party/glslang/Test/baseResults/
Dspv.layoutNested.vert.out171 MemberDecorate 63(S) 0 Invariant
173 MemberDecorate 63(S) 1 Invariant
175 MemberDecorate 63(S) 2 Invariant
177 Decorate 65(soutinv) Invariant
Dspv.300BuiltIns.vert.out19 MemberDecorate 8(gl_PerVertex) 0 Invariant
Dweb.builtins.vert.out17 OpDecorate %gl_Position Invariant
/third_party/typescript/tests/cases/conformance/types/conditional/
DconditionalTypes2.ts12 interface Invariant<T> { interface
26 function f3<A, B extends A>(a: Invariant<A>, b: Invariant<B>) {
/third_party/skia/third_party/externals/spirv-cross/shaders/asm/vert/
Dinvariant.sso.asm.vert14 OpDecorate %_entryPointOutput Invariant
Dinvariant.asm.vert14 OpDecorate %_entryPointOutput Invariant
Dinvariant-block.sso.asm.vert18 OpMemberDecorate %gl_PerVertex 0 Invariant
Dinvariant-block.asm.vert18 OpMemberDecorate %gl_PerVertex 0 Invariant
/third_party/skia/third_party/externals/spirv-cross/shaders-msl/asm/vert/
Dinvariant.msl21.asm.vert14 OpDecorate %_entryPointOutput Invariant
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DSimpleLoopUnswitch.cpp143 static void replaceLoopInvariantUses(Loop &L, Value *Invariant, in replaceLoopInvariantUses() argument
145 assert(!isa<Constant>(Invariant) && "Why are we unswitching on a constant?"); in replaceLoopInvariantUses()
148 for (auto UI = Invariant->use_begin(), UE = Invariant->use_end(); UI != UE;) { in replaceLoopInvariantUses()
423 for (Value *Invariant : Invariants) { in unswitchTrivialBranch()
424 dbgs() << " " << *Invariant << " == true"; in unswitchTrivialBranch()
425 if (Invariant != Invariants.back()) in unswitchTrivialBranch()
546 for (Value *Invariant : Invariants) in unswitchTrivialBranch()
547 replaceLoopInvariantUses(L, Invariant, *Replacement); in unswitchTrivialBranch()
2237 for (Value *Invariant : Invariants) in unswitchNontrivialInvariants()
2238 for (auto UI = Invariant->use_begin(), UE = Invariant->use_end(); in unswitchNontrivialInvariants()
/third_party/skia/third_party/externals/tint/test/shader_io/
Dinvariant.wgsl.expected.spvasm14 OpDecorate %value Invariant
Dinvariant_struct_member.wgsl.expected.spvasm16 OpDecorate %pos_1 Invariant
/third_party/json/docs/mkdocs/docs/features/
Djson_patch.md27 !!! success "Invariant"
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_ureg.h85 unsigned Invariant : 1; /* BOOL */ member
1035 dst.Invariant = 0; in ureg_dst_array_register()
1067 dst.Invariant = 0; in ureg_dst()
1159 dst.Invariant = 0; in ureg_dst_undef()

12345