HomeSort by relevance Sort by last modified time
    Searched refs:decltype (Results 251 - 275 of 402) sorted by null

<<11121314151617

  /external/clang/test/SemaCXX/
warn-reinterpret-base-class.cpp 30 decltype(reinterpret_cast<C *>(0)) foo;
31 decltype(reinterpret_cast<A *>((C *) 0)) bar;
32 decltype(reinterpret_cast<C *>((A *) 0)) baz;
MicrosoftCompatibility.cpp 8 typename decltype(3) a; // expected-warning {{expected a qualified name after 'typename'}}
cxx98-compat.cpp 6 using size_t = decltype(sizeof(0)); // expected-warning {{decltype}} expected-warning {{alias}}
143 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;
cxx0x-nontrivial-union.cpp 46 using size_t = decltype(sizeof(int));
  /external/libcxx/test/input.output/file.streams/c.files/
cinttypes.pass.cpp 923 static_assert((std::is_same<decltype(std::imaxabs(i)), std::intmax_t>::value), "");
924 static_assert((std::is_same<decltype(std::imaxdiv(i, i)), std::imaxdiv_t>::value), "");
925 static_assert((std::is_same<decltype(std::strtoimax("", (char**)0, 0)), std::intmax_t>::value), "");
926 static_assert((std::is_same<decltype(std::strtoumax("", (char**)0, 0)), std::uintmax_t>::value), "");
927 static_assert((std::is_same<decltype(std::wcstoimax(L"", (wchar_t**)0, 0)), std::intmax_t>::value), "");
928 static_assert((std::is_same<decltype(std::wcstoumax(L"", (wchar_t**)0, 0)), std::uintmax_t>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/file.streams/c.files/
cinttypes.pass.cpp 923 static_assert((std::is_same<decltype(std::imaxabs(i)), std::intmax_t>::value), "");
924 static_assert((std::is_same<decltype(std::imaxdiv(i, i)), std::imaxdiv_t>::value), "");
925 static_assert((std::is_same<decltype(std::strtoimax("", (char**)0, 0)), std::intmax_t>::value), "");
926 static_assert((std::is_same<decltype(std::strtoumax("", (char**)0, 0)), std::uintmax_t>::value), "");
927 static_assert((std::is_same<decltype(std::wcstoimax(L"", (wchar_t**)0, 0)), std::intmax_t>::value), "");
928 static_assert((std::is_same<decltype(std::wcstoumax(L"", (wchar_t**)0, 0)), std::uintmax_t>::value), "");
  /art/runtime/
dex_file_verifier.h 127 std::unordered_set<decltype(DexFile::ClassDef::class_idx_)> defined_classes_;
  /external/chromium_org/third_party/skia/src/utils/win/
SkDWrite.cpp 24 typedef decltype(DWriteCreateFactory)* DWriteCreateFactoryProc;
  /external/clang/test/CodeGenCXX/
mangle-ms-templates.cpp 228 template <decltype(nullptr)> struct S1 {};
cxx0x-initializer-stdinitializerlist.cpp 4 typedef decltype(sizeof(int)) size_t;
  /external/clang/test/Parser/
cxx0x-ambig.cpp 103 using T = decltype(a);
cxx11-user-defined-literals.cpp 46 using size_t = decltype(sizeof(int));
  /external/clang/test/SemaTemplate/
deduction-crash.cpp 125 typedef decltype(nullptr) nullptr_t;
  /external/libcxx/test/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 32 typedef decltype(std::chrono::time_point_cast<ToDuration>(f)) R;
  /external/skia/src/utils/win/
SkDWrite.cpp 24 typedef decltype(DWriteCreateFactory)* DWriteCreateFactoryProc;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.cast/
time_point_cast.pass.cpp 32 typedef decltype(std::chrono::time_point_cast<ToDuration>(f)) R;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
ptr_traits.h 84 using __type = decltype(_S_chk<_Ptr, _Up>(nullptr));
  /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; }
  /art/runtime/base/
macros.h 26 decltype(exp) _rc; \
  /external/chromium_org/content/renderer/
render_font_warmup_win.cc 133 typedef decltype(DWriteCreateFactory)* DWriteCreateFactoryProc;
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
p4.cpp 52 auto g(A...a, B...b) -> decltype(f(a...));
sizeofpack.cpp 56 using get_t = decltype(sizeof...(Members));
  /external/clang/test/CXX/temp/temp.param/
p15-cxx0x.cpp 80 template<template<decltype(X)> class ...Take,
  /external/llvm/include/llvm/ADT/
iterator.h 228 decltype(**std::declval<WrappedIteratorT>())>::type>

Completed in 873 milliseconds

<<11121314151617