Lines Matching defs:toVal
1723 XrmValue *fromVal, XrmValue *toVal,
1771 toVal->addr = NULL;
1772 toVal->size = sizeof(XawTextPropertyList*);
1776 if (toVal->addr != NULL) {
1777 if (toVal->size < sizeof(XawTextPropertyList*)) {
1778 toVal->size = sizeof(XawTextPropertyList*);
1781 *(XawTextPropertyList**)(toVal->addr) = propl;
1787 toVal->addr = (XPointer)&static_val;
1789 toVal->size = sizeof(XawTextProperty*);
1797 XrmValue *fromVal, XrmValue *toVal,
1817 if (toVal->addr != NULL) {
1818 if (toVal->size < size) {
1819 toVal->size = size;
1822 strcpy((char *)toVal->addr, buffer);
1825 toVal->addr = buffer;
1826 toVal->size = size;