Home
last modified time | relevance | path

Searched refs:ISSLASH (Results 1 – 5 of 5) sorted by relevance

/external/e2fsprogs/intl/
Drelocatable.c77 # define ISSLASH(C) ((C) == '/' || (C) == '\\') macro
86 # define ISSLASH(C) ((C) == '/') macro
199 if (ISSLASH (*p)) in compute_curr_prefix()
231 if (ISSLASH (*rpi) || ISSLASH (*cpi)) in compute_curr_prefix()
233 if (ISSLASH (*rpi) && ISSLASH (*cpi)) in compute_curr_prefix()
428 if (ISSLASH (pathname[orig_prefix_len])) in relocate()
Dlocalcharset.c78 # define ISSLASH(C) ((C) == '/' || (C) == '\\') macro
85 #ifndef ISSLASH
86 # define ISSLASH(C) ((C) == DIRECTORY_SEPARATOR) macro
127 int add_slash = (dir_len > 0 && !ISSLASH (dir[dir_len - 1])); in get_charset_aliases()
Dl10nflist.c73 # define ISSLASH(C) ((C) == '/' || (C) == '\\') macro
77 # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P))
80 # define ISSLASH(C) ((C) == '/') macro
81 # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0])
Ddcigettext.c206 # define ISSLASH(C) ((C) == '/' || (C) == '\\') macro
210 # define IS_ABSOLUTE_PATH(P) (ISSLASH ((P)[0]) || HAS_DEVICE (P))
215 # define ISSLASH(C) ((C) == '/') macro
216 # define IS_ABSOLUTE_PATH(P) ISSLASH ((P)[0])
/external/python/cpython2/Modules/
Dposixmodule.c1593 #define ISSLASH ISSLASHA in IsUNCRootA() macro
1597 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1])) in IsUNCRootA()
1601 if (ISSLASH(path[i])) break; in IsUNCRootA()
1607 if (ISSLASH(path[i])) break; in IsUNCRootA()
1610 #undef ISSLASH in IsUNCRootA()
1616 #define ISSLASH ISSLASHW in IsUNCRootW() macro
1620 if (pathlen < 5 || !ISSLASH(path[0]) || !ISSLASH(path[1])) in IsUNCRootW()
1624 if (ISSLASH(path[i])) break; in IsUNCRootW()
1630 if (ISSLASH(path[i])) break; in IsUNCRootW()
1633 #undef ISSLASH in IsUNCRootW()