Home | History | Annotate | Download | only in unit

Lines Matching refs:str

52   char const* str [] = { "a", "a", "b", "b", "q", "w", "z" };
54 const unsigned strCt = sizeof(str)/sizeof(str[0]);
56 int location = (upper_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less) - str);
74 char const* str [] = { "a", "a", "b", "b", "q", "w", "z" };
76 const unsigned strCt = sizeof(str)/sizeof(str[0]);
77 char const** location = lower_bound((char const**)str, (char const**)str + strCt, (const char *)"d", char_str_less);
79 CPPUNIT_ASSERT((location - str) == 4);