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

/external/stlport/test/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_);
H A Dsort_test.cpp42 static bool string_less(const char* a_, const char* b_) argument
44 return strcmp(a_, b_) < 0 ? 1 : 0;
/external/gtest/test/
H A Dgtest_unittest.cc2646 b_ = 0;
2657 ASSERT_NE(a_++, b_++);
2666 static int b_; member in class:__anon1237::SingleEvaluationTest
2674 int SingleEvaluationTest::b_; member in class:__anon1237::SingleEvaluationTest
2702 EXPECT_FATAL_FAILURE(CompareAndIncrementInts(), "(a_++) != (b_++)");
2704 EXPECT_EQ(1, b_);
2718 EXPECT_GT(a_++, b_++);
2720 EXPECT_EQ(1, b_);
2723 EXPECT_NONFATAL_FAILURE(EXPECT_LT(a_++, b_++), "(a_++) < (b_
[all...]

Completed in 66 milliseconds