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

  /external/clang/test/CXX/class/class.union/
p1.cpp 9 class Virtual {
10 virtual void foo() { abort(); } // expected-note 4 {{because type 'Virtual' has a virtual member function}}
13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual base class}}
39 Virtual v; // expected-error {{union member 'v' has a non-trivial copy constructor}}
52 Virtual v; // expected-note {{because the function selected to copy field of type 'Virtual' is not trivial}}
78 struct s1 : Virtual { // expected-note {{because the function selected to copy base class of type 'Virtual' is not tri (…)
    [all...]
  /external/clang/test/SemaCXX/
member-pointer-ms.cpp 10 // - single, multiple, and virtual inheritance (and unspecified for incomplete)
28 // Unspecified is weird, it's 1 more slot than virtual.
45 // more slot than virtual. It's not clear what it's used for yet.
55 struct Virtual : virtual B1 { };
58 static_assert(sizeof(int Virtual::*) == kVirtualDataSize, "");
61 static_assert(sizeof(void (Virtual::*)()) == kVirtualFunctionSize, "");
82 static_assert(sizeof(int Y<Virtual>::*) == kVirtualDataSize, "");
85 static_assert(sizeof(void (Y<Virtual>::*)()) == kVirtualFunctionSize, "");
88 struct B : A { virtual void foo(); }
    [all...]
cxx1y-deduced-return-type.cpp 274 namespace Virtual {
276 virtual auto f() { return 0; } // expected-error {{function with deduced return type cannot be virtual}} expected-note {{here}}
287 struct V { virtual auto f(); }; // expected-error {{cannot be virtual}}
288 struct W : V { virtual auto f(); }; // expected-error {{cannot be virtual}}
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
DeodexUtil.java 39 public static final int Virtual = 0;
97 //if this is an unresolved class, the only way getVirtualMethod could have found a method is if the virtual
  /external/clang/test/CodeGenCXX/
microsoft-abi-member-pointers.cpp 3 // with virtual bases.
20 struct Virtual : virtual B1 {
31 virtual void myVirtual();
36 // This class uses the virtual inheritance model, yet its vbptr offset is not 0.
39 struct NonZeroVBPtr : POD, Virtual {
50 int Virtual ::*v_d_memptr;
65 void (Virtual ::*v_f_memptr)();
71 struct Unspecified : Multiple, Virtual {
80 void (Virtual ::*v_f_mp)() = &Virtual::foo
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
dbghelp.h 247 BOOL Virtual;
264 BOOL Virtual;
811 BOOL Virtual;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 247 BOOL Virtual;
264 BOOL Virtual;
811 BOOL Virtual;
    [all...]

Completed in 2066 milliseconds