Home | History | Annotate | Download | only in jni

Lines Matching refs:S4

30 struct S4 : public S3, virtual public S2
55 void S4::s1 ()
101 S4 primary vtable
106 S4 offset to top
107 S4 RTTI
109 S4::s1
111 S2-in-S4 secondary vtable
114 S4::s1 vcall offset
118 S4 RTTI
120 S4::s1
152 S4 s4;
156 // Set vtbl to point at the beginning of S4's primary vtable.
157 vptr = (ptrdiff_t **) &s4;
161 if (*vtbl != ((char*) (S0*) &s4) - (char*) &s4)
164 if (*vtbl != ((char*) (S1*) &s4) - (char*) &s4)
167 if (*vtbl != ((char*) (S2*) &s4) - (char*) &s4)
185 // The S4::s1 vcall offset is negative; once you convert to S2, you
186 // have to convert to S4 to find the final overrider.
187 if (*vtbl != ((char*) &s4 - (char*) (S2*) &s4))
197 if (*vtbl != ((char*) &s4 - (char*) (S2*) &s4))