Searched
refs:constexpr (Results
326 -
350 of
1197) sorted by null
<<11121314151617181920>>
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/ |
op_-duration.pass.cpp | 33 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 34 constexpr std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5);
|
op_-time_point.pass.cpp | 33 constexpr std::chrono::time_point<Clock, Duration1> t1(Duration1(3)); 34 constexpr std::chrono::time_point<Clock, Duration2> t2(Duration2(5));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
convert_copy.pass.cpp | 39 constexpr A(int i) : id_(i) {} 40 friend constexpr bool operator==(const A& x, const A& y) {return x.id_ == y.id_;} 47 constexpr explicit C(int i) : id_(i) {} 48 friend constexpr bool operator==(const C& x, const C& y) {return x.id_ == y.id_;} 66 constexpr T0 t0(2.5); 67 constexpr T1 t1 = t0; 73 constexpr T0 t0(2); 74 constexpr T1 t1{t0};
|
/prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
regex_constants.h | 163 constexpr inline syntax_option_type 170 constexpr inline syntax_option_type 177 constexpr inline syntax_option_type 184 constexpr inline syntax_option_type 342 constexpr inline match_flag_type 349 constexpr inline match_flag_type 356 constexpr inline match_flag_type 363 constexpr inline match_flag_type
|
/system/extras/simpleperf/ |
get_test_data.h | 61 constexpr size_t NATIVELIB_OFFSET_IN_APK = 0x639000; 62 constexpr size_t NATIVELIB_SIZE_IN_APK = 0x1678;
|
/external/clang/test/SemaTemplate/ |
temp_arg_nontype_cxx1z.cpp | 5 template<typename T, typename U> constexpr bool is_same = false; // expected-note +{{here}} 6 template<typename T> constexpr bool is_same<T, T> = true; 61 constexpr S &addr(S &&s) { return s; } 81 constexpr int B::*b = &B::b; 82 constexpr int C::*cb = b; 83 constexpr int D::*db = b; 84 constexpr int E::*ecb = cb; // expected-note +{{here}} 85 constexpr int E::*edb = db; // expected-note +{{here}} 87 constexpr int E::*e = &E::e; 88 constexpr int D::*de = (int D::*)e [all...] |
/art/compiler/optimizing/ |
bounds_check_elimination.h | 38 static constexpr const char* kBoundsCheckEliminationPassName = "BCE";
|
gvn.h | 36 static constexpr const char* kGlobalValueNumberingPassName = "GVN";
|
instruction_simplifier.h | 43 static constexpr const char* kInstructionSimplifierPassName = "instruction_simplifier";
|
licm.h | 35 static constexpr const char* kLoopInvariantCodeMotionPassName = "licm";
|
load_store_elimination.h | 34 static constexpr const char* kLoadStoreEliminationPassName = "load_store_elimination";
|
/external/clang/test/Analysis/ |
bug_hash_test.cpp | 14 constexpr int f() { return 5; } [all...] |
/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/CodeGenCXX/ |
cxx0x-initializer-stdinitializerlist-pr12086.cpp | 19 constexpr initializer_list(const _E* __b, size_t __s) 38 constexpr initializer_list() : __begin_(nullptr), __end_(nullptr) {} 44 constexpr initializer_list() : __begin_(nullptr), __size_(0) {} 53 constexpr int a = 2, b = 4, c = 6;
|
pr18635.cpp | 16 constexpr unique_ptr() noexcept : data() {}
|
/external/clang/test/Lexer/ |
cxx1y_binary_literal.cpp | 10 constexpr unsigned long long operator""_foo(unsigned long long n) {
|
/external/clang/test/SemaCXX/ |
constexpr-many-arguments.cpp | 6 constexpr type1(int a0) : my_data{a0} {} 13 constexpr type2(T a00, T a01, T a02, T a03, T a04, T a05, T a06, T a07, T a08, T a09, 25 constexpr type3(type2 a0, type2 a1) : my_data{a0, a1} {} 29 constexpr type3 g
|
/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);
|
minmax_comp.pass.cpp | 55 constexpr static int x = 1; 56 constexpr static int y = 0; 57 constexpr auto p1 = std::minmax(x, y, std::greater<>()); 60 constexpr auto p2 = std::minmax(y, x, std::greater<>());
|
/external/libcxx/test/std/diagnostics/syserr/syserr.errcat/syserr.errcat.nonvirtuals/ |
default_ctor.pass.cpp | 14 // constexpr error_category() noexcept; 27 constexpr test1() = default; // won't compile if error_category() is not constexpr
|
/external/libcxx/test/std/experimental/optional/optional.inplace/ |
in_place_t.pass.cpp | 13 // constexpr in_place_t in_place{}; 24 constexpr
|
/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/language.support/support.initlist/support.initlist.cons/ |
default.pass.cpp | 26 constexpr std::initializer_list<A> il2;
|
/external/libcxx/test/std/numerics/complex.number/cmplx.over/ |
imag.pass.cpp | 29 constexpr T val {x}; 31 constexpr std::complex<T> t{val, val}; 43 constexpr T val {x}; 45 constexpr std::complex<T> t{val, val};
|
real.pass.cpp | 29 constexpr T val {x}; 31 constexpr std::complex<T> t{val, val}; 43 constexpr T val {x}; 45 constexpr std::complex<T> t{val, val};
|
Completed in 4154 milliseconds
<<11121314151617181920>>