Home | History | Annotate | Download | only in common

Lines Matching full:intvalue

89 		const int					intValue	= 1503457782;
90 const Either<int, float> either (intValue);
98 TCU_CHECK(either.getFirst() == intValue);
99 TCU_CHECK(either.get<int>() == intValue);
119 const int intValue = 1942092699;
123 either = intValue;
131 TCU_CHECK(either.getFirst() == intValue);
132 TCU_CHECK(either.get<int>() == intValue);
137 const int intValue = 1942092699;
139 Either<int, float> either (intValue);
155 const int intValue = 1942092699;
158 const Either<int, float> otherEither (intValue);
168 TCU_CHECK(either.getFirst() == intValue);
169 TCU_CHECK(either.get<int>() == intValue);
174 const int intValue = 1942092699;
176 Either<int, float> either (intValue);
223 const int intValue = 1942092699;
225 Either<TestClassWithConstructor, int> either (intValue);
241 const int intValue = 1942092699;
243 Either<int, TestClassWithConstructor> either (intValue);
259 const int intValue = 1942092699;
261 Either<TestClassWithConstructor, int> either (intValue);
278 const int intValue = 1942092699;
280 Either<int, TestClassWithConstructor> either (intValue);