Lines Matching defs:propl
1487 XawTextPropertyList *propl, *prev = NULL;
1498 propl = *ptr;
1499 while (propl) {
1500 prev = propl;
1501 if (propl->screen == screen &&
1502 propl->colormap == colormap &&
1503 propl->depth == depth)
1504 return (propl);
1505 propl = propl->next;
1509 propl = XtNew(XawTextPropertyList);
1510 propl->identifier = qname;
1511 propl->screen = screen;
1512 propl->colormap = colormap;
1513 propl->depth = depth;
1514 propl->next = NULL;
1517 prev->next = propl;
1519 propl->properties = NULL;
1520 propl->num_properties = 0;
1530 if (def_prop == NULL && propl->num_properties)
1531 def_prop = _XawTextSinkGetProperty(propl, Qdefault);
1545 DestroyTextPropertyList(propl);
1551 else if (_XawTextSinkGetProperty(propl, ident) != NULL) {
1568 DestroyTextPropertyList(propl);
1588 DestroyTextPropertyList(propl);
1606 DestroyTextPropertyList(propl);
1702 (void)_XawTextSinkAddProperty(propl, prop, False);
1711 prop_lists[num_prop_lists++] = propl;
1717 return (propl);
1726 XawTextPropertyList *propl = NULL;
1757 propl = *ptr;
1758 while (propl) {
1759 if (propl->screen == screen &&
1760 propl->colormap == colormap &&
1761 propl->depth == depth)
1763 propl = propl->next;
1768 if (!propl) {
1781 *(XawTextPropertyList**)(toVal->addr) = propl;
1786 static_val = propl;
1802 XawTextPropertyList *propl;
1804 propl = *(XawTextPropertyList**)fromVal[0].addr;
1805 if (propl == NULL) {
1814 buffer = XrmQuarkToString(propl->identifier);