Home | History | Annotate | Download | only in jni

Lines Matching refs:vb

4 class VB {
7 VB (int v) { n = v; }
8 VB (const VB& o) {
10 // printf("copying VB from %d to %d\n", &o, this);
14 class D : public virtual VB {
17 D(int i1, int i2) : VB(i2) { j = i1; }
18 VB& vb() { return *(VB*)this; }
19 const VB& vb() const { return *(const VB*)this; }
22 class pD : private virtual VB {
25 pD(int i1, int i2) : VB(i2) { j = i1; }
26 VB& vb() { return *(VB*)this; }
27 const VB& vb() const { return *(const VB*)this; }
34 VB *vb = &d.vb();
35 VB *pvb = &pd.vb();
39 // printf("Throwing D at %d (VB at %d)\n", &d, vb);
42 catch (VB& vb) {
43 // printf("Catching VB at %d\n", &vb);
44 if (vb.n != 4279)
53 // printf("Throwing D at %d (VB at %d)\n", &pd, pvb);
56 catch (VB& vb) {
57 // printf("Catching VB at %d\n", &vb);