Home | History | Annotate | Download | only in test

Lines Matching defs:name

20     * Neither the name of the Simple Directmedia Layer (SDL) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
50 char *name;
56 name = NULL;
59 name = argv[1];
60 if ((strcmp(name, "--help") == 0) || (strcmp(name, "-h") == 0)) {
63 "it'll use it as if it were part of the device's name.\n",
68 i = strlen(name);
69 if ((i < 3) && isdigit(name[0]) && ((i == 1) || isdigit(name[1]))) {
70 index = atoi(name);
71 name = NULL;
81 if (name == NULL) {
87 if (strstr(SDL_HapticName(i), name) != NULL)
93 name);