Searched defs:dot (Results 1 - 18 of 18) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
H A Dcapsule.c211 char *dot = strchr(trace, '.'); local
212 if (dot) {
213 *dot++ = '\0';
234 trace = dot;
H A Dexceptions.c162 char *dot; local
169 dot = strrchr(name, '.');
170 if (dot != NULL) name = dot+1;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
H A Dcapsule.c211 char *dot = strchr(trace, '.'); local
212 if (dot) {
213 *dot++ = '\0';
234 trace = dot;
H A Dexceptions.c162 char *dot; local
169 dot = strrchr(name, '.');
170 if (dot != NULL) name = dot+1;
/device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
H A Dsubr_prf.c245 int base, lflag, qflag, tmp, width, ladjust, sharpflag, neg, sign, dot; local
273 sign = 0; dot = 0; dwidth = 0; upper = 0;
277 dot = 1;
292 if (!dot) {
303 if (!dot) {
315 if (dot)
419 if (!dot)
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dloadlib.c571 const char *dot; local
576 dot = strrchr(modname, '.'); /* look for last dot in module name */
577 if (dot == NULL) dot = modname;
578 else dot++;
580 lua_pushlstring(L, modname, dot - modname);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Derrors.c582 char *dot; local
588 dot = strrchr(name, '.');
589 if (dot == NULL) {
603 (Py_ssize_t)(dot-name));
620 dot+1, bases, dict);
679 char *dot = strrchr(className, '.'); local
680 if (dot != NULL)
681 className = dot+1;
H A Dsymtable.c1407 char *dot = strchr(base, '.'); local
1408 if (dot) {
1409 store_name = PyString_FromStringAndSize(base, dot - base);
H A Dimport.c2433 char *dot = strrchr(buf, '.'); local
2434 if (dot == NULL) {
2440 *dot = '\0';
2480 char *dot = strchr(name, '.'); local
2493 if (dot == NULL) {
2498 *p_name = dot+1;
2499 len = dot-name;
H A Dpythonrun.c1272 char *dot = strrchr(className, '.'); local
1273 if (dot != NULL)
1274 className = dot+1;
H A Dcompile.c203 The only time a name with a dot can occur is when
1919 If there is a dot in name, we need to split it and emit a
1923 const char *dot = strchr(src, '.'); local
1924 if (dot) {
1926 src = dot + 1;
1927 while (dot) {
1928 /* NB src is only defined when dot != NULL */
1930 dot = strchr(src, '.');
1932 dot ? dot
1981 char *dot = strchr(base, '.'); local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Derrors.c560 char *dot; local
566 dot = strrchr(name, '.');
567 if (dot == NULL) {
581 (Py_ssize_t)(dot-name));
598 dot+1, bases, dict);
657 char *dot = strrchr(className, '.'); local
658 if (dot != NULL)
659 className = dot+1;
H A Dsymtable.c1405 char *dot = strchr(base, '.'); local
1406 if (dot) {
1407 store_name = PyString_FromStringAndSize(base, dot - base);
H A Dimport.c2332 char *dot = strrchr(buf, '.'); local
2333 if (dot == NULL) {
2339 *dot = '\0';
2379 char *dot = strchr(name, '.'); local
2392 if (dot == NULL) {
2397 *p_name = dot+1;
2398 len = dot-name;
H A Dpythonrun.c1247 char *dot = strrchr(className, '.'); local
1248 if (dot != NULL)
1249 className = dot+1;
H A Dcompile.c203 The only time a name with a dot can occur is when
1897 If there is a dot in name, we need to split it and emit a
1901 const char *dot = strchr(src, '.'); local
1902 if (dot) {
1904 src = dot + 1;
1905 while (dot) {
1906 /* NB src is only defined when dot != NULL */
1908 dot = strchr(src, '.');
1910 dot ? dot
1959 char *dot = strchr(base, '.'); local
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dimport.c2332 char *dot = strrchr(buf, '.'); local
2333 if (dot == NULL) {
2339 *dot = '\0';
2379 char *dot = strchr(name, '.'); local
2392 if (dot == NULL) {
2397 *p_name = dot+1;
2398 len = dot-name;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dposixmodule.c968 char *dot; local
989 dot = strrchr(path, '.');
990 if (dot) {
991 if (stricmp(dot, ".bat") == 0 ||
992 stricmp(dot, ".cmd") == 0 ||
993 stricmp(dot, ".exe") == 0 ||
994 stricmp(dot, ".com") == 0)
1004 const wchar_t *dot; local
1026 dot = wcsrchr(path, '.');
1027 if (dot) {
[all...]

Completed in 394 milliseconds