Lines Matching full:base
20 offsetof(QNull, base) != 0 ||
21 offsetof(QNum, base) != 0 ||
22 offsetof(QString, base) != 0 ||
23 offsetof(QDict, base) != 0 ||
24 offsetof(QList, base) != 0 ||
25 offsetof(QBool, base) != 0,
26 "base qobject must be at offset 0");
40 assert(!obj->base.refcnt); in qobject_destroy()
41 assert(QTYPE_QNULL < obj->base.type && obj->base.type < QTYPE__MAX); in qobject_destroy()
42 qdestroy[obj->base.type](obj); in qobject_destroy()
65 if (!x || !y || x->base.type != y->base.type) { in qobject_is_equal()
69 assert(QTYPE_NONE < x->base.type && x->base.type < QTYPE__MAX); in qobject_is_equal()
71 return qis_equal[x->base.type](x, y); in qobject_is_equal()