Home
last modified time | relevance | path

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

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_flag_parser.cc70 bool FlagParser::is_space(char c) { in is_space() function in __sanitizer::FlagParser
76 while (is_space(buf_[pos_])) ++pos_; in skip_whitespace()
81 while (buf_[pos_] != 0 && buf_[pos_] != '=' && !is_space(buf_[pos_])) ++pos_; in parse_flag()
94 while (buf_[pos_] != 0 && !is_space(buf_[pos_])) ++pos_; in parse_flag()
95 if (buf_[pos_] != 0 && !is_space(buf_[pos_])) in parse_flag()
Dsanitizer_flag_parser.h102 bool is_space(char c);
/external/jpeg/
Dansi2knr.c304 #define is_space(c) (is_ascii(c) && isspace(c)) macro
432 { while ( is_space(*p) )
/external/toybox/toys/pending/
Ddiff.c199 int t = 0, is_space; in read_tok() local
206 is_space = isspace(t) || (t == EOF); in read_tok()
213 if (toys.optflags & FLAG_w && is_space) continue; in read_tok()
217 if (is_space) continue; in read_tok()
219 } else if (is_space) t = space + ' '; in read_tok()
/external/libxml2/
Dtriop.h117 void trio_set_spacing TRIO_PROTO((trio_pointer_t ref, int is_space));
Dtrio.c4669 TRIO_ARGS2((ref, is_space),
4671 int is_space)
4673 if (is_space)
/external/valgrind/perf/
Dtinycc.c7771 static inline int is_space(int ch) in is_space() function
7778 while (is_space(ch)) in skip_spaces()
9762 while (is_space(ch) || ch == '\n') in macro_subst_tok()
21410 while (is_space(*str)) in expand_args()
21415 while (*str != '\0' && !is_space(*str)) in expand_args()