Searched
full:constexpr (Results
601 -
625 of
1617) sorted by null
<<21222324252627282930>>
/art/runtime/ |
runtime_android.cc | 30 static constexpr bool kDumpHeapObjectOnSigsevg = false; 31 static constexpr bool kUseSignalHandler = false;
|
runtime_options.h | 55 // Don't ODR-use constexpr default values, which means that Struct::Fields 56 // that are declared 'static constexpr T Name = Value' don't need to have a matching definition.
|
/bionic/libc/bionic/ |
c16rtomb.cpp | 35 static inline constexpr bool is_high_surrogate(char16_t c16) { 39 static inline constexpr bool is_low_surrogate(char16_t c16) {
|
/device/google/contexthub/util/nanotool/ |
androidcontexthub.cpp | 38 constexpr char kSensorDeviceFile[] = "/dev/nanohub"; 39 constexpr char kCommsDeviceFile[] = "/dev/nanohub_comms"; 40 constexpr char kLockDirectory[] = "/data/system/nanohub_lock"; 41 constexpr char kLockFile[] = "/data/system/nanohub_lock/lock"; 43 constexpr mode_t kLockDirPermissions = (S_IRUSR | S_IWUSR | S_IXUSR); 45 constexpr auto kLockDelay = std::chrono::milliseconds(100); 47 constexpr int kDeviceFileCount = 2; 48 constexpr int kPollNoTimeout = -1;
|
/external/clang/test/Modules/Inputs/ |
cxx-templates-b.h | 24 constexpr int Outer<T>::Inner<U>::g() { return 2; } 63 constexpr void (*UseRedeclaredEnumB)(UseInt<1>) = UseRedeclaredEnum<int>;
|
/external/clang/test/Preprocessor/ |
cxx_oper_keyword_ms_compat.cpp | 40 #define constexpr macro 125 constexpr
|
/external/clang/test/SemaCXX/ |
blocks.cpp | 112 // instantiation. The template function has to be constexpr because 116 template <class T> constexpr int func() { return 0; }
|
static-assert.cpp | 5 static_assert(f(), "f"); // expected-error {{static_assert expression is not an integral constant expression}} expected-note {{non-constexpr function 'f' cannot be used in a constant expression}} 46 static constexpr T t = {}; // no error here
|
/external/libcxx/include/experimental/ |
tuple | 26 template <class T> constexpr size_t tuple_size_v 31 constexpr decltype(auto) apply(F&& f, Tuple&& t);
|
/external/libcxx/test/std/algorithms/alg.sorting/alg.min.max/ |
max_comp.pass.cpp | 50 constexpr int x = 1; 51 constexpr int y = 0;
|
max_element.pass.cpp | 61 constexpr int il[] = { 2, 4, 6, 8, 7, 5, 3, 1 }; 67 constexpr auto p = std::max_element(il,il+8);
|
min_comp.pass.cpp | 50 constexpr int x = 1; 51 constexpr int y = 0;
|
min_element.pass.cpp | 61 constexpr int il[] = { 2, 4, 6, 8, 7, 5, 3, 1 }; 67 constexpr auto p = std::min_element(il, il+8);
|
/external/libcxx/test/std/experimental/string.view/string.view.access/ |
at.pass.cpp | 16 // constexpr const _CharT& at(size_type _pos) const; 51 constexpr std::experimental::basic_string_view<char> sv ( "ABC", 2 );
|
/external/libcxx/test/std/language.support/support.initlist/support.initlist.access/ |
access.pass.cpp | 38 constexpr B(std::initializer_list<int> il) 60 constexpr B test2 = {3, 2, 1};
|
/external/libcxx/test/std/language.support/support.initlist/support.initlist.range/ |
begin_end.pass.cpp | 36 constexpr B(std::initializer_list<int> il) 57 constexpr B test2 = {3, 2, 1};
|
/external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/ |
invoke_function_object.pass.cpp | 32 constexpr int operator()(S const & s) const 35 // The constexpr is needed so that it is instantiated while checking
|
/external/libcxx/test/std/utilities/function.objects/bitwise.operations/ |
bit_not.pass.cpp | 41 constexpr int foo = std::bit_not<int> () (0xEA95) & 0xFFFF; 44 constexpr int bar = std::bit_not<> () (0xEA95) & 0xFFFF;
|
/external/libcxx/test/std/utilities/function.objects/logical.operations/ |
logical_and.pass.cpp | 44 constexpr bool foo = std::logical_and<int> () (36, 36); 47 constexpr bool bar = std::logical_and<> () (36.0, 36);
|
logical_or.pass.cpp | 43 constexpr bool foo = std::logical_or<int> () (36, 36); 46 constexpr bool bar = std::logical_or<> () (36.0, 36);
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
const_pair.pass.cpp | 36 constexpr P0 p0(2.5, 'a'); 37 constexpr T1 t1 = p0;
|
/external/libcxx/test/std/utilities/utility/pairs/pair.astuple/ |
get_non_const.pass.cpp | 25 constexpr S() : a{1,2}, k(std::get<0>(a)) {} 28 constexpr std::pair<int, int> getP () { return { 3, 4 }; }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.sorting/alg.min.max/ |
max_comp.pass.cpp | 50 constexpr int x = 1; 51 constexpr int y = 0;
|
min_comp.pass.cpp | 50 constexpr int x = 1; 51 constexpr int y = 0;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.initlist/support.initlist.access/ |
access.pass.cpp | 38 constexpr B(std::initializer_list<int> il) 60 constexpr B test2 = {3, 2, 1};
|
Completed in 816 milliseconds
<<21222324252627282930>>