Searched refs:TEST_CONSTEXPR_CXX14 (Results 1 – 6 of 6) sorted by relevance
/external/libcxx/test/support/ |
D | test_iterators.h | 71 TEST_CONSTEXPR_CXX14 It base() const {return it_;} in base() 73 TEST_CONSTEXPR_CXX14 input_iterator() : it_() {} in input_iterator() 74 explicit TEST_CONSTEXPR_CXX14 input_iterator(It it) : it_(it) {} in input_iterator() 76 TEST_CONSTEXPR_CXX14 input_iterator(const input_iterator<U, T>& u) :it_(u.it_) {} in input_iterator() 78 TEST_CONSTEXPR_CXX14 reference operator*() const {return *it_;} 79 TEST_CONSTEXPR_CXX14 pointer operator->() const {return it_;} 81 TEST_CONSTEXPR_CXX14 input_iterator& operator++() {++it_; return *this;} 82 TEST_CONSTEXPR_CXX14 input_iterator operator++(int) 85 friend TEST_CONSTEXPR_CXX14 bool operator==(const input_iterator& x, const input_iterator& y) 87 friend TEST_CONSTEXPR_CXX14 bool operator!=(const input_iterator& x, const input_iterator& y) [all …]
|
D | constexpr_char_traits.hpp | 28 static TEST_CONSTEXPR_CXX14 void assign(char_type& __c1, const char_type& __c2) TEST_NOEXCEPT in assign() 37 …static TEST_CONSTEXPR_CXX14 int compare(const char_type* __s1, const char_type* __s2,… 38 static TEST_CONSTEXPR_CXX14 size_t length(const char_type* __s); 39 …static TEST_CONSTEXPR_CXX14 const char_type* find(const char_type* __s, size_t __n, const char_typ… 40 …static TEST_CONSTEXPR_CXX14 char_type* move(char_type* __s1, const char_type* __s2, size_t _… 41 …static TEST_CONSTEXPR_CXX14 char_type* copy(char_type* __s1, const char_type* __s2, size_t _… 42 static TEST_CONSTEXPR_CXX14 char_type* assign(char_type* __s, size_t __n, char_type __a); 62 TEST_CONSTEXPR_CXX14 int 76 TEST_CONSTEXPR_CXX14 size_t 86 TEST_CONSTEXPR_CXX14 const _CharT* [all …]
|
D | test_comparisons.h | 27 TEST_CONSTEXPR_CXX14 bool testComparisons6(const T& t1, const T& t2, bool isEqual, bool isLess) in testComparisons6() 80 TEST_CONSTEXPR_CXX14 bool testComparisons6Values(Param val1, Param val2) in testComparisons6Values() 124 TEST_CONSTEXPR_CXX14 bool testComparisons2(const T& t1, const T& t2, bool isEqual) in testComparisons2() 146 TEST_CONSTEXPR_CXX14 bool testComparisons2Values(Param val1, Param val2) in testComparisons2Values()
|
D | test_macros.h | 108 # define TEST_CONSTEXPR_CXX14 constexpr macro 110 # define TEST_CONSTEXPR_CXX14 macro 121 #define TEST_CONSTEXPR_CXX14 macro
|
D | archetypes.hpp | 146 TEST_CONSTEXPR_CXX14 ValueBase& operator=(int xvalue) noexcept { in operator =() 178 TEST_CONSTEXPR_CXX14 ValueBase& operator=(ValueBase const& o) noexcept { in operator =() 183 TEST_CONSTEXPR_CXX14 ValueBase& operator=(ValueBase&& o) noexcept { in operator =()
|
/external/libcxx/test/std/algorithms/alg.nonmodifying/alg.find.end/ |
D | find_end_pred.pass.cpp | 29 TEST_CONSTEXPR_CXX14 bool operator()(const T& x, const T& y) in operator ()()
|