Lines Matching defs:toVal
70 XrmValuePtr fromVal, XrmValuePtr toVal)
96 toVal->size = sizeof(int);
97 toVal->addr = (XPointer)&backingStoreType;
103 XrmValuePtr fromVal, XrmValuePtr toVal,
125 toVal->addr = NULL;
126 toVal->size = 0;
131 if (toVal->addr != NULL)
133 if (toVal->size < size)
135 toVal->size = size;
138 strcpy((char *)toVal->addr, buffer);
141 toVal->addr = (XPointer)buffer;
142 toVal->size = sizeof(String);