Home
last modified time | relevance | path

Searched refs:is_ws (Results 1 - 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
H A Dascii.cc181 bool is_ws = false; in RemoveExtraAsciiWhitespace() local
184 if (is_ws) { in RemoveExtraAsciiWhitespace()
186 is_ws = absl::ascii_isspace(*input_it); in RemoveExtraAsciiWhitespace()
187 if (is_ws) --output_it; in RemoveExtraAsciiWhitespace()
189 is_ws = absl::ascii_isspace(*input_it); in RemoveExtraAsciiWhitespace()
/third_party/skia/src/utils/
H A DSkParse.cpp18 static inline bool is_ws(int c) in is_ws() function
30 return is_ws(c) || c == ',' || c == ';'; in is_sep()
53 while (is_ws(*str)) in skip_ws()
128 if (*str == 0 || is_ws(*str)) in FindHex()
H A DSkParsePath.cpp14 static inline bool is_ws(int c) { in is_ws() function
23 return is_ws(c) || c == ','; in is_sep()
36 while (is_ws(*str)) in skip_ws()
H A DSkJSON.cpp261 static inline bool is_ws(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x02; } in is_ws() function
268 while (is_ws(*p)) ++p; in skip_ws()
311 while (p_stop > p && is_ws(*p_stop)) --p_stop; in parse()
/third_party/ffmpeg/libavutil/
H A Dbprint.c318 int is_ws = !!strchr(WHITESPACES, *src); in av_bprint_escape() local
322 (is_ws && (flags & AV_ESCAPE_FLAG_WHITESPACE)); in av_bprint_escape()
326 (is_special || (is_ws && is_first_last)))) in av_bprint_escape()
/third_party/skia/modules/svg/src/
H A DSkSVGAttributeParser.cpp26 inline bool is_ws(char c) { in is_ws() function
31 return is_ws(c) || c == ',' || c == ';'; in is_sep()
76 return this->advanceWhile(is_ws); in parseWSToken()
652 this->advanceWhile(is_ws);
/third_party/libabigail/tests/lib/
H A Dcatch.hpp13854 const auto is_ws = [](char c) {
13858 while (real_begin < ref.size() && is_ws(ref[real_begin])) { ++real_begin; }
13860 while (real_end > real_begin && is_ws(ref[real_end - 1])) { --real_end; }

Completed in 21 milliseconds