/AliOS-Things-master/components/SDL2/src/locale/unix/ |
A D | SDL_syslocale.c | 31 ptr = SDL_strchr(str, '.'); /* chop off encoding if specified. */ in normalize_locale_str() 36 ptr = SDL_strchr(str, '@'); /* chop off extra bits if specified. */ in normalize_locale_str() 60 while ((ptr = SDL_strchr(src, ':')) != NULL) { in normalize_locales()
|
/AliOS-Things-master/components/SDL2/src/stdlib/ |
A D | SDL_getenv.c | 51 if (!name || SDL_strlen(name) == 0 || SDL_strchr(name, '=') != NULL || !value) { in SDL_setenv() 62 if (!name || SDL_strlen(name) == 0 || SDL_strchr(name, '=') != NULL || !value) { in SDL_setenv() 85 if (!name || SDL_strlen(name) == 0 || SDL_strchr(name, '=') != NULL || !value) { in SDL_setenv() 118 if (!name || SDL_strlen(name) == 0 || SDL_strchr(name, '=') != NULL || !value) { in SDL_setenv()
|
A D | SDL_iconv.c | 193 ptr = SDL_strchr(lang, '.'); in getlocale() 199 ptr = SDL_strchr(buffer, '@'); in getlocale()
|
A D | SDL_string.c | 671 SDL_strchr(const char *string, int c) in SDL_strchr() function
|
/AliOS-Things-master/components/SDL2/src/file/ |
A D | SDL_rwops.c | 101 must_exist = (SDL_strchr(mode, 'r') != NULL) ? OPEN_EXISTING : 0; in windows_file_open() 102 truncate = (SDL_strchr(mode, 'w') != NULL) ? CREATE_ALWAYS : 0; in windows_file_open() 103 r_right = (SDL_strchr(mode, '+') != NULL in windows_file_open() 105 a_mode = (SDL_strchr(mode, 'a') != NULL) ? OPEN_ALWAYS : 0; in windows_file_open() 106 w_right = (a_mode || SDL_strchr(mode, '+') in windows_file_open()
|
/AliOS-Things-master/components/SDL2/src/image/ |
A D | IMG_svg.c | 53 #define strchr SDL_strchr
|
/AliOS-Things-master/components/SDL2/src/joystick/ |
A D | SDL_gamecontroller.c | 758 const char *pFirstComma = SDL_strchr(pMapping, ','); in SDL_PrivateGetControllerGUIDFromMappingString() 800 pFirstComma = SDL_strchr(pMapping, ','); in SDL_PrivateGetControllerNameFromMappingString() 804 pSecondComma = SDL_strchr(pFirstComma + 1, ','); in SDL_PrivateGetControllerNameFromMappingString() 826 pFirstComma = SDL_strchr(pMapping, ','); in SDL_PrivateGetControllerMappingFromMappingString() 830 pSecondComma = SDL_strchr(pFirstComma + 1, ','); in SDL_PrivateGetControllerMappingFromMappingString() 1247 line_end = SDL_strchr(line, '\n'); in SDL_GameControllerAddMappingsFromRW() 1258 comma = SDL_strchr(tmp, ','); in SDL_GameControllerAddMappingsFromRW() 1501 pchNewLine = SDL_strchr(pUserMappings, '\n'); in SDL_GameControllerLoadHints()
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_stdinc.h | 476 extern DECLSPEC char *SDLCALL SDL_strchr(const char *str, int c); 608 #define SDL_strchr strchr macro
|
/AliOS-Things-master/components/SDL2/src/video/x11/ |
A D | SDL_x11messagebox.c | 230 const char *lf = SDL_strchr(text, '\n'); in CountLinesOfText() 262 const char *lf = SDL_strchr( text, '\n' ); in X11_MessageBoxInitPositions()
|
A D | SDL_x11opengl.c | 309 where = SDL_strchr(extension, ' '); in HasExtension()
|
/AliOS-Things-master/components/SDL2/test/ |
A D | controllermap.c | 583 while ((spot = SDL_strchr(trimmed_name, ',')) != NULL) { in WatchJoystick()
|
/AliOS-Things-master/components/SDL2/src/video/windows/ |
A D | SDL_windowsopengl.c | 350 where = SDL_strchr(extension, ' '); in HasExtension()
|
/AliOS-Things-master/components/SDL2/src/dynapi/ |
A D | SDL_dynapi_overrides.h | 401 #define SDL_strchr SDL_strchr_REAL macro
|
A D | SDL_dynapi_procs.h | 432 SDL_DYNAPI_PROC(char*,SDL_strchr,(const char *a, int b),(a,b),return)
|
/AliOS-Things-master/components/SDL2/src/video/ |
A D | SDL_egl.c | 161 if (ext == NULL || *ext == 0 || SDL_strchr(ext, ' ') != NULL) { in SDL_EGL_HasExtension()
|
A D | SDL_video.c | 3029 where = SDL_strchr(extension, ' '); in SDL_GL_ExtensionSupported()
|
/AliOS-Things-master/components/SDL2/src/ttf/ |
A D | SDL_ttf.c | 2004 if ((spot = SDL_strchr(tok, '\r')) != NULL || in TTF_RenderUTF8_Blended_Wrapped() 2005 (spot = SDL_strchr(tok, '\n')) != NULL) { in TTF_RenderUTF8_Blended_Wrapped()
|
/AliOS-Things-master/components/SDL2/src/joystick/linux/ |
A D | SDL_sysjoystick.c | 537 delim = SDL_strchr(envpath, ':'); in LINUX_JoystickInit()
|