Searched refs: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_]))
H A Dsanitizer_flag_parser.h103 bool is_space(char c);
/external/libxml2/
H A Dtriop.h117 void trio_set_spacing TRIO_PROTO((trio_pointer_t ref, int is_space));
/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/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 506 milliseconds