Lines Matching defs:list*

573  *	tab_count - the number of tabs in the list
854 * tab_count - the number of tabs in the list
1133 DestroyTextPropertyList(XawTextPropertyList *list)
1137 for (i = 0; (Cardinal)i < list->num_properties; i++) {
1138 if (list->properties[i]->font)
1139 XFreeFont(DisplayOfScreen(list->screen), list->properties[i]->font);
1140 XtFree((char*)list->properties[i]);
1142 if (list->properties)
1143 XtFree((char*)list->properties);
1144 XtFree((char*)list);
1148 _XawTextSinkGetProperty(XawTextPropertyList *list, XrmQuark property)
1150 if (property != NULLQUARK && list && list->properties) {
1153 list->properties, list->num_properties,
1167 XawTextPropertyList *list = sink->text_sink.properties;
1169 return (_XawTextSinkGetProperty(list, property));
1189 _XawTextSinkAddProperty(XawTextPropertyList *list, XawTextProperty *property,
1204 if (list == NULL || property == NULL)
1209 XQueryColor(DisplayOfScreen(list->screen), list->colormap, &color);
1217 XQueryColor(DisplayOfScreen(list->screen), list->colormap, &color);
1308 if ((result->font = XLoadQueryFont(DisplayOfScreen(list->screen),
1311 SetXlfdDefaults(DisplayOfScreen(list->screen), result);
1336 if ((property = _XawTextSinkGetProperty(list, result->identifier)) != NULL) {
1338 XFreeFont(DisplayOfScreen(list->screen), result->font);
1345 list->properties = (XawTextProperty**)
1346 XtRealloc((XtPointer)list->properties,
1348 (list->num_properties + 1)));
1349 list->properties[list->num_properties++] = result;
1350 qsort((void*)list->properties, list->num_properties,
1360 XawTextPropertyList *list = sink->text_sink.properties;
1362 return (_XawTextSinkAddProperty(list, property, True));
1809 "textProperties to String conversion needs property list argument",