Home | History | Annotate | Download | only in tests

Lines Matching refs:found

5  * found in the LICENSE file.
96 // look for all i's and assert we found the -i's
98 HashElement* found = cache.find(i);
99 REPORTER_ASSERT(reporter, NULL != found && -i == found->fValue);
104 HashElement* found = cache.find(10);
105 REPORTER_ASSERT(reporter, NULL == found);
119 HashElement* found = cache.find(0, findPos);
120 REPORTER_ASSERT(reporter, NULL == found);
123 found = cache.find(i, findPos);
125 REPORTER_ASSERT(reporter, NULL != found && found->fValue > 0);
133 HashElement* found = cache.find(0, findNeg);
134 REPORTER_ASSERT(reporter, NULL == found);
137 found = cache.find(i, findNeg);
139 REPORTER_ASSERT(reporter, NULL != found && found->fValue < 0);
149 HashElement* found = cache.find(0);
150 REPORTER_ASSERT(reporter, NULL == found);