| /xsrc/external/mit/freetype/dist/src/tools/ |
| cordic.py | 8 comma = "" variable 23 sys.stdout.write( comma + repr( int(angle2) ) ) 24 comma = ", " variable
|
| /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/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/compiler/glsl/ |
| ast_function.cpp | 97 const char *comma = ""; local 99 ralloc_asprintf_append(&str, "%s%s", comma, param->type->name); 100 comma = ", ";
|
| /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/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.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/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...] |
| internal.h | 367 #define COMMA(object, at) LispNewComma(object, at) 632 } comma; member in union:_LispObj::__anon6613
|
| 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...] |
| /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...] |