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

<<21222324252627282930>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/logical.operations/
logical_not.pass.cpp 33 constexpr bool foo = std::logical_not<int> () (36);
36 constexpr bool bar = std::logical_not<> () (36);
logical_or.pass.cpp 41 constexpr bool foo = std::logical_or<int> () (36, 36);
44 constexpr bool bar = std::logical_or<> () (36.0, 36);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
__has_operator_addressof.pass.cpp 27 constexpr B* operator&() const;
40 constexpr C operator&() const;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.inplace/
in_place_t.pass.cpp 13 // constexpr in_place_t in_place{};
24 constexpr
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.nullopt/
nullopt_t.pass.cpp 13 // constexpr nullopt_t nullopt(unspecified);
24 constexpr
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.arithmetic/
op_-.pass.cpp 28 constexpr std::chrono::minutes m(3);
29 constexpr std::chrono::minutes m2 = -m;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.cons/
convert_exact.pass.cpp 31 constexpr std::chrono::milliseconds ms(1);
32 constexpr std::chrono::microseconds us = ms;
convert_inexact.pass.cpp 31 constexpr std::chrono::duration<double, std::micro> us(1);
32 constexpr std::chrono::duration<double, std::milli> ms = us;
convert_int_to_float.pass.cpp 31 constexpr std::chrono::duration<int> i(3);
32 constexpr std::chrono::duration<double, std::milli> d = i;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.duration/time.duration.special/
max.pass.cpp 14 // static constexpr duration max();
33 constexpr Rep max_rep = std::chrono::duration_values<Rep>::max();
min.pass.cpp 14 // static constexpr duration min();
33 constexpr Rep min_rep = std::chrono::duration_values<Rep>::min();
zero.pass.cpp 14 // static constexpr duration zero();
32 constexpr Rep zero_rep = std::chrono::duration_values<Rep>::zero();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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));
  /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/
const_pair.pass.cpp 34 constexpr P0 p0(2.5, 'a');
35 constexpr T1 t1 = p0;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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;
  /prebuilts/ndk/current/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...]
  /art/runtime/jit/
jit.h 39 static constexpr int16_t kJitCheckForOSR = -1;
40 static constexpr int16_t kJitHotnessDisabled = -2;
44 static constexpr bool kStressMode = kIsDebugBuild;
45 static constexpr size_t kDefaultCompileThreshold = kStressMode ? 2 : 10000;
46 static constexpr size_t kDefaultPriorityThreadWeightRatio = 1000;
47 static constexpr size_t kDefaultInvokeTransitionWeightRatio = 500;
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
const_Types.pass.cpp 33 // The constexpr is required to make is_constructible instantiate this template.
36 constexpr explicit NoValueCtor(T)
52 constexpr explicit NoValueCtorEmpty(T)
64 constexpr std::tuple<int> t(2);
68 constexpr std::tuple<int> t;
79 constexpr std::tuple<int, char*> t(2, nullptr);
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
alloc_traits.h 145 static constexpr bool _S_propagate_on_copy_assign()
148 static constexpr bool _S_propagate_on_move_assign()
151 static constexpr bool _S_propagate_on_swap()
154 static constexpr bool _S_always_equal()
157 static constexpr bool _S_nothrow_move()
160 static constexpr bool _S_nothrow_swap()
  /external/libcxx/include/
complex 26 complex(const T& re = T(), const T& im = T()); // constexpr in C++14
27 complex(const complex&); // constexpr in C++14
28 template<class X> complex(const complex<X>&); // constexpr in C++14
30 T real() const; // constexpr in C++14
31 T imag() const; // constexpr in C++14
56 constexpr complex(float re = 0.0f, float im = 0.0f);
57 explicit constexpr complex(const complex<double>&);
58 explicit constexpr complex(const complex<long double>&);
60 constexpr float real() const;
62 constexpr float imag() const
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
complex 26 complex(const T& re = T(), const T& im = T()); // constexpr in C++14
27 complex(const complex&); // constexpr in C++14
28 template<class X> complex(const complex<X>&); // constexpr in C++14
30 T real() const; // constexpr in C++14
31 T imag() const; // constexpr in C++14
56 constexpr complex(float re = 0.0f, float im = 0.0f);
57 explicit constexpr complex(const complex<double>&);
58 explicit constexpr complex(const complex<long double>&);
60 constexpr float real() const;
62 constexpr float imag() const
    [all...]

Completed in 261 milliseconds

<<21222324252627282930>>