HomeSort by relevance Sort by last modified time
    Searched refs:decltype (Results 76 - 100 of 123) sorted by null

1 2 34 5

  /external/clang/test/SemaTemplate/
resolve-single-template-id.cpp 38 decltype(oneT<int>)* fun = 0;
alias-templates.cpp 13 typedef decltype(D<B>().g) H;
15 template<typename T> using I = A<decltype(h.g)>;
16 template<typename T> using J = typename A<decltype(h.g)>::template C<I<T>>;
27 typedef decltype(val(make<thing>())) inner_ptr;
constexpr-instantiate.cpp 53 template<typename T> auto h(T t[f(sizeof(T))]) -> decltype(&*t) {
  /external/clang/test/SemaCXX/
cxx0x-defaulted-functions.cpp 108 void test1(decltype(declval<DelayImplicit>() = DelayImplicit(DelayImplicit())));
109 void test2(decltype(declval<DelayImplicit>() = declval<const DelayImplicit>()));
110 void test3(decltype(DelayImplicit(declval<const DelayImplicit>())));
cxx0x-initializer-scalars.cpp 7 typedef decltype(sizeof(int)) size_t;
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;
literal-type.cpp 8 static_assert(__is_literal(decltype(E1)), "fail");
nullptr.cpp 4 typedef decltype(nullptr) nullptr_t;
93 static_assert(is_same<decltype(g(nullptr)), void*>::value, "");
MicrosoftCompatibility.cpp 7 typename decltype(3) a; // expected-warning {{expected a qualified name after 'typename'}}
cxx0x-nontrivial-union.cpp 46 using size_t = decltype(sizeof(int));
cxx98-compat.cpp 6 using size_t = decltype(sizeof(0)); // expected-warning {{decltype}} expected-warning {{alias}}
134 decltype(const_expr) decl_type = 0; // expected-warning {{'decltype' type specifier is incompatible with C++98}}
constexpr-printing.cpp 93 typedef decltype(sizeof(int)) LabelDiffTy;
cxx11-user-defined-literals.cpp 3 using size_t = decltype(sizeof(int));
  /external/clang/test/CXX/except/except.spec/
p3.cpp 101 typedef decltype(sizeof(int)) mysize_t;
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1-11.cpp 4 typedef decltype(nullptr) nullptr_t;
  /external/clang/test/CXX/temp/temp.spec/temp.inst/
p1.cpp 34 ScopedEnum1<double>::E e2 = decltype(e2)::e; // expected-note {{in instantiation of enumeration 'ScopedEnum::ScopedEnum1<double>::E' requested here}}
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
p3-0x.cpp 4 typedef decltype(sizeof(int)) size_t;
  /external/clang/test/CodeGenCXX/
cxx0x-initializer-stdinitializerlist.cpp 4 typedef decltype(sizeof(int)) size_t;
  /external/clang/test/Parser/
cxx0x-ambig.cpp 100 using T = decltype(a);
cxx0x-attributes.cpp 5 typedef decltype(sizeof(int)) size_t;
cxx11-user-defined-literals.cpp 46 using size_t = decltype(sizeof(int));
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.enum/
p1.cpp 61 void fb5() { b5 = decltype(b5)::e5; }
74 void fc1() { c1 = decltype(c1)::e5; }
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 52 auto g(A...a, B...b) -> decltype(f(a...));
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 80 template<template<decltype(X)> class ...Take,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/bits/
stl_iterator.h 375 -> decltype(__y.base() - __x.base()) function
880 -> decltype(__lhs.base() - __rhs.base()) function
1100 -> decltype(__x.base() - __y.base()) function
1107 -> decltype(__x.base() - __y.base()) function
    [all...]

Completed in 932 milliseconds

1 2 34 5