Lines Matching defs:found
5 * found in the LICENSE file.
32 double* found = map.find(3);
33 REPORTER_ASSERT(r, found);
34 REPORTER_ASSERT(r, *found == 4.0);
39 found = map.find(3);
40 REPORTER_ASSERT(r, found);
41 REPORTER_ASSERT(r, *found == -3.0);
80 found = map.find(i);
81 REPORTER_ASSERT(r, found);
82 REPORTER_ASSERT(r, *found == i*2.0);
84 found = clone.find(i);
85 REPORTER_ASSERT(r, found);
86 REPORTER_ASSERT(r, *found == i*2.0);
100 found = map.find(i);
101 REPORTER_ASSERT(r, (found == nullptr) == (i < N/2));
103 found = clone.find(i);
104 REPORTER_ASSERT(r, *found == i*2.0);