HomeSort by relevance Sort by last modified time
    Searched defs:str_size (Results 1 - 2 of 2) sorted by null

  /external/stlport/src/
num_put.cpp 34 typedef string::size_type str_size; typedef
52 for ( str_size n = 0; ; ) { // Index of the current group
78 typedef string::size_type str_size; typedef
97 for ( str_size n = 0; ; ) { // Index of the current group
  /external/stlport/test/unit/
find_test.cpp 122 size_t str_size = sizeof(str) / sizeof(char); local
124 char *d = find(pstr, pstr + str_size, 'd');
127 const char *e = find(cpstr, cpstr + str_size, 'e');
130 char *last = find(pstr, pstr + str_size, 'x');
131 CPPUNIT_ASSERT( last == pstr + str_size );
133 const char *clast = find(cpstr, cpstr + str_size, 'x');
134 CPPUNIT_ASSERT( clast == cpstr + str_size );

Completed in 35 milliseconds