Home | History | Annotate | Download | only in dist

Lines Matching refs:choice

242 typedef struct Choice Choice;
243 struct Choice {
244 Choice *prev;
289 static Choice *choiceList = NULL;
1101 Choice *choice = XtNew(Choice);
1103 static Choice pChoice;
1104 Choice *choice = &pChoice;
1117 choice->prev = choiceList;
1118 choice->value = val;
1119 choiceList = choice;