Home
last modified time | relevance | path

Searched refs:styleItems (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/external/xserver/hw/xwin/
H A Dwinprefsyacc.y393 pref.styleItems = 0; in OpenStyles()
402 pref.style = realloc(pref.style, sizeof(STYLEITEM)*(pref.styleItems+1)); in AddStyleLine()
404 strncpy(pref.style[pref.styleItems].match, matchstr, MENU_MAX); in AddStyleLine()
405 pref.style[pref.styleItems].match[MENU_MAX] = 0; in AddStyleLine()
407 pref.style[pref.styleItems].type = style; in AddStyleLine()
409 pref.styleItems++; in AddStyleLine()
H A Dwinprefsyacc.c1957 pref.styleItems = 0; in OpenStyles()
1966 pref.style = realloc(pref.style, sizeof(STYLEITEM)*(pref.styleItems+1)); in AddStyleLine()
1968 strncpy(pref.style[pref.styleItems].match, matchstr, MENU_MAX); in AddStyleLine()
1969 pref.style[pref.styleItems].match[MENU_MAX] = 0; in AddStyleLine()
1971 pref.style[pref.styleItems].type = style; in AddStyleLine()
1973 pref.styleItems++; in AddStyleLine()
H A Dwinprefs.h138 int styleItems; member
H A Dwinprefs.c756 for (i = 0; i < pref.styleItems; i++) { in winOverrideStyle()