Searched defs:b_ (Results 1 - 25 of 28) sorted by relevance

12

/ndk/tests/device/test-gnustl-full/unit/
H A Dbsearch_test.cpp22 static bool str_compare(const char* a_, const char* b_);
46 bool BsearchTest::str_compare(const char* a_, const char* b_) argument
48 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dbound_test.cpp28 static bool char_str_less(const char* a_, const char* b_) argument
30 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dinnerprod_test.cpp27 static size_t add(size_t a_, size_t b_) { argument
28 return a_ + b_;
31 static size_t mult(size_t a_, size_t b_) { argument
32 return a_ * b_;
H A Dmax_test.cpp28 static bool str_compare(const char* a_, const char* b_) argument
29 { return strcmp(a_, b_) < 0 ? 1 : 0; }
H A Dmin_test.cpp27 static bool str_compare(const char* a_, const char* b_) argument
28 { return strcmp(a_, b_) < 0 ? 1 : 0; }
H A Dmismatch_test.cpp34 bool str_equal(const char* a_, const char* b_) argument
36 return strcmp(a_, b_) == 0 ? 1 : 0;
H A Dsearch_test.cpp28 static bool str_equal(const char* a_, const char* b_) argument
30 return strcmp(a_, b_) == 0 ? 1 : 0;
H A Dtransform_test.cpp31 static char map_char(char a_, int b_) { argument
32 return char(a_ + b_);
H A Dunique_test.cpp30 static bool str_equal(const char* a_, const char* b_) argument
31 { return *a_ == *b_; }
H A Dmultiset_test.cpp28 static bool less_than(int a_, int b_) argument
30 return a_ < b_;
33 static bool greater_than(int a_, int b_) argument
35 return a_ > b_;
H A Dpartial_test.cpp50 static bool str_compare(const char* a_, const char* b_) argument
52 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dadj_test.cpp33 static int mult(int a_, int b_);
132 int AdjTest::mult(int a_, int b_) argument
134 return a_ * b_;
H A Dequal_test.cpp33 static bool values_squared(int a_, int b_);
175 bool EqualTest::values_squared(int a_, int b_) argument
177 return (a_ * a_ == b_);
/ndk/tests/device/test-stlport/unit/
H A Dbsearch_test.cpp22 static bool str_compare(const char* a_, const char* b_);
46 bool BsearchTest::str_compare(const char* a_, const char* b_) argument
48 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dbound_test.cpp28 static bool char_str_less(const char* a_, const char* b_) argument
30 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dinnerprod_test.cpp27 static size_t add(size_t a_, size_t b_) { argument
28 return a_ + b_;
31 static size_t mult(size_t a_, size_t b_) { argument
32 return a_ * b_;
H A Dmax_test.cpp28 static bool str_compare(const char* a_, const char* b_) argument
29 { return strcmp(a_, b_) < 0 ? 1 : 0; }
H A Dmin_test.cpp27 static bool str_compare(const char* a_, const char* b_) argument
28 { return strcmp(a_, b_) < 0 ? 1 : 0; }
H A Dmismatch_test.cpp34 bool str_equal(const char* a_, const char* b_) argument
36 return strcmp(a_, b_) == 0 ? 1 : 0;
H A Dsearch_test.cpp28 static bool str_equal(const char* a_, const char* b_) argument
30 return strcmp(a_, b_) == 0 ? 1 : 0;
H A Dtransform_test.cpp31 static char map_char(char a_, int b_) { argument
32 return char(a_ + b_);
H A Dunique_test.cpp30 static bool str_equal(const char* a_, const char* b_) argument
31 { return *a_ == *b_; }
H A Dmultiset_test.cpp28 static bool less_than(int a_, int b_) argument
30 return a_ < b_;
33 static bool greater_than(int a_, int b_) argument
35 return a_ > b_;
H A Dpartial_test.cpp50 static bool str_compare(const char* a_, const char* b_) argument
52 return strcmp(a_, b_) < 0 ? 1 : 0;
H A Dadj_test.cpp33 static int mult(int a_, int b_);
132 int AdjTest::mult(int a_, int b_) argument
134 return a_ * b_;

Completed in 110 milliseconds

12