Searched
refs:constexpr (Results
426 -
450 of
1197) sorted by null
<<11121314151617181920>>
/frameworks/compile/mclinker/lib/Target/AArch64/ |
AArch64CA53Erratum843419Stub2.h | 25 static constexpr unsigned ErratumInsnOffset = 12;
|
AArch64LDBackend.h | 29 static constexpr int64_t MAX_FWD_BRANCH_OFFSET = (((1 << 25) - 1) << 2); 30 static constexpr int64_t MAX_BWD_BRANCH_OFFSET = (-((1 << 25) << 2)); 32 static constexpr int64_t MAX_ADRP_IMM = (1 << 20) - 1; 33 static constexpr int64_t MIN_ADRP_IMM = -(1 << 20);
|
/frameworks/native/include/gui/ |
SensorEventQueue.h | 60 static constexpr int32_t SENSOR_DELAY_FASTEST = 0; 62 static constexpr int32_t SENSOR_DELAY_GAME = 20000; 64 static constexpr int32_t SENSOR_DELAY_UI = 66667; 66 static constexpr int32_t SENSOR_DELAY_NORMAL = 200000;
|
/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/optional/optional.object/optional.object.assign/ |
move.pass.cpp | 52 constexpr optional<int> opt2; 59 constexpr optional<int> opt2(2); 68 constexpr optional<int> opt2; 75 constexpr optional<int> opt2(2);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/optional/optional.object/optional.object.observe/ |
dereference.pass.cpp | 28 constexpr int test() const {return 3;}
|
value.pass.cpp | 27 constexpr int test() const {return 3;}
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cons/ |
default.pass.cpp | 31 constexpr std::chrono::time_point<Clock, Duration> t;
|
/system/core/fastboot/ |
tcp.h | 42 constexpr int kDefaultPort = 5554;
|
/system/core/libnativebridge/tests/ |
NativeBridge2Signal_test.cpp | 24 constexpr const char* kNativeBridgeLibrary2 = "libnativebridge2-dummy.so";
|
/art/runtime/base/ |
bit_field.h | 25 static constexpr uintptr_t kUintPtrTOne = 1U; 33 static constexpr size_t position = kPosition; 34 static constexpr size_t size = kSize;
|
/art/runtime/lambda/ |
shorty_field_type.h | 64 inline constexpr ShortyFieldType(decltype(kByte) c) : value_(c) { 323 static constexpr const char kArray = '['; 324 static constexpr const char kVoid = 'V'; 357 static inline constexpr bool IsType() { 363 static inline constexpr bool IsPrimitiveType() { 369 static inline constexpr bool IsPrimitiveNarrowType() { 375 static inline constexpr bool IsPrimitiveWideType() { 382 static inline constexpr bool IsObjectType() { 388 static inline constexpr bool IsLambdaType() { 394 static inline constexpr bool Is ## name ## TypeImpl(type* const = 0) { [all...] |
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/ |
p1-11.cpp | 13 constexpr std::nullptr_t get_nullptr() { return nullptr; } 15 constexpr std::nullptr_t np = nullptr; 28 // expected-note{{read of non-constexpr variable 'nonconst_np' is not allowed in a constant expression}} 66 constexpr int i = 7;
|
/external/libcxx/test/std/containers/sequences/array/ |
at.pass.cpp | 13 // const_reference operator[] (size_type); // constexpr in C++14 15 // const_reference at (size_type); // constexpr in C++14 61 constexpr C c = {1, 2, 3.5}; 63 constexpr T t1 = c.at(0); 66 constexpr T t2 = c.at(2);
|
/external/libcxx/test/std/experimental/string.view/string.view.comparison/ |
opeq.string_view.string_view.pass.cpp | 13 // constexpr bool operator==(const basic_string_view<charT,traits> lhs, 54 constexpr SV sv1; 55 constexpr SV sv2; 56 constexpr SV sv3 { "abcde", 5 };
|
opne.string_view.string_view.pass.cpp | 13 // constexpr bool operator!=(const basic_string_view<charT,traits> lhs, 54 constexpr SV sv1; 55 constexpr SV sv2; 56 constexpr SV sv3 { "abcde", 5 };
|
/external/libcxx/test/std/numerics/complex.number/complex.members/ |
real_imag.pass.cpp | 23 constexpr std::complex<T> c1; 26 constexpr std::complex<T> c2(3); 29 constexpr std::complex<T> c3(3, 4);
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/ |
get_const.pass.cpp | 42 constexpr T t(2.718, 5); 48 constexpr T t{Empty()}; 49 constexpr Empty e = std::get<0>(t);
|
/hardware/libhardware/tests/hardware/ |
struct-size.cpp | 28 template<size_t> static constexpr size_t CheckSizeHelper(size_t, size_t); 30 template<> constexpr size_t CheckSizeHelper<4>(size_t size32, size_t /* size64 */) { 34 template<> constexpr size_t CheckSizeHelper<8>(size_t /* size32 */, size_t size64) {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/array/ |
at.pass.cpp | 13 // const_reference operator[] (size_type); // constexpr in C++14 15 // const_reference at (size_type); // constexpr in C++14 57 constexpr C c = {1, 2, 3.5}; 59 constexpr T t1 = c.at(0); 62 constexpr T t2 = c.at(2);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.members/ |
real_imag.pass.cpp | 23 constexpr std::complex<T> c1; 26 constexpr std::complex<T> c2(3); 29 constexpr std::complex<T> c3(3, 4);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
UTypes.pass.cpp | 28 explicit constexpr A(int i) : id_(i) {} 68 constexpr std::tuple<Empty> t0{Empty()}; 71 constexpr std::tuple<A, A> t(3, 2);
|
default.pass.cpp | 14 // constexpr tuple(); 51 constexpr std::tuple<> t; 54 constexpr std::tuple<int> t; 58 constexpr std::tuple<int, char*> t;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
get_const.pass.cpp | 40 constexpr T t(2.718, 5); 46 constexpr T t{Empty()}; 47 constexpr Empty e = std::get<0>(t);
|
/system/bt/service/common/bluetooth/ |
uuid.h | 30 static constexpr size_t kNumBytes128 = 16; 31 static constexpr size_t kNumBytes32 = 4; 32 static constexpr size_t kNumBytes16 = 2;
|
Completed in 2965 milliseconds
<<11121314151617181920>>