HomeSort by relevance Sort by last modified time
    Searched refs:constexpr (Results 126 - 150 of 282) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/bits/
move.h 75 constexpr _Tp&&
86 constexpr _Tp&&
100 constexpr typename std::remove_reference<_Tp>::type&&
119 inline constexpr typename
stl_pair.h 79 constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
124 constexpr pair(const pair<_U1, _U2>& __p)
127 constexpr pair(const pair&) = default;
128 constexpr pair(pair&&) = default;
133 constexpr pair(_U1&& __x, const _T2& __y)
138 constexpr pair(const _T1& __x, _U2&& __y)
144 constexpr pair(_U1&& __x, _U2&& __y)
150 constexpr pair(pair<_U1, _U2>&& __p)
274 constexpr pair<typename __decay_and_strip<_T1>::__type,
char_traits.h 395 static constexpr bool
399 static constexpr bool
454 static constexpr char_type
458 static constexpr int_type
462 static constexpr bool
466 static constexpr int_type
470 static constexpr int_type
488 static constexpr bool
492 static constexpr bool
547 static constexpr char_typ
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 76 constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
116 constexpr pair(const pair<_U1, _U2>& __p)
119 constexpr pair(const pair&) = default;
120 constexpr pair(pair&&) = default;
125 constexpr pair(_U1&& __x, const _T2& __y)
130 constexpr pair(const _T1& __x, _U2&& __y)
136 constexpr pair(_U1&& __x, _U2&& __y)
142 constexpr pair(pair<_U1, _U2>&& __p)
266 constexpr pair<typename __decay_and_strip<_T1>::__type,
move.h 76 constexpr _Tp&&
87 constexpr _Tp&&
101 constexpr typename std::remove_reference<_Tp>::type&&
char_traits.h 397 static constexpr bool
401 static constexpr bool
456 static constexpr char_type
460 static constexpr int_type
464 static constexpr bool
468 static constexpr int_type
472 static constexpr int_type
490 static constexpr bool
494 static constexpr bool
549 static constexpr char_typ
    [all...]
ptr_traits.h 76 static constexpr bool
81 static constexpr bool
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/bits/
stl_pair.h 76 constexpr piecewise_construct_t piecewise_construct = piecewise_construct_t();
116 constexpr pair(const pair<_U1, _U2>& __p)
119 constexpr pair(const pair&) = default;
120 constexpr pair(pair&&) = default;
125 constexpr pair(_U1&& __x, const _T2& __y)
130 constexpr pair(const _T1& __x, _U2&& __y)
136 constexpr pair(_U1&& __x, _U2&& __y)
142 constexpr pair(pair<_U1, _U2>&& __p)
266 constexpr pair<typename __decay_and_strip<_T1>::__type,
move.h 76 constexpr _Tp&&
87 constexpr _Tp&&
101 constexpr typename std::remove_reference<_Tp>::type&&
char_traits.h 397 static constexpr bool
401 static constexpr bool
456 static constexpr char_type
460 static constexpr int_type
464 static constexpr bool
468 static constexpr int_type
472 static constexpr int_type
490 static constexpr bool
494 static constexpr bool
549 static constexpr char_typ
    [all...]
ptr_traits.h 76 static constexpr bool
81 static constexpr bool
  /external/clang/test/CXX/special/class.inhctor/
p4.cpp 60 constexpr A(int, float = 0) {}
69 constexpr B b0(0, 0.0f); // ok, constexpr
  /external/clang/test/Parser/
cxx-member-initializers.cpp 40 constexpr a(int) {}
41 constexpr operator int() const { return 0; }
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p7-0x.cpp 36 constexpr Convert(T v) : v(v) {}
37 constexpr operator T() const { return v; }
87 constexpr long double e40 = 1E40L, e30 = 1E30L, e39 = 1E39L;
101 constexpr long double e315 = 1E315L, e305 = 1E305L, e314 = 1E314L;
p7-cxx11-nowarn.cpp 37 constexpr Convert(T v) : v(v) {}
38 constexpr operator T() const { return v; }
88 constexpr long double e40 = 1E40L, e30 = 1E30L, e39 = 1E39L;
102 constexpr long double e315 = 1E315L, e305 = 1E305L, e314 = 1E314L;
  /external/clang/test/CXX/special/class.copy/
p8-cxx11.cpp 47 constexpr friend F::F(const F &);
  /external/clang/test/CodeGenCXX/
blocks-cxx11.cpp 47 constexpr _Complex int x = 500;
  /external/clang/test/SemaCXX/
cxx0x-defaulted-functions.cpp 47 constexpr S() = default;
48 constexpr S(const S&) = default;
49 constexpr S(S&&) = default;
51 struct lit { constexpr lit() {} };
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
  /art/compiler/dex/
arena_allocator.h 35 static constexpr size_t kDefaultSize = 128 * KB;
99 static constexpr bool kCountAllocations = false;
  /external/clang/test/FixIt/
fixit-cxx0x.cpp 126 constexpr int i; // expected-error {{non-static data member cannot be constexpr; did you intend to make it const?}}
127 constexpr int j = 7; // expected-error {{non-static data member cannot be constexpr; did you intend to make it static?}}
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 191 constexpr int g(int n, int m) { return n * 10 + m; }
196 constexpr auto f1(A ...a) const -> decltype(g(A(a + B())...)) { return g(A(a + B())...); }
199 constexpr auto f2(A ...a, B ...b) const -> decltype(g((&a)[b] ...)) { return g((&a)[b] ...); } // expected-note {{past-the-end}}
203 constexpr auto f(A ...a, B ...b, C ...c) const -> decltype(g(a+b+c...)) { return g(a+b+c...); }
206 struct A { constexpr operator int() const { return 2; } };
207 struct B { constexpr operator int() const { return 1; } };
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
alloc_traits.h 159 static constexpr bool _S_propagate_on_copy_assign()
162 static constexpr bool _S_propagate_on_move_assign()
165 static constexpr bool _S_propagate_on_swap()
168 static constexpr bool _S_always_equal()
171 static constexpr bool _S_nothrow_move()
174 static constexpr bool _S_nothrow_swap()
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/
alloc_traits.h 159 static constexpr bool _S_propagate_on_copy_assign()
162 static constexpr bool _S_propagate_on_move_assign()
165 static constexpr bool _S_propagate_on_swap()
168 static constexpr bool _S_always_equal()
171 static constexpr bool _S_nothrow_move()
174 static constexpr bool _S_nothrow_swap()
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/
alloc_traits.h 172 static constexpr bool _S_propagate_on_copy_assign()
175 static constexpr bool _S_propagate_on_move_assign()
178 static constexpr bool _S_propagate_on_swap()
181 static constexpr bool _S_always_equal()
184 static constexpr bool _S_nothrow_move()
187 static constexpr bool _S_nothrow_swap()

Completed in 1463 milliseconds

1 2 3 4 56 7 8 91011>>