HomeSort by relevance Sort by last modified time
    Searched defs:dcast (Results 1 - 5 of 5) sorted by null

  /external/clang/test/CodeGenCXX/
cfi-stats.cpp 31 // CHECK: @dcast
32 extern "C" void dcast(A *a) { function
  /external/libcxx/test/std/experimental/filesystem/fs.enum/
check_bitmask_types.hpp 19 static constexpr UT dcast(EnumType e) { return static_cast<UT>(e); } function in struct:check_bitmask_type
42 static_assert(dcast(Val1 & Val2) == (UVal1 & UVal2), "");
45 static_assert(dcast(Val1 | Val2) == (UVal1 | UVal2), "");
48 static_assert(dcast(Val1 ^ Val2) == (UVal1 ^ UVal2), "");
50 static_assert(dcast(~Zero) == unpromote(~UZero), "");
51 static_assert(dcast(~Val1) == unpromote(~UVal1), "");
57 assert(dcast(eref) == (UVal1 & UVal2));
63 assert(dcast(eref) == (UVal1 | UVal2));
69 assert(dcast(eref) == (UVal1 ^ UVal2));
  /external/compiler-rt/test/cfi/cross-dso/
stats.cpp 30 extern "C" __attribute__((noinline)) A *dcast(A *a) { function
31 // CHECK: stats.cpp:[[@LINE+1]] dcast cfi-derived-cast 24
52 dcast(&a);
  /external/compiler-rt/test/cfi/
stats.cpp 25 extern "C" __attribute__((noinline)) A *dcast(A *a) { function
26 // CHECK: stats.cpp:[[@LINE+1]] {{_?}}dcast cfi-derived-cast 24
47 dcast(&a);
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
qpol_wrap.c 321 swig_dycast_func dcast; /* dynamic cast function down a hierarchy */ member in struct:swig_type_info
461 if (!ty || !ty->dcast) return ty;
462 while (ty && (ty->dcast)) {
463 ty = (*ty->dcast)(ptr);
    [all...]

Completed in 3185 milliseconds