Home | History | Annotate | Download | only in tests

Lines Matching full:find

22     REPORTER_ASSERT(reporter, nullptr == dict.find(nullptr));
23 REPORTER_ASSERT(reporter, nullptr == dict.find("foo"));
24 REPORTER_ASSERT(reporter, nullptr == dict.find("bar"));
27 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
31 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
35 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
40 REPORTER_ASSERT(reporter, nullptr == dict.find("foo"));
46 REPORTER_ASSERT(reporter, &data0 == dict.find("foo"));
47 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
52 REPORTER_ASSERT(reporter, &data1 == dict.find("foo"));
53 REPORTER_ASSERT(reporter, &data1 == dict.find("bar"));
58 REPORTER_ASSERT(reporter, nullptr == dict.find("foo"));
59 REPORTER_ASSERT(reporter, nullptr == dict.find("bar"));
65 REPORTER_ASSERT(reporter, nullptr == d.find("foo"));
68 REPORTER_ASSERT(reporter, &data0 == d.find("foo"));