Searched defs:is_space (Results 1 - 5 of 5) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flag_parser.cc70 bool FlagParser::is_space(char c) { function in class:__sanitizer::FlagParser
76 while (is_space(buf_[pos_])) ++pos_;
81 while (buf_[pos_] != 0 && buf_[pos_] != '=' && !is_space(buf_[pos_])) ++pos_;
94 while (buf_[pos_] != 0 && !is_space(buf_[pos_])) ++pos_;
95 if (buf_[pos_] != 0 && !is_space(buf_[pos_]))
/external/jpeg/
H A Dansi2knr.c304 #define is_space(c) (is_ascii(c) && isspace(c)) macro
432 { while ( is_space(*p) )
/external/toybox/toys/pending/
H A Ddiff.c199 int t = 0, is_space; local
206 is_space = isspace(t) || (t == EOF);
213 if (toys.optflags & FLAG_w && is_space) continue;
217 if (is_space) continue;
219 } else if (is_space) t = space + ' ';
/external/libxml2/
H A Dtrio.c4669 TRIO_ARGS2((ref, is_space),
4671 int is_space)
4673 if (is_space)
4668 trio_set_spacing(ref, is_space), trio_pointer_t ref, int is_space argument
/external/valgrind/perf/
H A Dtinycc.c7773 static inline int is_space(int ch)
7780 while (is_space(ch))
9764 while (is_space(ch) || ch == '\n')
21412 while (is_space(*str))
21417 while (*str != '\0' && !is_space(*str))
7771 static inline int is_space(int ch) function

Completed in 252 milliseconds