Lines Matching refs:floatValue
104 const float floatValue = 0.43223332995f; in Either_selfTest() local
105 const Either<int, float> either (floatValue); in Either_selfTest()
113 TCU_CHECK(either.getSecond() == floatValue); in Either_selfTest()
114 TCU_CHECK(either.get<float>() == floatValue); in Either_selfTest()
120 const float floatValue = 0.43223332995f; in Either_selfTest() local
121 Either<int, float> either (floatValue); in Either_selfTest()
138 const float floatValue = 0.43223332995f; in Either_selfTest() local
141 either = floatValue; in Either_selfTest()
149 TCU_CHECK(either.getSecond() == floatValue); in Either_selfTest()
150 TCU_CHECK(either.get<float>() == floatValue); in Either_selfTest()
156 const float floatValue = 0.43223332995f; in Either_selfTest() local
157 Either<int, float> either (floatValue); in Either_selfTest()
175 const float floatValue = 0.43223332995f; in Either_selfTest() local
177 const Either<int, float> otherEither (floatValue); in Either_selfTest()
187 TCU_CHECK(either.getSecond() == floatValue); in Either_selfTest()
188 TCU_CHECK(either.get<float>() == floatValue); in Either_selfTest()