HomeSort by relevance Sort by last modified time
    Searched defs:decltype (Results 1 - 25 of 33) sorted by null

1 2

  /external/parameter-framework/upstream/parameter/
LogarithmicParameterAdaptation.h 73 double _dLogarithmBase{std::exp(decltype(_dLogarithmBase){1})}; function in class:CLogarithmicParameterAdaptation::std
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/
range_access.h 48 begin(_Container& __cont) -> decltype(__cont.begin()) function
58 begin(const _Container& __cont) -> decltype(__cont.begin()) function
68 end(_Container& __cont) -> decltype(__cont.end()) function
78 end(const _Container& __cont) -> decltype(__cont.end()) function
stl_iterator.h 381 -> decltype(__y.base() - __x.base()) function
886 -> decltype(__lhs.base() - __rhs.base()) function
1106 -> decltype(__x.base() - __y.base()) function
1113 -> decltype(__x.base() - __y.base()) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/
range_access.h 48 begin(_Container& __cont) -> decltype(__cont.begin()) function
58 begin(const _Container& __cont) -> decltype(__cont.begin()) function
68 end(_Container& __cont) -> decltype(__cont.end()) function
78 end(const _Container& __cont) -> decltype(__cont.end()) function
stl_iterator.h 381 -> decltype(__y.base() - __x.base()) function
886 -> decltype(__lhs.base() - __rhs.base()) function
1106 -> decltype(__x.base() - __y.base()) function
1113 -> decltype(__x.base() - __y.base()) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/
range_access.h 48 begin(_Container& __cont) -> decltype(__cont.begin()) function
58 begin(const _Container& __cont) -> decltype(__cont.begin()) function
68 end(_Container& __cont) -> decltype(__cont.end()) function
78 end(const _Container& __cont) -> decltype(__cont.end()) function
stl_iterator.h 381 -> decltype(__y.base() - __x.base()) function
886 -> decltype(__lhs.base() - __rhs.base()) function
1106 -> decltype(__x.base() - __y.base()) function
1113 -> decltype(__x.base() - __y.base()) function
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
range_access.h 48 begin(_Container& __cont) -> decltype(__cont.begin()) function
58 begin(const _Container& __cont) -> decltype(__cont.begin()) function
68 end(_Container& __cont) -> decltype(__cont.end()) function
78 end(const _Container& __cont) -> decltype(__cont.end()) function
  /art/compiler/optimizing/
