Home
last modified time | relevance | path

Searched refs:is_ascii (Results 1 - 20 of 20) sorted by relevance

/third_party/rust/crates/unicode-ident/src/
H A Dlib.rs254 if ch.is_ascii() { in is_xid_start()
263 if ch.is_ascii() { in is_xid_continue()
/third_party/skia/src/ports/
H A DSkOSFile_stdio.cpp31 static bool is_ascii(const char* s) { in is_ascii() function
41 if (is_ascii(utf8path)) { in fopen_win()
/third_party/rust/crates/glob/src/
H A Dlib.rs932 if !options.case_sensitive && c.is_ascii() && start.is_ascii() && end.is_ascii() { in in_char_specifiers()
963 } else if !case_sensitive && a.is_ascii() && b.is_ascii() { in chars_eq()
/third_party/node/deps/v8/src/strings/
H A Dunicode-decoder.h57 bool is_ascii() const { return encoding_ == Encoding::kAscii; } in is_ascii() function in v8::internal::final
/third_party/skia/third_party/externals/angle2/
H A DPRESUBMIT.py356 def is_ascii(s): function
370 if not is_ascii(line):
/third_party/rust/crates/regex/regex-syntax/src/
H A Dutf8.rs418 if self.is_ascii() { in as_ascii()
425 /// is_ascii returns true if the range is ASCII only (i.e., takes a single
427 fn is_ascii(&self) -> bool { in is_ascii() functions
/third_party/rust/crates/os_str_bytes/src/windows/wtf8/
H A Dcode_points.rs89 if !byte.is_ascii() { in next()
/third_party/pcre2/pcre2/src/
H A Dpcre2_jit_test.c1154 int is_ascii; in regression_tests() local
1248 is_ascii = 0; in regression_tests()
1250 is_ascii = check_ascii(current->pattern) && check_ascii(current->input); in regression_tests()
1273 if (!re8 && (utf || is_ascii)) in regression_tests()
1300 if (!re16 && (utf || is_ascii)) in regression_tests()
1327 if (!re32 && (utf || is_ascii)) in regression_tests()
1669 if (!(current->start_offset & F_NO8) && (utf || is_ascii)) { in regression_tests()
1684 if (!(current->start_offset & F_NO16) && (utf || is_ascii)) { in regression_tests()
1699 if (!(current->start_offset & F_NO32) && (utf || is_ascii)) { in regression_tests()
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Djson.cc423 bool is_ascii = !(chars[ii] & ~0x7F); in CharsToDouble() local
424 if (!is_ascii) in CharsToDouble()
/third_party/node/deps/simdutf/
H A Dsimdutf.cpp414 simdutf_really_inline bool is_ascii() const { return this->max_val() < 0b10000000u; } in is_ascii() function
582 simdutf_really_inline bool is_ascii() const { return this->min_val() >= 0; } in is_ascii() function
654 simdutf_really_inline bool is_ascii() const { in is_ascii() function
655 return reduce_or().is_ascii(); in is_ascii()
967 simdutf_really_inline bool is_ascii() const { in is_ascii() function
968 return reduce_or().is_ascii(); in is_ascii()
1849 simdutf_really_inline bool is_ascii() const { return _mm256_movemask_epi8(*this) == 0; } in is_ascii() function
1913 simdutf_really_inline bool is_ascii() const { return _mm256_movemask_epi8(*this) == 0; } in is_ascii() function
1964 simdutf_really_inline bool is_ascii() const { in is_ascii() function
1965 return this->reduce_or().is_ascii(); in is_ascii()
2253 simdutf_really_inline bool is_ascii() const { is_ascii() function
2745 simdutf_really_inline bool is_ascii() const { return _mm_movemask_epi8(*this) == 0; } is_ascii() function
2804 simdutf_really_inline bool is_ascii() const { return _mm_movemask_epi8(*this) == 0; } is_ascii() function
2900 simdutf_really_inline bool is_ascii() const { is_ascii() function
3196 simdutf_really_inline bool is_ascii() const { is_ascii() function
3785 simdutf_really_inline bool is_ascii() const { is_ascii() function
3851 simdutf_really_inline bool is_ascii() const { is_ascii() function
12576 simdutf_really_inline bool is_ascii(const simd8x64<uint8_t>& input) { is_ascii() function
[all...]
/third_party/rust/crates/proc-macro2/src/
H A Dparse.rs111 b if b.is_ascii() => {} in skip_whitespace()
471 b if b.is_ascii() => {} in cooked_byte_string()
509 if !other.is_ascii() { in raw_byte_string()
/third_party/python/Python/
H A Dfileutils.c256 int is_ascii = 0; in check_force_ascii() local
259 is_ascii = 1; in check_force_ascii()
263 if (!is_ascii) { in check_force_ascii()
/third_party/node/tools/inspector_protocol/encoding/
H A Dencoding.cc1558 bool is_ascii = !(chars[ii] & ~0x7F); in CharsToDouble() local
1559 if (!is_ascii) in CharsToDouble()
/third_party/rust/crates/regex/src/
H A Dcompile.rs442 if c.is_ascii() { in c_char()
/third_party/node/deps/v8/tools/
H A Dgrokdump.py131 is_ascii = reader.IsProbableASCIIRegion(location, size)
139 if is_ascii is not False:
163 if is_executable is not True and is_ascii is not True:
/third_party/node/deps/ada/
H A Dada.cpp9541 bool constexpr is_ascii(std::u32string_view view) {
9550 bool constexpr is_ascii(std::string_view view) {
9641 if (is_ascii(ut8_string)) {
9703 if (is_ascii(label_view)) {
9750 ada::idna::is_ascii(label_view)) {
11592 // bool is_ascii =
11669 // bool is_ascii =
H A Dada.h135 bool constexpr is_ascii(std::u32string_view view);
136 bool constexpr is_ascii(std::string_view view);
/third_party/python/Objects/
H A Dunicodeobject.c1377 int is_sharing, is_ascii; in PyUnicode_New() local
1381 is_ascii = 0; in PyUnicode_New()
1387 is_ascii = 1; in PyUnicode_New()
1432 if (is_ascii) in PyUnicode_New()
1442 _PyUnicode_STATE(unicode).ascii = is_ascii; in PyUnicode_New()
1443 if (is_ascii) { in PyUnicode_New()
/third_party/node/deps/v8/src/heap/
H A Dfactory.cc651 if (decoder.is_ascii()) return InternalizeString(utf8_data); in InternalizeUtf8String()
746 if (decoder.is_ascii()) { in NewStringFromUtf8SubString()
/third_party/rust/crates/memchr/bench/data/code/
H A Drust-library.rs350 make_test!(trim_ascii_char, s, { s.trim_matches(|c: char| c.is_ascii()) });
351 make_test!(trim_start_ascii_char, s, { s.trim_start_matches(|c: char| c.is_ascii()) });
352 make_test!(trim_end_ascii_char, s, { s.trim_end_matches(|c: char| c.is_ascii()) });
[all...]

Completed in 157 milliseconds