Lines Matching refs:value
57 void qlist_append_obj(QList *qlist, QObject *value) in qlist_append_obj() argument
62 entry->value = value; in qlist_append_obj()
67 void qlist_append_int(QList *qlist, int64_t value) in qlist_append_int() argument
69 qlist_append(qlist, qnum_from_int(value)); in qlist_append_int()
72 void qlist_append_bool(QList *qlist, bool value) in qlist_append_bool() argument
74 qlist_append(qlist, qbool_from_bool(value)); in qlist_append_bool()
77 void qlist_append_str(QList *qlist, const char *value) in qlist_append_str() argument
79 qlist_append(qlist, qstring_from_str(value)); in qlist_append_str()
99 ret = entry->value; in qlist_pop()
115 return entry->value; in qlist_peek()
179 qobject_unref(entry->value); in qlist_destroy_obj()