Home
last modified time | relevance | path

Searched refs:is_sep (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/PC/os2emx/
Dgetpathp.c88 is_sep(char ch) /* determine if "ch" is a separator character */ in is_sep() function
104 while (i > 0 && !is_sep(dir[i])) in reduce()
149 if (is_sep(stuff[0])) in join()
153 if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN) in join()
365 if (p[0] == '.' && is_sep(p[1])) { in calculate_path()
/external/skia/src/utils/
DSkParse.cpp28 static inline bool is_sep(int c) in is_sep() function
61 while (is_sep(*str)) in skip_sep()
76 } while (is_sep(c) == false); in Count()
81 } while (is_sep(c)); in Count()
DSkParsePath.cpp22 static inline bool is_sep(int c) { in is_sep() function
45 while (is_sep(*str)) in skip_sep()
98 } else if (is_sep(ch)) { in FromSVGString()
/external/python/cpython2/PC/os2vacpp/
Dgetpathp.c58 is_sep(char ch) /* determine if "ch" is a separator character */ in is_sep() function
72 while (i > 0 && !is_sep(dir[i])) in reduce()
99 if (is_sep(stuff[0])) in join()
103 if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN) in join()
423 if (p[0] == '.' && is_sep(p[1])) { in calculate_path()
/external/python/cpython2/PC/
Dgetpathp.c95 is_sep(char ch) /* determine if "ch" is a separator character */ in is_sep() function
111 while (i > 0 && !is_sep(dir[i])) in reduce()
155 if (is_sep(stuff[0])) in join()
159 if (n > 0 && !is_sep(buffer[n-1]) && n < MAXPATHLEN) in join()
627 if (p[0] == '.' && is_sep(p[1])) { in calculate_path()
/external/icu/icu4c/source/common/
Ducase.cpp560 #define is_sep(c) ((c)=='_' || (c)=='-' || (c)==0) macro
596 if(is_sep(c)) { in ucase_getCaseLocale()
608 if(is_sep(c)) { in ucase_getCaseLocale()
620 if(is_sep(c)) { in ucase_getCaseLocale()
632 if(is_sep(c)) { in ucase_getCaseLocale()
644 if(is_sep(c)) { in ucase_getCaseLocale()
/external/skia/experimental/svg/model/
DSkSVGAttributeParser.cpp29 inline bool is_sep(char c) { in is_sep() function
52 return this->advanceWhile(is_sep); in parseSepToken()