| /xsrc/external/mit/freetype/dist/src/tools/ |
| cordic.py | 8 comma = "" variable 23 sys.stdout.write( comma + repr( int(angle2) ) ) 24 comma = ", " variable
|
| glnames.py | 50 "comma", "hyphen", "period", "slash", "zero", 163 "parenright", "asterisk", "plus", "comma", "hyphen", 1830 comma;002C 4967 comma = "" 4971 line += comma 4974 comma = "," 4977 comma = ",\n " 5230 comma = "" 5233 line += comma 5235 comma = ", [all...] |
| /xsrc/external/mit/xmessage/dist/ |
| makeform.c | 129 char *start, *colon, *comma; local 133 colon = comma = NULL; 143 comma = cp; 149 * If comma is NULL then we are at the end of the string. If colon 153 if (comma) *comma = '\0'; 179 if (comma) cp++;
|
| /xsrc/external/mit/MesaLib/dist/src/mapi/glapi/gen/ |
| gl_apitemp.py | 58 comma = "" 78 t_string = t_string + comma + p.format_string() 79 p_string = p_string + comma + p.name 80 o_string = o_string + comma + cast + p.name 81 comma = ", "
|
| gl_XML.py | 806 comma = "" 811 p_string = p_string + comma + p.name 812 comma = ", "
|
| glX_proto_send.py | 394 comma = ',' if i < len(names) - 1 else '' 395 print(' { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma))
|
| /xsrc/external/mit/MesaLib.old/dist/src/mapi/glapi/gen/ |
| gl_apitemp.py | 60 comma = "" 80 t_string = t_string + comma + p.format_string() 81 p_string = p_string + comma + p.name 82 o_string = o_string + comma + cast + p.name 83 comma = ", "
|
| gl_XML.py | 792 comma = "" 797 p_string = p_string + comma + p.name 798 comma = ", "
|
| glX_proto_send.py | 396 comma = ',' if i < len(names) - 1 else '' 397 print(' { "%s", (_glapi_proc) gl%s }%s' % (names[i], procs[names[i]], comma))
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/glcpp/tests/ |
| 147-define-macro-no-space.c | 14 #define C, comma
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/glcpp/tests/ |
| 147-define-macro-no-space.c | 14 #define C, comma
|
| /xsrc/external/mit/MesaLib/dist/android/ |
| mesa3d_cross.mk | 91 -Ddri-drivers=$(subst $(space),$(comma),$(BOARD_MESA3D_CLASSIC_DRIVERS)) \ 92 -Dgallium-drivers=$(subst $(space),$(comma),$(BOARD_MESA3D_GALLIUM_DRIVERS)) \ 93 -Dvulkan-drivers=$(subst $(space),$(comma),$(subst radeon,amd,$(BOARD_MESA3D_VULKAN_DRIVERS))) \ 160 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--start-group) \ 162 $(if $(PRIVATE_GROUP_STATIC_LIBRARIES),-Wl$(comma)--end-group) \ 176 $(subst -Wl$(comma)--fatal-warnings,, \ 177 $(subst -Wl$(comma)--no-undefined-version,, \ 178 $(subst -Wl$(comma)--gc-sections,, \
|
| /xsrc/external/mit/xfs/dist/os/ |
| utils.c | 271 char *comma = (char *) strchr (ptr, ','); local 272 if (comma == NULL) { 275 len = comma - ptr; 280 ptr = comma + 1;
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/include/gtest/internal/ |
| gtest-internal.h | 627 // Skips to the first non-space char after the first comma in 'str'; 628 // returns NULL if no comma is found in 'str'. 630 const char* comma = strchr(str, ','); local 631 if (comma == nullptr) { 634 while (IsSpace(*(++comma))) {} 635 return comma; 638 // Returns the prefix of 'str' before the first comma in it; returns 639 // the entire string if it contains no comma. 641 const char* comma = strchr(str, ','); local 642 return comma == nullptr ? str : std::string(str, comma) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gtest/include/gtest/internal/ |
| gtest-internal.h | 592 // Skips to the first non-space char after the first comma in 'str'; 593 // returns NULL if no comma is found in 'str'. 595 const char* comma = strchr(str, ','); local 596 if (comma == NULL) { 599 while (IsSpace(*(++comma))) {} 600 return comma; 603 // Returns the prefix of 'str' before the first comma in it; returns 604 // the entire string if it contains no comma. 606 const char* comma = strchr(str, ','); local 607 return comma == NULL ? str : std::string(str, comma) [all...] |
| /xsrc/external/mit/fontconfig/dist/doc/ |
| fcformat.fncs | 69 joined together using comma. For example, to print the family name and style of the 124 comma-separated list of element names, followed by a sub-expression enclosed 134 comma-separated list of element names, followed by a sub-expression enclosed 145 comma-separated list of element conditions, followed by two sub-expression 160 comma-separated list of element names, followed by a sub-expression enclosed
|
| /xsrc/external/mit/xedit/dist/lisp/ |
| read.c | 682 if (READLABELP(object->data.comma.eval)) 683 object->data.comma.eval = 684 LispReadLabelCircle(object->data.comma.eval, info); 686 object = object->data.comma.eval; 1080 LispObj *comma, *result; local 1088 comma = LispDoRead(info); 1089 if (comma == DOT) { 1091 comma = LispDoRead(info); 1093 if (INVALIDP(comma)) 1096 result = COMMA(comma, atlist == '@' || atlist == '.') [all...] |
| lisp.c | 2268 object = object->data.comma.eval; 2420 object = object->data.comma.eval; 2898 LispObj *comma = LispNew(object, NIL); local 2900 comma->type = LispComma_t; 2901 comma->data.comma.eval = object; 2902 comma->data.comma.atlist = atlist; 2904 return (comma); 3784 if (!list && argument->data.comma.atlist [all...] |
| internal.h | 367 #define COMMA(object, at) LispNewComma(object, at) 632 } comma; member in union:_LispObj::__anon6613
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/ |
| xorgconf.cpp | 45 # as well as specifying multiple comma-separated entries in one FontPath 302 # HorizSync may be a comma separated list of discrete values, or a 303 # comma separated list of ranges of values. 313 # VertRefresh may be a comma separated list of discrete values, or a 314 # comma separated list of ranges of values.
|
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/ |
| xorgconf.cpp | 45 # as well as specifying multiple comma-separated entries in one FontPath 308 # HorizSync may be a comma separated list of discrete values, or a 309 # comma separated list of ranges of values. 319 # VertRefresh may be a comma separated list of discrete values, or a 320 # comma separated list of ranges of values.
|
| /xsrc/external/mit/MesaLib/dist/src/gtest/src/ |
| gtest.cc | 4002 bool comma = true); 4008 bool comma = true); 4126 bool comma) { 4136 if (comma) 4146 bool comma) { 4156 if (comma) 4255 bool comma = false; local 4258 if (comma) { 4261 comma = true; 4300 bool comma = false local [all...] |
| /xsrc/external/mit/libxcb/dist/src/ |
| c_client.py | 377 comma = ',' if count > 0 else '' 381 _h(' %s%s%s%s%s', _n(name + (enam,)).upper(), equals, eval, comma, doc) 2316 comma = ',' if len(param_fields) else ');' 2317 _h('%s (xcb_connection_t%s *c%s', func_name, spacing, comma) 2318 comma = ',' if len(param_fields) else ')' 2319 _c('%s (xcb_connection_t%s *c%s', func_name, spacing, comma) 2331 comma = ',' if count else ');' 2333 spacing, c_pointer, field.c_field_name, comma) 2334 comma = ',' if count else ')' 2336 spacing, c_pointer, field.c_field_name, comma) [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| ast_function.cpp | 90 const char *comma = ""; local 92 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name); 93 comma = ", ";
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| ast_function.cpp | 97 const char *comma = ""; local 99 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name); 100 comma = ", ";
|