Home
last modified time | relevance | path

Searched refs:is_ws (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
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/abseil-cpp/absl/strings/
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/flutter/skia/src/utils/
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()
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()
DSkJSON.cpp253 static inline bool is_ws(char c) { return g_token_flags[static_cast<uint8_t>(c)] & 0x02; } in is_ws() function
260 while (is_ws(*p)) ++p; in skip_ws()
303 while (p_stop > p && is_ws(*p_stop)) --p_stop; in parse()
/third_party/skia/src/utils/
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()
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()
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/
Dbprint.c320 int is_ws = !!strchr(WHITESPACES, *src); in av_bprint_escape() local
324 (is_ws && (flags & AV_ESCAPE_FLAG_WHITESPACE)); in av_bprint_escape()
328 (is_special || (is_ws && is_first_last)))) in av_bprint_escape()
/third_party/flutter/skia/experimental/svg/model/
DSkSVGAttributeParser.cpp25 inline bool is_ws(char c) { in is_ws() function
30 return is_ws(c) || c == ',' || c == ';'; in is_sep()
56 return this->advanceWhile(is_ws); in parseWSToken()
/third_party/skia/modules/svg/src/
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); in parse()
/third_party/boost/boost/property_tree/json_parser/detail/
Dnarrow_encoding.hpp18 bool is_ws(char c) const { in is_ws() function
Dwide_encoding.hpp18 bool is_ws(wchar_t c) const { in is_ws() function
Dparser.hpp413 while (have(&Encoding::is_ws)) { in skip_ws()