nodes_shared.h 69 auto Compute(T x, U y) const -> decltype(x & ~y) { function in class:art::HBitwiseNegatedRight
70 static_assert(std::is_same<decltype(x & ~y), decltype(x | ~y)>::value &&
71 std::is_same<decltype(x & ~y), decltype(x ^ ~y)>::value,
  /external/clang/test/CodeGenCXX/
cxx11-user-defined-literal.cpp 4 using size_t = decltype(sizeof(int));
49 template<typename T> auto g(T t) -> decltype("foo"_x(t)) { return "foo"_x(t); }
50 template<typename T> auto i(T t) -> decltype(operator"" _x("foo", 3)(t)) { return operator"" _x("foo", 3)(t); } function
  /external/clang/test/PCH/
implicitly-deleted.cpp 11 template<typename T> void doit(decltype(T(make<const T&>()))*) { T(make<const T&>()); } function
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p4-0x.cpp 5 decltype(this) q; // expected-error {{invalid use of 'this' outside of a non-static member function}}
10 typedef auto f() -> decltype(this); // expected-error {{invalid use of 'this' outside of a non-static member function}} typedef in struct:S
p3-0x.cpp 8 auto g1() noexcept(noexcept(f(ptr))) -> decltype(f(this->ptr));
9 auto g2() const noexcept(noexcept(f((*this).ptr))) -> decltype(f(ptr));
21 template<class T> auto f(T t) -> decltype(t + g())
25 template auto B::f(int t) -> decltype(t + g());
33 auto g1() noexcept(noexcept(f(ptr))) -> decltype(f(ptr));
34 auto g2() const noexcept(noexcept(f(((this))->ptr))) -> decltype(f(ptr));
35 auto g3() noexcept(noexcept(f(this->ptr))) -> decltype(f((*this).ptr));
36 auto g4() const noexcept(noexcept(f(((this))->ptr))) -> decltype(f(this->ptr));
37 auto g5() noexcept(noexcept(this->f(ptr))) -> decltype(this->f(ptr));
38 auto g6() const noexcept(noexcept(this->f(((this))->ptr))) -> decltype(this->f(ptr))
67 auto g() -> decltype(this->f()) { return f(); } function in struct:PR14263::X
68 auto g() const -> decltype(this->f()) { return f(); } function in struct:PR14263::X
120 auto X1::h() -> decltype(m) { return 0; } \/\/ expected-error{{'this' cannot be implicitly used in a static member function declaration}} function in namespace:Static
    [all...]
  /external/v8/tools/gyp/test/mac/clang-cxx-language-standard/
c++98.cc 15 decltype, enumerator in enum:cxx11_keywords
  /external/clang/test/Lexer/
cxx0x_keyword_as_cxx98.cpp 17 extern int ID(decltype); // expected-warning {{'decltype' is a keyword in C++11}}
32 int decltype; // already diagnosed in this TU variable
keywords_test.cpp 44 CXX11_KEYWORD(decltype); variable
  /external/clang/test/SemaCXX/
trailing-return-0x.cpp 21 decltype(auto) g2(); // expected-warning{{extension}} expected-error-re{{{{^}}deduced return types are a C++14 extension}}
39 auto i(T x) -> decltype(x) function
52 auto g(T x, U y) -> decltype(x + y)
60 auto h(T x, U y, V z) -> decltype(x + y + z)
77 auto f1(T t) -> decltype(f1(t)) {} // expected-note{{candidate template ignored}}
84 auto f2(T t) -> decltype(f2(&t)) {} // expected-note{{candidate template ignored}}
95 auto f() -> decltype(+*this); // expected-note {{here}}
96 auto f() -> decltype((*this)[0]); // expected-error {{cannot be overloaded}}
103 auto g()->decltype(this->f<0>());
class-base-member-init.cpp 83 A() : decltype(Base(1))(3) {
86 decltype(Base(1))(2), // expected-error {{multiple initializations given for base 'decltype(test5::Base(1))' (aka 'test5::Base')}}
87 decltype(int())() { // expected-error {{constructor initializer 'decltype(int())' (aka 'int') does not name a class}} function in struct:test5::A
89 A(float) : decltype(A())(3) {
for-range-examples.cpp 61 decltype(sizeof(char)) size;
87 auto operator*() const -> decltype(f(*i)) { return f(*i); } function in class:map_range::map_iter
112 auto map(const F &f, T &t) -> iter_pair<map_iter<F, decltype(t.begin())>> {
113 typedef map_iter<F, decltype(t.begin())> iter;
  /bionic/tests/
math_data_test.h 108 static inline auto SignAndMagnitudeToBiased(const T& value) -> decltype(fp_u<T>::sign_magnitude) { function
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p11-1y.cpp 7 using T = decltype(f);
11 using T = decltype(f);
23 (void) [c("bar")] () -> decltype(c) { // outer c, not init-capture function
62 using T = decltype(c);
70 template<typename T> decltype(auto) move(T &&t) { return static_cast<typename remove_reference<T>::type&&>(t); }
  /external/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/
p1.cpp 17 auto begin(T &&t) -> decltype(t.begin()) { return t.begin(); } // expected-note 2{{ignored: substitution failure}} function in namespace:X
19 auto end(T &&t) -> decltype(t.end()) { return t.end(); } // expected-note {{candidate template ignored: substitution failure [with T = }} function in namespace:X
22 auto begin(T &&t) -> decltype(t.alt_begin()) { return t.alt_begin(); } // expected-note {{selected 'begin' template [with T = }} \ function in namespace:X
25 auto end(T &&t) -> decltype(t.alt_end()) { return t.alt_end(); } // expected-note {{candidate template ignored: substitution failure [with T = }} function in namespace:X
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 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}} function in struct:PacksAtDifferentLevels::PR13811::X6
203 constexpr auto f(A ...a, B ...b, C ...c) const -> decltype(g(a+b+c...)) { return g(a+b+c...); }
  /external/clang/test/SemaTemplate/
ms-lookup-template-base-classes.cpp 271 auto foo(int j) -> decltype(y * j) { // expected-warning {{lookup into dependent bases}} function in struct:nonmethod_missing_this::Derived
456 static auto lateSpecifiedFunc() -> decltype(NameFromBase()) {
569 template <typename T> decltype(g(T())) check(); // expected-note{{candidate template ignored: substitution failure [with T = int]: use of undeclared identifier 'g'}}
570 decltype(check<int>()) x; // expected-error{{no matching function for call to 'check'}}
573 template <typename T> decltype(h(T())) check2(); // expected-note{{candidate template ignored: substitution failure [with T = int]: no matching function for call to 'h'}}
574 decltype(check2<int>()) y; // expected-error{{no matching function for call to 'check2'}}
  /external/llvm/include/llvm/ADT/
STLExtras.h 201 template <typename U> static char(&f(const U &, decltype(&U::rbegin)))[1];
211 nullptr) -> decltype(make_range(C.rbegin(), C.rend())) {
228 -> decltype(make_range(llvm::make_reverse_iterator(std::end(C)),
385 auto find(R &&Range, const T &val) -> decltype(Range.begin()) { function in namespace:llvm
463 auto operator()(A &lhs, B &rhs) const -> decltype(func(*lhs, *rhs)) { function in struct:llvm::deref

Completed in 1350 milliseconds

1 2