Home
last modified time | relevance | path

Searched refs:is_space (Results 1 – 15 of 15) 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.h103 bool is_space(char c);
/external/libxkbcommon/xkbcommon/src/compose/
Dpaths.c83 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()
Dparser.c165 while (is_space(peek(s))) in lex()
282 while (is_space(peek(s))) in lex_include_string()
/external/brotli/c/enc/
Dstatic_dict.c326 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/
Ddiff.c202 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/
Dutils.h126 is_space(char ch) in is_space() function
Dcontext.c208 if (errno == 0 && (endptr[0] == '\0' || is_space(endptr[0]))) in log_level()
/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/libxkbcommon/xkbcommon/src/xkbcomp/
Dscanner.c68 while (is_space(peek(s))) next(s); in _xkbcommon_lex()
Drules.c259 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.c1739 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/
DChangeLog.214215 (is_space): Handle `\f' also.
8169 (is_alpha, is_space, hexval): Renamed to...
DChangeLog.236629 * src/type1/t1load.c (is_space): Removed.