Searched defs:a_ (Results 1 - 25 of 45) sorted by relevance

12

/ndk/tests/device/test-gnustl-full/unit/
H A Dforeach_test.cpp31 static void increase(int& a_) argument
33 a_ += 1;
52 static void sqr(int& a_) argument
54 a_ = a_ * a_;
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 Dcount_test.cpp24 static int odd(int a_);
70 int CountTest::odd(int a_) argument
72 return a_ % 2;
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 Drm_cp_test.cpp46 static bool odd(int a_) argument
48 return (a_ % 2) != 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.cpp28 static int negate_int(int a_) { argument
29 return -a_;
31 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_; }
/ndk/tests/device/test-stlport/unit/
H A Dforeach_test.cpp31 static void increase(int& a_) argument
33 a_ += 1;
52 static void sqr(int& a_) argument
54 a_ = a_ * a_;
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 Dcount_test.cpp24 static int odd(int a_);
70 int CountTest::odd(int a_) argument
72 return a_ % 2;
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 Drm_cp_test.cpp46 static bool odd(int a_) argument
48 return (a_ % 2) != 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.cpp28 static int negate_int(int a_) { argument
29 return -a_;
31 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_; }
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
H A Ddefault02.pass.cpp43 std::unique_ptr<A[], D> a_; member in struct:B
47 A* get() const {return a_.get();}
48 D& get_deleter() {return a_.get_deleter();}

Completed in 270 milliseconds

12