Searched refs:is_space (Results 1 – 15 of 15) sorted by relevance
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_flag_parser.cc | 70 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()
|
D | sanitizer_flag_parser.h | 103 bool is_space(char c);
|
/external/libxkbcommon/xkbcommon/src/compose/ |
D | paths.c | 83 while (s < end && is_space(*s)) in resolve_name() 95 while (s < end && !is_space(*s) && *s != ':') in resolve_name() 104 while (s < end && is_space(*s)) in resolve_name() 109 while (s < end && !is_space(*s)) in resolve_name()
|
D | parser.c | 165 while (is_space(peek(s))) in lex() 282 while (is_space(peek(s))) in lex_include_string()
|
/external/brotli/c/enc/ |
D | static_dict.c | 326 BROTLI_BOOL is_space = TO_BROTLI_BOOL(data[0] == ' '); in BrotliFindAllStaticDictionaryMatches() local 343 AddMatch(id + (is_space ? 6 : 32) * n, l + 1, l, matches); in BrotliFindAllStaticDictionaryMatches() 353 AddMatch(id + (is_space ? 2 : 77) * n, l + 2, l, matches); in BrotliFindAllStaticDictionaryMatches() 355 AddMatch(id + (is_space ? 89 : 67) * n, l + 2, l, matches); in BrotliFindAllStaticDictionaryMatches() 356 } else if (is_space) { in BrotliFindAllStaticDictionaryMatches() 375 } else if (is_space) { in BrotliFindAllStaticDictionaryMatches()
|
/external/toybox/toys/pending/ |
D | diff.c | 202 int t = 0, is_space; in read_tok() local 209 is_space = isspace(t) || (t == EOF); in read_tok() 216 if (toys.optflags & FLAG_w && is_space) continue; in read_tok() 220 if (is_space) continue; in read_tok() 222 } else if (is_space) t = space + ' '; in read_tok()
|
/external/libxkbcommon/xkbcommon/src/ |
D | utils.h | 126 is_space(char ch) in is_space() function
|
D | context.c | 208 if (errno == 0 && (endptr[0] == '\0' || is_space(endptr[0]))) in log_level()
|
/external/libxml2/ |
D | triop.h | 117 void trio_set_spacing TRIO_PROTO((trio_pointer_t ref, int is_space));
|
D | trio.c | 4669 TRIO_ARGS2((ref, is_space), 4671 int is_space) 4673 if (is_space)
|
/external/libxkbcommon/xkbcommon/src/xkbcomp/ |
D | scanner.c | 68 while (is_space(peek(s))) next(s); in _xkbcommon_lex()
|
D | rules.c | 259 while (v.len > 0 && is_space(v.start[0])) { v.len--; v.start++; } in strip_spaces() 260 while (v.len > 0 && is_space(v.start[v.len - 1])) v.len--; in strip_spaces()
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 1739 is_space(enum PyUnicode_Kind kind, void *data, Py_ssize_t pos) in is_space() function 1779 while (len > 0 && is_space(kind, data, len-1)) { in numeric_as_ascii() 1782 while (j < len && is_space(kind, data, j)) { in numeric_as_ascii()
|
/external/freetype/ |
D | ChangeLog.21 | 4215 (is_space): Handle `\f' also. 8169 (is_alpha, is_space, hexval): Renamed to...
|
D | ChangeLog.23 | 6629 * src/type1/t1load.c (is_space): Removed.
|