Home
last modified time | relevance | path

Searched refs:TEST_CONSTEXPR (Results 1 – 10 of 10) sorted by relevance

/external/libcxx/test/std/utilities/time/
Drep.h19 TEST_CONSTEXPR Rep() : data_(-1) {} in Rep()
20 explicit TEST_CONSTEXPR Rep(int i) : data_(i) {} in Rep()
22 bool TEST_CONSTEXPR operator==(int i) const {return data_ == i;}
23 bool TEST_CONSTEXPR operator==(const Rep& r) const {return data_ == r.data_;}
/external/libcxx/test/support/
Dconstexpr_char_traits.hpp31 static TEST_CONSTEXPR bool eq(char_type __c1, char_type __c2) TEST_NOEXCEPT in eq()
34 static TEST_CONSTEXPR bool lt(char_type __c1, char_type __c2) TEST_NOEXCEPT in lt()
44 static TEST_CONSTEXPR int_type not_eof(int_type __c) TEST_NOEXCEPT in not_eof()
47 static TEST_CONSTEXPR char_type to_char_type(int_type __c) TEST_NOEXCEPT in to_char_type()
50 static TEST_CONSTEXPR int_type to_int_type(char_type __c) TEST_NOEXCEPT in to_int_type()
53 static TEST_CONSTEXPR bool eq_int_type(int_type __c1, int_type __c2) TEST_NOEXCEPT in eq_int_type()
56 static TEST_CONSTEXPR int_type eof() TEST_NOEXCEPT in eof()
Dtest_macros.h96 #define TEST_CONSTEXPR constexpr macro
112 #define TEST_CONSTEXPR macro
/external/libcxx/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.ops/reverse.iter.opref/
Dop_arrow.pass.cpp70 TEST_CONSTEXPR C() : data_(1) {} in C()
72 TEST_CONSTEXPR int get() const {return data_;} in get()
74 friend TEST_CONSTEXPR bool operator==(const C& x, const C& y) in operator ==()
78 TEST_CONSTEXPR C gC;
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.shuf/
Dresult_type.pass.cpp43 static TEST_CONSTEXPR result_type min() {return Min;} in min()
44 static TEST_CONSTEXPR result_type max() {return Max;} in max()
Deval.pass.cpp41 static TEST_CONSTEXPR result_type min() {return Min;} in min()
42 static TEST_CONSTEXPR result_type max() {return Max;} in max()
/external/libcxx/test/std/numerics/rand/rand.adapt/rand.adapt.ibits/
Dresult_type.pass.cpp43 static TEST_CONSTEXPR result_type min() {return Min;} in min()
44 static TEST_CONSTEXPR result_type max() {return Max;} in max()
Deval.pass.cpp41 static TEST_CONSTEXPR result_type min() {return Min;} in min()
42 static TEST_CONSTEXPR result_type max() {return Max;} in max()
/external/libcxx/test/std/utilities/template.bitset/bitset.cons/
Ddefault.pass.cpp21 TEST_CONSTEXPR std::bitset<N> v1; in test_default_ctor()
Dull_ctor.pass.cpp23 TEST_CONSTEXPR std::bitset<N> v(0xAAAAAAAAAAAAAAAAULL); in test_val_ctor()