Home
last modified time | relevance | path

Searched refs:TEST_CONSTEXPR_CXX14 (Results 1 – 6 of 6) sorted by relevance

/external/libcxx/test/support/
Dtest_iterators.h71 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 …]
Dconstexpr_char_traits.hpp28 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 …]
Dtest_comparisons.h27 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()
Dtest_macros.h108 # define TEST_CONSTEXPR_CXX14 constexpr macro
110 # define TEST_CONSTEXPR_CXX14 macro
121 #define TEST_CONSTEXPR_CXX14 macro
Darchetypes.hpp146 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/
Dfind_end_pred.pass.cpp29 TEST_CONSTEXPR_CXX14 bool operator()(const T& x, const T& y) in operator ()()