Home
last modified time | relevance | path

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

123456789

/third_party/boost/boost/thread/detail/
Dmake_tuple_indices.hpp97 …Sp, std::size_t I0, std::size_t I1, std::size_t I2, std::size_t I3, std::size_t I4, std::size_t Ep>
98 struct make_indices_imp<Sp, tuple_indices<I0, I1 , I2, I3, I4>, Ep>
100 typedef typename make_indices_imp<Sp+1, tuple_indices<I0, I1, I2, I3, I4, Sp>, Ep>::type type;
102 …td::size_t I0, std::size_t I1, std::size_t I2, std::size_t I3, std::size_t I4, std::size_t I5, std…
103 struct make_indices_imp<Sp, tuple_indices<I0, I1 , I2, I3, I4, I5>, Ep>
105 … typedef typename make_indices_imp<Sp+1, tuple_indices<I0, I1, I2, I3, I4, I5, Sp>, Ep>::type type;
107 … Sp, std::size_t I0, std::size_t I1, std::size_t I2, std::size_t I3, std::size_t I4, std::size_t I5
110 struct make_indices_imp<Sp, tuple_indices<I0, I1 , I2, I3, I4, I5, I6>, Ep>
112 …typedef typename make_indices_imp<Sp+1, tuple_indices<I0, I1, I2, I3, I4, I5, I6, Sp>, Ep>::type t…
114 … Sp, std::size_t I0, std::size_t I1, std::size_t I2, std::size_t I3, std::size_t I4, std::size_t I5
[all …]
/third_party/typescript/tests/baselines/reference/
Dqualify.errors.txt3 tests/cases/compiler/qualify.ts(45,13): error TS2741: Property 'zeep' is missing in type 'I4' but r…
4 tests/cases/compiler/qualify.ts(46,13): error TS2740: Type 'I4' is missing the following properties…
5 tests/cases/compiler/qualify.ts(47,13): error TS2322: Type 'I4' is not assignable to type '() => I3…
6 Type 'I4' provides no match for the signature '(): I3'.
7 tests/cases/compiler/qualify.ts(48,13): error TS2322: Type 'I4' is not assignable to type '(k: I3) …
8 Type 'I4' provides no match for the signature '(k: I3): void'.
9 tests/cases/compiler/qualify.ts(49,13): error TS2741: Property 'k' is missing in type 'I4' but requ…
58 export interface I4 {
61 var v1:I4;
64 !!! error TS2741: Property 'zeep' is missing in type 'I4' but required in type 'I3'.
[all …]
DinterfaceImplementation1.types49 interface I4 {
64 var a:I4 = function(){
65 >a : I4
74 >a : I4
76 /*var b:I4 = C2;
80 var c:I4;
81 >c : I4
85 >c : I4
90 >c : I4
DinterfaceDeclaration2.symbols20 interface I4 { }
21 >I4 : Symbol(I4, Decl(interfaceDeclaration2.ts, 7, 17), Decl(interfaceDeclaration2.ts, 10, 3))
23 var I4:number;
24 >I4 : Symbol(I4, Decl(interfaceDeclaration2.ts, 7, 17), Decl(interfaceDeclaration2.ts, 10, 3))
Dmutrec.symbols78 interface I4 {
79 >I4 : Symbol(I4, Decl(mutrec.ts, 28, 6))
82 >y : Symbol(I4.y, Decl(mutrec.ts, 30, 14))
89 y:I4;
91 >I4 : Symbol(I4, Decl(mutrec.ts, 28, 6))
94 var i4:I4;
96 >I4 : Symbol(I4, Decl(mutrec.ts, 28, 6))
DinterfaceImplementation1.symbols57 interface I4 {
58 >I4 : Symbol(I4, Decl(interfaceImplementation1.ts, 21, 1))
78 var a:I4 = function(){
80 >I4 : Symbol(I4, Decl(interfaceImplementation1.ts, 21, 1))
88 /*var b:I4 = C2;
92 var c:I4;
94 >I4 : Symbol(I4, Decl(interfaceImplementation1.ts, 21, 1))
DinterfaceExtendingClassWithPrivates2.errors.txt3 …s/interfaceExtendingClassWithPrivates2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
4 Property 'x' is private in type 'Bar' but not in type 'I4'.
5 …s/interfaceExtendingClassWithPrivates2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
6 Property 'x' is private in type 'Foo' but not in type 'I4'.
26 interface I4 extends Foo, Bar { // error
28 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Bar'.
29 !!! error TS2430: Property 'x' is private in type 'Bar' but not in type 'I4'.
31 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Foo'.
32 !!! error TS2430: Property 'x' is private in type 'Foo' but not in type 'I4'.
DcircularTypeAliasForUnionWithClass.js15 type T4 = string | I4;
16 class I4 { class
35 var I4 = /** @class */ (function () {
36 function I4() { class in I4
38 return I4;
DinterfaceExtendingClassWithProtecteds2.errors.txt3 …interfaceExtendingClassWithProtecteds2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
4 Property 'x' is protected but type 'I4' is not a class derived from 'Bar'.
5 …interfaceExtendingClassWithProtecteds2.ts(12,11): error TS2430: Interface 'I4' incorrectly extends…
6 Property 'x' is protected but type 'I4' is not a class derived from 'Foo'.
26 interface I4 extends Foo, Bar { // error
28 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Bar'.
29 !!! error TS2430: Property 'x' is protected but type 'I4' is not a class derived from 'Bar'.
31 !!! error TS2430: Interface 'I4' incorrectly extends interface 'Foo'.
32 !!! error TS2430: Property 'x' is protected but type 'I4' is not a class derived from 'Foo'.
Dqualify.types84 export interface I4 {
88 var v1:I4;
89 >v1 : I4
94 >v1 : I4
99 >v1 : I4
104 >v1 : I4
110 >v1 : I4
116 >v1 : I4
Dmutrec.types61 interface I4 {
67 y:I4;
68 >y : I4
71 var i4:I4;
72 >i4 : I4
77 >i4 : I4
DinterfaceInheritance.types20 interface I4 {
59 var i4: I4;
60 >i4 : I4
67 >i4 : I4
71 >i5 = i4 : I4
73 >i4 : I4
DcircularTypeAliasForUnionWithClass.symbols38 type T4 = string | I4;
40 >I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithClass.ts, 13, 22))
42 class I4 {
43 >I4 : Symbol(I4, Decl(circularTypeAliasForUnionWithClass.ts, 13, 22))
DinterfaceImplementation1.errors.txt5 …er/interfaceImplementation1.ts(34,5): error TS2322: Type '() => C2' is not assignable to type 'I4'.
39 interface I4 {
49 var a:I4 = function(){
51 !!! error TS2322: Type '() => C2' is not assignable to type 'I4'.
57 /*var b:I4 = C2;
61 var c:I4;
DcircularTypeAliasForUnionWithClass.types31 type T4 = string | I4;
34 class I4 {
35 >I4 : I4
DinterfaceDeclaration1.symbols29 interface I4 {
30 >I4 : Symbol(I4, Decl(interfaceDeclaration1.ts, 12, 1))
33 >class : Symbol(I4.class, Decl(interfaceDeclaration1.ts, 14, 14))
36 >number : Symbol(I4.number, Decl(interfaceDeclaration1.ts, 15, 17))
39 >super : Symbol(I4.super, Decl(interfaceDeclaration1.ts, 16, 18))
42 >prototype : Symbol(I4.prototype, Decl(interfaceDeclaration1.ts, 17, 17))
/third_party/boost/boost/fusion/container/set/detail/cpp03/preprocessed/
Das_set10.hpp81 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
102 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
103 …usion::result_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4;
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
[all …]
Das_set20.hpp81 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
102 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
103 …usion::result_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4;
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
[all …]
/third_party/boost/boost/fusion/container/vector/detail/cpp03/preprocessed/
Das_vector10.hpp81 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
102 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
103 …usion::result_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4;
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
[all …]
Das_vector20.hpp81 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
102 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
103 …usion::result_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4;
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
[all …]
/third_party/boost/boost/fusion/container/deque/detail/cpp03/preprocessed/
Das_deque10.hpp81 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
102 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
103 …usion::result_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4;
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
[all …]
Das_deque20.hpp81 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
102 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
103 …usion::result_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4;
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …lt_of::value_of<I3>::type T3; typedef typename fusion::result_of::value_of<I4>::type T4; typedef t…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
[all …]
/third_party/flutter/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
46 "ulw %[" #O3 "], " #I4 "+" XSTR(I9) "*" #I8 "(%[" #I0 "]) \n\t"
53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
70 "addu %[" #IO0 "], %[" #IO0 "], %[" #I4 "] \n\t" \
98 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
99 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I4 "] \n\t" \
100 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I4 "] \n\t" \
161 I0, I1, I2, I3, I4, I5, I6, I7, \ argument
167 "addq.ph %[" #IO4 "], %[" #IO4 "], %[" #I4 "] \n\t" \
/third_party/skia/third_party/externals/libwebp/src/dsp/
Dmips_macro.h42 I0, I1, I2, I3, I4, I5, I6, I7, I8, I9) \ argument
46 "ulw %[" #O3 "], " #I4 "+" XSTR(I9) "*" #I8 "(%[" #I0 "]) \n\t"
53 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
70 "addu %[" #IO0 "], %[" #IO0 "], %[" #I4 "] \n\t" \
98 I0, I1, I2, I3, I4, I5, I6, I7) \ argument
99 "addq.ph %[" #O0 "], %[" #I0 "], %[" #I4 "] \n\t" \
100 "subq.ph %[" #O1 "], %[" #I0 "], %[" #I4 "] \n\t" \
161 I0, I1, I2, I3, I4, I5, I6, I7, \ argument
167 "addq.ph %[" #IO4 "], %[" #IO4 "], %[" #I4 "] \n\t" \
/third_party/boost/boost/fusion/container/map/detail/cpp03/preprocessed/
Das_map10.hpp102 …pename fusion::result_of::next<I2>::type I3; typedef typename fusion::result_of::next<I3>::type I4; typedef
103 …air_from<I3, is_assoc> D3; typedef typename D3::type T3; typedef pair_from<I4, is_assoc> D4; typed…
113 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
123 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
124 …air_from<I3, is_assoc> D3; typedef typename D3::type T3; typedef pair_from<I4, is_assoc> D4; typed…
134 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
144 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
145 …air_from<I3, is_assoc> D3; typedef typename D3::type T3; typedef pair_from<I4, is_assoc> D4; typed…
155 … = fusion::next(i1); typename gen::I3 i3 = fusion::next(i2); typename gen::I4 i4 = fusion::next(i3… in call()
165 …; typedef typename fusion::result_of::next<I3>::type I4; typedef typename fusion::result_of::next< typedef
[all …]

123456789