/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.special/ |
long_double_float_explicit.pass.cpp | 15 // constexpr complex(const complex<float>&); 31 constexpr std::complex<float> cd(2.5, 3.5); 32 constexpr std::complex<long double> cf(cd);
|
long_double_float_implicit.pass.cpp | 15 // constexpr complex(const complex<float>&); 31 constexpr std::complex<float> cd(2.5, 3.5); 32 constexpr std::complex<long double> cf = cd;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.shuf/ |
values.pass.cpp | 20 // static constexpr size_t table_size = k; 21 // static constexpr result_type min() { return Engine::min; } 22 // static constexpr result_type max() { return Engine::max; }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.observe/ |
value_const.pass.cpp | 12 // constexpr const T& optional<T>::value() const; 29 constexpr int test() const {return 3;} 39 constexpr optional<X> opt(in_place);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.nonmember/ |
op_divide_rep.pass.cpp | 15 // constexpr 31 constexpr std::chrono::nanoseconds ns(15); 32 constexpr std::chrono::nanoseconds ns2 = ns / 5;
|
op_mod_rep.pass.cpp | 15 // constexpr 31 constexpr std::chrono::nanoseconds ns(15); 32 constexpr std::chrono::nanoseconds ns2 = ns % 6;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/ |
tie.pass.cpp | 32 static constexpr int i = 42; 33 static constexpr double f = 1.1; 34 constexpr std::tuple<const int &, const double &> t = std::tie(i, f);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ |
array | 51 static constexpr _Tp& 61 static constexpr _Tp& 161 constexpr size_type 164 constexpr size_type 167 constexpr bool 175 constexpr const_reference 187 constexpr const_reference 201 constexpr const_reference 209 constexpr const_reference 267 constexpr _Tp [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ |
array | 51 static constexpr _Tp& 61 static constexpr _Tp& 161 constexpr size_type 164 constexpr size_type 167 constexpr bool 175 constexpr const_reference 187 constexpr const_reference 201 constexpr const_reference 209 constexpr const_reference 267 constexpr _Tp [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ |
array | 51 static constexpr _Tp& 61 static constexpr _Tp& 161 constexpr size_type 164 constexpr size_type 167 constexpr bool 175 constexpr const_reference 187 constexpr const_reference 201 constexpr const_reference 209 constexpr const_reference 267 constexpr _Tp [all...] |
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ |
array | 51 static constexpr _Tp& 61 static constexpr _Tp& 161 constexpr size_type 164 constexpr size_type 167 constexpr bool 175 constexpr const_reference 189 constexpr const_reference 205 constexpr const_reference 213 constexpr const_reference 271 constexpr _Tp [all...] |
/system/extras/simpleperf/ |
environment.h | 32 constexpr char DEFAULT_KERNEL_MMAP_NAME[] = "[kernel.kallsyms]_text"; 50 constexpr char DEFAULT_EXECNAME_FOR_THREAD_MMAP[] = "//anon"; 62 constexpr char DEFAULT_KERNEL_FILENAME_FOR_BUILD_ID[] = "[kernel.kallsyms]";
|
/bionic/libc/malloc_debug/ |
malloc_debug.h | 66 constexpr uint32_t DEBUG_TAG = 0x1ee7d00d; 67 constexpr uint32_t DEBUG_FREE_TAG = 0x1cc7dccd; 68 constexpr char LOG_DIVIDER[] = "*** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***"; 69 constexpr size_t FREE_TRACK_MEM_BUFFER_SIZE = 4096;
|
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
p4.cpp | 17 template<char...Cs> constexpr int operator "" _x3() { return sizeof...(Cs); }
|
/external/clang/test/CXX/lex/lex.literal/lex.string/ |
p4.cpp | 7 constexpr const char* p = R"(a\
|
/external/clang/test/CodeGenCXX/ |
pr18635.cpp | 16 constexpr unique_ptr() noexcept : data() {}
|
static-init-4.cpp | 5 constexpr float32x4_t a = {1,2,3,4};
|
/external/clang/test/PCH/ |
make-integer-seq.cpp | 6 static constexpr T PackSize = sizeof...(I);
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
minmax.pass.cpp | 52 constexpr static int x = 1; 53 constexpr static int y = 0; 54 constexpr auto p1 = std::minmax (x, y); 57 constexpr auto p2 = std::minmax (y, x);
|
/external/libcxx/test/std/experimental/optional/optional.object/optional.object.assign/ |
copy.pass.cpp | 43 constexpr optional<int> opt2; 50 constexpr optional<int> opt2(2); 59 constexpr optional<int> opt2; 66 constexpr optional<int> opt2(2);
|
/external/libcxx/test/std/experimental/string.view/string.view.comparison/ |
opeq.string_view.pointer.pass.cpp | 13 // constexpr bool operator==(basic_string_view<charT,traits> lhs, const charT* rhs); 15 // constexpr bool operator==(const charT* lhs, basic_string_view<charT,traits> rhs); 55 constexpr SV sv1; 56 constexpr SV sv2 { "abcde", 5 };
|
opeq.string_view.string_view.pass.cpp | 13 // constexpr bool operator==(const basic_string_view<charT,traits> lhs, 54 constexpr SV sv1; 55 constexpr SV sv2; 56 constexpr SV sv3 { "abcde", 5 };
|
opge.string_view.pointer.pass.cpp | 13 // constexpr bool operator>=(const charT* lhs, basic_string_wiew<charT,traits> rhs); 15 // constexpr bool operator>=(basic_string_wiew<charT,traits> lhs, const charT* rhs); 55 constexpr SV sv1; 56 constexpr SV sv2 { "abcde", 5 };
|
opgt.string_view.pointer.pass.cpp | 12 // constexpr template<class charT, class traits, class Allocator> 14 // constexpr template<class charT, class traits, class Allocator> 55 constexpr SV sv1; 56 constexpr SV sv2 { "abcde", 5 };
|
ople.string_view.pointer.pass.cpp | 13 // constexpr bool operator<=(const charT* lhs, basic_string_wiew<charT,traits> rhs); 15 // constexpr bool operator<=(basic_string_wiew<charT,traits> lhs, const charT* rhs); 55 constexpr SV sv1; 56 constexpr SV sv2 { "abcde", 5 };
|