| /xsrc/external/mit/xgc/dist/ |
| choice.c | 4 ** choice.c 6 ** All the generic stuff for dealing with choice widgets. 22 ** What a choice widget is: A collection of toggle buttons placed inside 48 ChoiceDesc *choice; /* What we will return. Contains local 77 /* Allocate space for the widgets and initialize choice */ 78 choice = (ChoiceDesc *) XtMalloc(sizeof(ChoiceDesc)); 79 choice->widgets = (WidgetList) XtMalloc(sizeof(Widget) * 80 info->choice.num_toggles); 81 choice->size = info->choice.num_toggles [all...] |
| record.c | 161 TestStuff.choice.text,(TestStuff.data)[i].text); 168 FunctionStuff.choice.text,(FunctionStuff.data)[i].text); 175 LinestyleStuff.choice.text,(LinestyleStuff.data)[i].text); 182 CapstyleStuff.choice.text,(CapstyleStuff.data)[i].text); 189 JoinstyleStuff.choice.text,(JoinstyleStuff.data)[i].text); 196 FillstyleStuff.choice.text,(FillstyleStuff.data)[i].text); 203 FillruleStuff.choice.text,(FillruleStuff.data)[i].text); 210 ArcmodeStuff.choice.text,(ArcmodeStuff.data)[i].text);
|
| interpret.c | 42 if (!strcmp(word1,TestStuff.choice.text)) { 50 else if (!strcmp(word1,FunctionStuff.choice.text)) { 58 else if (!strcmp(word1,LinestyleStuff.choice.text)) { 68 else if (!strcmp(word1,CapstyleStuff.choice.text)) { 76 else if (!strcmp(word1,JoinstyleStuff.choice.text)) { 84 else if (!strcmp(word1,FillstyleStuff.choice.text)) { 92 else if (!strcmp(word1,FillruleStuff.choice.text)) { 100 else if (!strcmp(word1,ArcmodeStuff.choice.text)) {
|
| Makefile.am | 32 choice.c \
|
| xgc.h | 40 choice widget */ 53 } choice; member in struct:__anon9702
|
| main.c | 217 test choice form */ 229 the choice widgets */ 333 GCchoices[i] = XtCreateManagedWidget(Everything[i]->choice.text, 341 /* put the planemask choice under the bottom GC choice */ 348 /* put the dashlist choice under the planemask choice */ 355 /* put the linewidth choice under the dashlist choice */ 362 /* put the font choice under the linewidth choice * [all...] |
| /xsrc/external/mit/xdm/dist/xdm/ |
| choose.c | 241 ARRAY8 choice; member in struct:_Choices 260 Debug ("Choice checking timeout: %ld >? %d\n", 264 Debug ("Timeout choice %ld > %d\n", 271 XdmcpDisposeARRAY8 (&c->choice); 278 return &c->choice; 289 ARRAY8Ptr choice) 294 Debug ("Got indirect choice back\n"); 317 XdmcpDisposeARRAY8 (&c->choice); 319 if (!XdmcpCopyARRAY8 (choice, &c->choice)) 400 ARRAY8 choice = {0, NULL}; local [all...] |
| access.c | 819 ARRAY8Ptr choice; local 821 choice = IndirectChoice (clientAddress, connectionType); 822 if (!choice || XdmcpARRAY8Equal (getLocalAddress(), choice)) 825 (*function) (connectionType, choice, closure);
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| gen_knobs.cpp | 133 for choice in choices_array: 134 if len(choice['name']) > _max_len: _max_len = len(choice['name'])
|
| gen_knobs.h | 144 for choice in choices_array: 145 if len(choice['name']) > _max_len: _max_len = len(choice['name'])
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/ |
| gen_knobs.h | 144 for choice in choices_array: 145 if len(choice['name']) > _max_len: _max_len = len(choice['name'])
|
| gen_knobs.cpp | 162 for choice in choices_array: 163 if len(choice['name']) > _max_len: _max_len = len(choice['name'])
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| format.c | 1142 int choice, num_formats, has_default, num_arguments; local 1150 choice = -1; 1165 choice = object == NIL ? 0 : 1; 1173 choice = 0; 1183 choice = info->args.arguments[0].value; 1194 choice = FIXNUM_VALUE(object); 1202 /* if choice is out of range check if there is a default choice */ 1203 if (has_default && (choice < 0 || choice >= num_formats) [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| lower_blend_equation_advanced.cpp | 332 enum gl_advanced_blend_mode choice = (enum gl_advanced_blend_mode)u_bit_scan(&choices); local 334 ir_if *iff = new(mem_ctx) ir_if(is_mode(mode, choice)); 340 switch (choice) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| lower_blend_equation_advanced.cpp | 332 enum gl_advanced_blend_mode choice = (enum gl_advanced_blend_mode) local 335 ir_if *iff = new(mem_ctx) ir_if(is_mode(mode, choice)); 341 switch (choice) {
|
| /xsrc/external/mit/xfontsel/dist/ |
| xfontsel.c | 242 typedef struct Choice Choice; 243 struct Choice { 244 Choice *prev; 289 static Choice *choiceList = NULL; 1101 Choice *choice = XtNew(Choice); local 1103 static Choice pChoice; 1104 Choice *choice = &pChoice local [all...] |