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

<<21222324252627282930>>

  /external/libcxx/test/std/utilities/time/time.duration/time.duration.special/
zero.pass.cpp 14 // static constexpr duration zero();
32 constexpr Rep zero_rep = std::chrono::duration_values<Rep>::zero();
  /external/libcxx/test/std/utilities/time/time.point/time.point.cons/
convert.pass.cpp 32 constexpr std::chrono::time_point<Clock, Duration2> t2(Duration2(3));
33 constexpr std::chrono::time_point<Clock, Duration1> t1 = t2;
duration.pass.cpp 33 constexpr std::chrono::time_point<Clock, Duration> t(Duration(3));
37 constexpr std::chrono::time_point<Clock, Duration> t(std::chrono::seconds(3));
  /external/libcxx/test/std/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));
  /external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
const_pair_U_V.pass.cpp 34 constexpr P1 p1(3, 4);
35 constexpr P2 p2 = p1;
copy_ctor.pass.cpp 34 constexpr P1 p1(3, 4);
35 constexpr P1 p2 = p1;
  /frameworks/native/cmds/installd/
installd_deps.h 36 constexpr size_t kPropertyKeyMax = 32u;
37 constexpr size_t kPropertyValueMax = 92u;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
limits 24 static constexpr bool is_specialized = false;
25 static constexpr T min() noexcept;
26 static constexpr T max() noexcept;
27 static constexpr T lowest() noexcept;
29 static constexpr int digits = 0;
30 static constexpr int digits10 = 0;
31 static constexpr int max_digits10 = 0;
32 static constexpr bool is_signed = false;
33 static constexpr bool is_integer = false;
34 static constexpr bool is_exact = false
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/
max.pass.cpp 48 constexpr int x = 1;
49 constexpr int y = 0;
min.pass.cpp 48 constexpr int x = 1;
49 constexpr int y = 0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/rand/rand.adapt/rand.adapt.ibits/
values.pass.cpp 20 // static constexpr result_type min() { return 0; }
21 // static constexpr result_type max() { return 2^w - 1; }
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/arithmetic.operations/
divides.pass.cpp 31 constexpr int foo = std::divides<int> () (3, 2);
34 constexpr int bar = std::divides<> () (3.0, 2);
minus.pass.cpp 31 constexpr int foo = std::minus<int> () (3, 2);
34 constexpr int bar = std::minus<> () (3.0, 2);
modulus.pass.cpp 31 constexpr int foo = std::modulus<int> () (3, 2);
34 constexpr int bar = std::modulus<> () (3L, 2);
multiplies.pass.cpp 31 constexpr int foo = std::multiplies<int> () (3, 2);
34 constexpr int bar = std::multiplies<> () (3.0, 2);
negate.pass.cpp 31 constexpr int foo = std::negate<int> () (3);
34 constexpr int bar = std::negate<> () (3.0);
plus.pass.cpp 31 constexpr int foo = std::plus<int> () (3, 2);
34 constexpr int bar = std::plus<> () (3.0, 2);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/comparisons/
equal_to.pass.cpp 33 constexpr bool foo = std::equal_to<int> () (36, 36);
36 constexpr bool bar = std::equal_to<> () (36.0, 36);
greater.pass.cpp 37 constexpr bool foo = std::greater<int> () (36, 36);
40 constexpr bool bar = std::greater<> () (36.0, 36);
greater_equal.pass.cpp 37 constexpr bool foo = std::greater_equal<int> () (36, 36);
40 constexpr bool bar = std::greater_equal<> () (36.0, 36);
less.pass.cpp 37 constexpr bool foo = std::less<int> () (36, 36);
40 constexpr bool bar = std::less<> () (36.0, 36);
less_equal.pass.cpp 37 constexpr bool foo = std::less_equal<int> () (36, 36);
40 constexpr bool bar = std::less_equal<> () (36.0, 36);
not_equal_to.pass.cpp 35 constexpr bool foo = std::not_equal_to<int> () (36, 36);
38 constexpr bool bar = std::not_equal_to<> () (36.0, 36);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/logical.operations/
logical_and.pass.cpp 42 constexpr bool foo = std::logical_and<int> () (36, 36);
45 constexpr bool bar = std::logical_and<> () (36.0, 36);

Completed in 244 milliseconds

<<21222324252627282930>>