HomeSort by relevance Sort by last modified time
    Searched full:constexpr (Results 151 - 175 of 1617) sorted by null

1 2 3 4 5 67 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.ops/
complex_not_equals_scalar.pass.cpp 25 constexpr std::complex<T> lhs(1.5, 2.5);
26 constexpr T rhs(-2.5);
30 constexpr std::complex<T> lhs(1.5, 0);
31 constexpr T rhs(-2.5);
35 constexpr std::complex<T> lhs(1.5, 2.5);
36 constexpr T rhs(1.5);
40 constexpr std::complex<T> lhs(1.5, 0);
41 constexpr T rhs(1.5);
scalar_equals_complex.pass.cpp 25 constexpr T lhs(-2.5);
26 constexpr std::complex<T> rhs(1.5, 2.5);
30 constexpr T lhs(-2.5);
31 constexpr std::complex<T> rhs(1.5, 0);
35 constexpr T lhs(1.5);
36 constexpr std::complex<T> rhs(1.5, 2.5);
40 constexpr T lhs(1.5);
41 constexpr std::complex<T> rhs(1.5, 0);
scalar_not_equals_complex.pass.cpp 25 constexpr T lhs(-2.5);
26 constexpr std::complex<T> rhs(1.5, 2.5);
30 constexpr T lhs(-2.5);
31 constexpr std::complex<T> rhs(1.5, 0);
35 constexpr T lhs(1.5);
36 constexpr std::complex<T> rhs(1.5, 2.5);
40 constexpr T lhs(1.5);
41 constexpr std::complex<T> rhs(1.5, 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.comp_with_t/
equal.pass.cpp 12 // template <class T> constexpr bool operator==(const optional<T>& x, const T& v);
13 // template <class T> constexpr bool operator==(const T& v, const optional<T>& x);
25 constexpr X(int i) : i_(i) {}
28 constexpr bool operator == ( const X &lhs, const X &rhs )
40 constexpr T val(2);
41 constexpr O o1; // disengaged
42 constexpr O o2{1}; // engaged
43 constexpr O o3{val}; // engaged
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.relops/
equal.pass.cpp 12 // template <class T> constexpr bool operator==(const optional<T>& x, const optional<T>& y);
26 constexpr X(int i) : i_(i) {}
29 constexpr bool operator == ( const X &lhs, const X &rhs )
41 constexpr O o1; // disengaged
42 constexpr O o2; // disengaged
43 constexpr O o3{1}; // engaged
44 constexpr O o4{2}; // engaged
45 constexpr O o5{1}; // engaged
less_than.pass.cpp 12 // template <class T> constexpr bool operator< (const optional<T>& x, const optional<T>& y);
24 constexpr X(int i) : i_(i) {}
27 constexpr bool operator < ( const X &lhs, const X &rhs )
38 constexpr O o1; // disengaged
39 constexpr O o2; // disengaged
40 constexpr O o3{1}; // engaged
41 constexpr O o4{2}; // engaged
42 constexpr O o5{1}; // engaged
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.comparisons/
op_less.pass.cpp 15 // constexpr
20 // constexpr
25 // constexpr
30 // constexpr
97 constexpr std::chrono::seconds s1(3);
98 constexpr std::chrono::seconds s2(3);
105 constexpr std::chrono::seconds s1(3);
106 constexpr std::chrono::seconds s2(4);
113 constexpr std::chrono::milliseconds s1(3);
114 constexpr std::chrono::microseconds s2(3000)
    [all...]
op_equal.pass.cpp 15 // constexpr
20 // constexpr
73 constexpr std::chrono::seconds s1(3);
74 constexpr std::chrono::seconds s2(3);
79 constexpr std::chrono::seconds s1(3);
80 constexpr std::chrono::seconds s2(4);
85 constexpr std::chrono::milliseconds s1(3);
86 constexpr std::chrono::microseconds s2(3000);
91 constexpr std::chrono::milliseconds s1(3);
92 constexpr std::chrono::microseconds s2(4000)
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.comparisons/
op_equal.pass.cpp 60 constexpr T1 t1(Duration1(3));
61 constexpr T1 t2(Duration1(3));
66 constexpr T1 t1(Duration1(3));
67 constexpr T1 t2(Duration1(4));
72 constexpr T1 t1(Duration1(3));
73 constexpr T2 t2(Duration2(3000));
78 constexpr T1 t1(Duration1(3));
79 constexpr T2 t2(Duration2(3001));
  /system/keymaster/
keymaster_configuration.cpp 40 constexpr char kPlatformVersionProp[] = "ro.build.version.release";
41 constexpr char kPlatformVersionRegex[] = "^([0-9]{1,2})(\\.([0-9]{1,2}))?(\\.([0-9]{1,2}))?";
42 constexpr size_t kMajorVersionMatch = 1;
43 constexpr size_t kMinorVersionMatch = 3;
44 constexpr size_t kSubminorVersionMatch = 5;
45 constexpr size_t kPlatformVersionMatchCount = kSubminorVersionMatch + 1;
47 constexpr char kPlatformPatchlevelProp[] = "ro.build.version.security_patch";
48 constexpr char kPlatformPatchlevelRegex[] = "^([0-9]{4})-([0-9]{2})-[0-9]{2}$";
49 constexpr size_t kYearMatch = 1;
50 constexpr size_t kMonthMatch = 2
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
chrono 132 static constexpr _ToDur
146 static constexpr _ToDur
158 static constexpr _ToDur
171 static constexpr _ToDur
192 constexpr typename enable_if<__is_duration<_ToDur>::value,
216 static constexpr _Rep
220 static constexpr _Rep
224 static constexpr _Rep
252 constexpr duration() = default;
254 // NB: Make constexpr implicit. This cannot be explicitl
    [all...]
  /external/clang/test/CXX/over/over.oper/over.literal/
p7.cpp 4 constexpr int operator "" _a(const char *c) {
  /external/clang/test/CodeGenCXX/
typeid-cxx11.cpp 13 template<typename T> constexpr Item item(const char *name) {
22 extern constexpr Item items[] = {
27 constexpr auto &x = items[0].ti;
30 constexpr auto &y = typeid(B{});
  /external/clang/test/PCH/
check-deserializations.cpp 24 constexpr int f() { return 0; }
25 struct X { constexpr X() {} };
27 namespace v2 { constexpr int DND = f(); }
29 namespace v4 { constexpr X DND = {}; }
  /external/clang/test/SemaCXX/
PR23334.cpp 7 constexpr int kIsolationClass = 0;
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/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 22 // static constexpr size_t word_size = w;
23 // static constexpr size_t state_size = n;
24 // static constexpr size_t shift_size = m;
25 // static constexpr size_t mask_bits = r;
26 // static constexpr result_type xor_mask = a;
27 // static constexpr size_t tempering_u = u;
28 // static constexpr result_type tempering_d = d;
29 // static constexpr size_t tempering_s = s;
30 // static constexpr result_type tempering_b = b;
31 // static constexpr size_t tempering_t = t
    [all...]
  /external/libcxx/test/std/utilities/time/time.duration/time.duration.comparisons/
op_equal.pass.cpp 15 // constexpr
20 // constexpr
73 constexpr std::chrono::seconds s1(3);
74 constexpr std::chrono::seconds s2(3);
79 constexpr std::chrono::seconds s1(3);
80 constexpr std::chrono::seconds s2(4);
85 constexpr std::chrono::milliseconds s1(3);
86 constexpr std::chrono::microseconds s2(3000);
91 constexpr std::chrono::milliseconds s1(3);
92 constexpr std::chrono::microseconds s2(4000)
    [all...]
  /frameworks/base/tools/aapt2/util/
TypeTraits.h 28 static constexpr decltype(std::declval<V>() op std::declval<W>(), bool()) test(int) { \
32 static constexpr bool test(...) { \
35 static constexpr bool value = test<T, U>(int()); \
46 static constexpr bool value = has_eq_op<T, U>::value && has_lt_op<T, U>::value;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.eng/rand.eng.mers/
values.pass.cpp 22 // static constexpr size_t word_size = w;
23 // static constexpr size_t state_size = n;
24 // static constexpr size_t shift_size = m;
25 // static constexpr size_t mask_bits = r;
26 // static constexpr result_type xor_mask = a;
27 // static constexpr size_t tempering_u = u;
28 // static constexpr result_type tempering_d = d;
29 // static constexpr size_t tempering_s = s;
30 // static constexpr result_type tempering_b = b;
31 // static constexpr size_t tempering_t = t
    [all...]
  /system/extras/simpleperf/runtest/
comm_change.cpp 3 constexpr int LOOP_COUNT = 100000000;
function_fork.cpp 3 constexpr int LOOP_COUNT = 100000000;
function_indirect_recursive.cpp 0 constexpr int LOOP_COUNT = 5000000;
function_recursive.cpp 0 constexpr int LOOP_COUNT = 5000000;
  /system/tpm/tpm_manager/common/
tpm_manager_constants.h 24 constexpr char kTpmManagerServiceName[] = "org.chromium.TpmManager";
25 constexpr char kTpmManagerServicePath[] = "/org/chromium/TpmManager";
32 constexpr const char* kTestDependency = "Test";
37 constexpr const char* kInitialTpmOwnerDependencies[] = { kTestDependency };

Completed in 2889 milliseconds

1 2 3 4 5 67 8 91011>>